Agregar clips de audio procesados (lote 1: 100 archivos)
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- batch_commit.sh +39 -0
- clips/1_grabacion_inia/20250606_091500_clip_11.wav +2 -2
- clips/1_grabacion_inia/20250606_091500_clip_12.wav +2 -2
- clips/1_grabacion_inia/{20250606_091500_clip_18.wav → 20250606_091500_clip_14.wav} +2 -2
- clips/1_grabacion_inia/20250606_091500_clip_15.wav +2 -2
- clips/1_grabacion_inia/20250606_091500_clip_17.wav +2 -2
- clips/1_grabacion_inia/20250606_091500_clip_19.wav +2 -2
- clips/1_grabacion_inia/20250606_091500_clip_2.wav +2 -2
- clips/1_grabacion_inia/20250606_091500_clip_20.wav +2 -2
- clips/1_grabacion_inia/20250606_091500_clip_21.wav +2 -2
- clips/1_grabacion_inia/20250606_091500_clip_22.wav +2 -2
- clips/1_grabacion_inia/20250606_091500_clip_3.wav +2 -2
- clips/1_grabacion_inia/20250606_091500_clip_5.wav +2 -2
- clips/1_grabacion_inia/20250606_091500_clip_6.wav +2 -2
- clips/1_grabacion_inia/20250606_091500_clip_7.wav +2 -2
- clips/1_grabacion_inia/20250606_091500_clip_8.wav +2 -2
- clips/1_grabacion_inia/20250606_091500_clip_9.wav +2 -2
- clips/1_grabacion_inia/20250606_093000_clip_10.wav +2 -2
- clips/1_grabacion_inia/20250606_093000_clip_11.wav +2 -2
- clips/1_grabacion_inia/{20250606_093000_clip_13.wav → 20250606_093000_clip_14.wav} +2 -2
- clips/1_grabacion_inia/20250606_093000_clip_15.wav +2 -2
- clips/1_grabacion_inia/20250606_093000_clip_17.wav +2 -2
- clips/1_grabacion_inia/20250606_093000_clip_21.wav +2 -2
- clips/1_grabacion_inia/20250606_093000_clip_24.wav +2 -2
- clips/1_grabacion_inia/20250606_093000_clip_26.wav +2 -2
- clips/1_grabacion_inia/{20250606_093000_clip_2.wav → 20250606_093000_clip_29.wav} +2 -2
- clips/1_grabacion_inia/{20250606_093000_clip_28.wav → 20250606_093000_clip_3.wav} +2 -2
- clips/1_grabacion_inia/20250606_093000_clip_30.wav +0 -3
- clips/1_grabacion_inia/20250606_093000_clip_31.wav +2 -2
- clips/1_grabacion_inia/20250606_093000_clip_32.wav +2 -2
- clips/1_grabacion_inia/20250606_093000_clip_35.wav +3 -0
- clips/1_grabacion_inia/20250606_093000_clip_36.wav +3 -0
- clips/1_grabacion_inia/20250606_093000_clip_37.wav +3 -0
- clips/1_grabacion_inia/20250606_093000_clip_4.wav +2 -2
- clips/1_grabacion_inia/20250606_093000_clip_41.wav +3 -0
- clips/1_grabacion_inia/20250606_093000_clip_42.wav +3 -0
- clips/1_grabacion_inia/20250606_093000_clip_45.wav +3 -0
- clips/1_grabacion_inia/20250606_093000_clip_48.wav +3 -0
- clips/1_grabacion_inia/20250606_093000_clip_5.wav +2 -2
- clips/1_grabacion_inia/20250606_093000_clip_50.wav +3 -0
- clips/1_grabacion_inia/20250606_093000_clip_54.wav +3 -0
- clips/1_grabacion_inia/20250606_093000_clip_56.wav +3 -0
- clips/1_grabacion_inia/20250606_093000_clip_57.wav +3 -0
- clips/1_grabacion_inia/20250606_093000_clip_58.wav +3 -0
- clips/1_grabacion_inia/20250606_093000_clip_60.wav +3 -0
- clips/1_grabacion_inia/20250606_093000_clip_63.wav +3 -0
- clips/1_grabacion_inia/20250606_093000_clip_65.wav +3 -0
- clips/1_grabacion_inia/20250606_093000_clip_66.wav +3 -0
- clips/1_grabacion_inia/20250606_093000_clip_7.wav +2 -2
- clips/1_grabacion_inia/20250606_093000_clip_70.wav +3 -0
batch_commit.sh
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/bin/bash
|
2 |
+
|
3 |
+
# Script para hacer commits de a 100 archivos
|
4 |
+
# Uso: ./batch_commit.sh "mensaje del commit"
|
5 |
+
|
6 |
+
if [ $# -eq 0 ]; then
|
7 |
+
echo "Uso: $0 \"mensaje del commit\""
|
8 |
+
exit 1
|
9 |
+
fi
|
10 |
+
|
11 |
+
COMMIT_MESSAGE="$1"
|
12 |
+
BATCH_SIZE=100
|
13 |
+
|
14 |
+
echo "Iniciando commits en lotes de $BATCH_SIZE archivos..."
|
15 |
+
echo "Mensaje del commit: $COMMIT_MESSAGE"
|
16 |
+
|
17 |
+
# Obtener archivos modificados/agregados/eliminados
|
18 |
+
git status --porcelain | grep -E '^(A|M|D|R|C|U|T)' | cut -c4- | while read -r file; do
|
19 |
+
# Agregar archivo al staging
|
20 |
+
git add "$file"
|
21 |
+
|
22 |
+
# Contar archivos en staging
|
23 |
+
staged_count=$(git diff --cached --name-only | wc -l)
|
24 |
+
|
25 |
+
# Si llegamos a 100 archivos, hacer commit
|
26 |
+
if [ "$staged_count" -ge "$BATCH_SIZE" ]; then
|
27 |
+
echo "Haciendo commit de $staged_count archivos..."
|
28 |
+
git commit -m "$COMMIT_MESSAGE (lote de $staged_count archivos)"
|
29 |
+
fi
|
30 |
+
done
|
31 |
+
|
32 |
+
# Commit final con los archivos restantes
|
33 |
+
remaining=$(git diff --cached --name-only | wc -l)
|
34 |
+
if [ "$remaining" -gt 0 ]; then
|
35 |
+
echo "Haciendo commit final de $remaining archivos..."
|
36 |
+
git commit -m "$COMMIT_MESSAGE (lote final de $remaining archivos)"
|
37 |
+
fi
|
38 |
+
|
39 |
+
echo "¡Todos los commits completados!"
|
clips/1_grabacion_inia/20250606_091500_clip_11.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:aedb473cca2aa4ea784afa27422f18d07babe58d8ae30364b8603246a0904dfd
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_091500_clip_12.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a962581a5a89556bbc88ddfdc7cffcefb50b1aafdd7cf42c0457723f8a5440d2
|
3 |
+
size 960044
|
clips/1_grabacion_inia/{20250606_091500_clip_18.wav → 20250606_091500_clip_14.wav}
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4852faea62e8a48be339f475d246a28d4351d7d9425a76c03046231eac4451f5
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_091500_clip_15.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b1d2d1725432e35a4f120eac375f603525b7730de9ddbf30e588c41526cd55ab
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_091500_clip_17.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4d5955caef32f043b9fb252cb61abf85b591081ba1c7dcc6b80a4b4364eecd41
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_091500_clip_19.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c19715872b3a0bfbffba3d4ce44cf9d4667946d9b8ba026a3ef77f3d25fe1ddc
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_091500_clip_2.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7d347bee127fa04a5264b4228067dc4812abdbf26981d582bcd3779ff31ab3f7
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_091500_clip_20.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:32298cb9c7ecd1b81d7e54f16c056781aec9903cc0d101112610700a19a32031
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_091500_clip_21.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e3f46384dbaa85a744cca2d2f26f84370c4d9761e367e59f86ad5e0c63a1dca1
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_091500_clip_22.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:857e284991bd7980b8604f37990a2b983fb4f341b7368b57e1a969f14270b75b
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_091500_clip_3.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2f6fac718212871f39eb03563040afbef08ed478845acd31f130e05893c33c35
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_091500_clip_5.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4dab5e76f8a4f31aed62afea4a194eb1a0ca1324ad1042f4eca83ddbff952c93
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_091500_clip_6.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b9cff55520616dc7b1714c2d586253b543a245424d237f4284a4576dd5e0cd9f
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_091500_clip_7.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6927f4f539aef7299cd02903c04a8b5eadf886e5a155bf1cd7aa69857f38e4b5
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_091500_clip_8.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5b0b6ce1c085021ab066d5126b6cc3da6807715ed1a1d8e63e0bb3dc1090b326
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_091500_clip_9.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2d6e281143f24df57a0511eb7e2f30d576fec55e5ebb5f6981781c582cd1a98a
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_10.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:028444544abd2605aab570c36f49105990c90087fc6e8c54ce52c9313b01eb3a
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_11.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9fbb8860cbcecea3d1472e71e4f5aec3322a6aa576c50bc83590b82be09ef88c
|
3 |
+
size 960044
|
clips/1_grabacion_inia/{20250606_093000_clip_13.wav → 20250606_093000_clip_14.wav}
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:aacd82821080b7bf94c20b461fca342b2e7a4e83edbe255e19490513a71fccd7
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_15.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:63eb3eb0ca7a517048cbbbc60a512b51dae4ff482aaa15869e3b6c5d09ed7ca4
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_17.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:553474d307462fde3ade37dfa4aa2d8bba6932310d83b6c85bcab2047e0c21c3
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_21.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1d2e9da47ae4f2bbb9ac235935a9d9acff389f69f8416b4bfcaf3272bc6ba945
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_24.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:56beedd128f4881960988526bacc9f4b678b80ee9bdd00b41a42c69a6580c9a6
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_26.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5a9569af77e5902d2d20a1bdca499bc76c4f6410ed4729528a7b91ead0d17163
|
3 |
+
size 960044
|
clips/1_grabacion_inia/{20250606_093000_clip_2.wav → 20250606_093000_clip_29.wav}
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cc50b603c92137abc54dee1f809d4f7ddbec7e0bee5d86b8d06351c24f43dd1c
|
3 |
+
size 960044
|
clips/1_grabacion_inia/{20250606_093000_clip_28.wav → 20250606_093000_clip_3.wav}
RENAMED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5151d43472ab62a8376b82267b437cc973158adc0e9b53cc2559430ba7609ac4
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_30.wav
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:296a08097b5ce7f8ee6642eed13aea3a7aa52ea909de13db03088824ee95459e
|
3 |
-
size 710252
|
|
|
|
|
|
|
|
clips/1_grabacion_inia/20250606_093000_clip_31.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:01e26973b19037a8bf1aaf9b9682cc906aa3a7b51b76801560c1ce16389dac42
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_32.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e34ec1e2434a6f7674bca6fe995ffae681c3f2ae2edf945e0cb2aedbebf12a07
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_35.wav
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a4764942e3d33e35ac349eeea8bd5d6bfe2e91b42380ce647da41f0b53efc302
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_36.wav
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8fd0cad1bd816f3c6949ea500db6ca7e87b6b7f8d0aa9a4766293459c2fac237
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_37.wav
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:adaac105b798dcb9ade9270493d261f4091ea91c149681180cac0990c54263af
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_4.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ace53bc572ea5e55b93db24c143524a054460be97b335b1d364b538144230652
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_41.wav
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:135c115f3b5806b107ba6d1656ae075d7a4794fb7f36b7d55890fa7e92b9216b
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_42.wav
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6177bb54c72c4248976a1cfbf16ef83e6ef7f65a1e534dcbcde6438a94469f32
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_45.wav
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8708a7cabaca8379dafecab99838a0e198bdd9b23e28407988ed43c23f8ee266
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_48.wav
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d3bdeb450cbea328c6626fc131e77c4b2b186735cd420e06cac7a5ae1e9b0584
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_5.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7bcb948ea1fd3513331385e93874e26b1dbfa3c9113a30fd85d7baae4f5d5a29
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_50.wav
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1ee12a8e7cc5e155b410df2c341b625642d47c5d1682b347964d71d12c1a98df
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_54.wav
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d8184984a358217877446eafd7e2ec70a9a0355fd11650a8c9c2fc2ece3707ba
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_56.wav
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:812fe5549a7e987169b9a04f06e60430c3fa8f33319823e6ab2c5bce954d19a2
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_57.wav
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cf319e5535d118e7864f952bd48a782155613fff36095bd8d90b0ca3bd8570eb
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_58.wav
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d0695cf1b1b13ec67201868a84df26d6ed9d0f98619a3d7eb8d5ad46009f8de2
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_60.wav
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3ffbd08114a849d4536dbbcd793a3c4f90eafbfef705037d2fa82c480669c868
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_63.wav
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f68d300eec25a91c4322224138fe05f92dfd09769759131c9a7f17b2100eb32a
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_65.wav
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ffc4edcec900714b9124f6aeb21426fb52501f379f84148380352d2e420c21b6
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_66.wav
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6d8d6c5f350cf055e9fc8676b62fd12970969467720c7a66b933da21d3bbc066
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_7.wav
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:71d98b75642651e1c0f9427593ad6e533becbed816d1114cb9ff2ce5bbe8d7d5
|
3 |
+
size 960044
|
clips/1_grabacion_inia/20250606_093000_clip_70.wav
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:68c4022b001c337dec50c529a7a50668bfa8a78938e822b7127517b95652a3e3
|
3 |
+
size 960044
|