juliogu81 commited on
Commit
7039cc5
·
1 Parent(s): 4356183

Agregar clips de audio procesados (lote 1: 100 archivos)

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. batch_commit.sh +39 -0
  2. clips/1_grabacion_inia/20250606_091500_clip_11.wav +2 -2
  3. clips/1_grabacion_inia/20250606_091500_clip_12.wav +2 -2
  4. clips/1_grabacion_inia/{20250606_091500_clip_18.wav → 20250606_091500_clip_14.wav} +2 -2
  5. clips/1_grabacion_inia/20250606_091500_clip_15.wav +2 -2
  6. clips/1_grabacion_inia/20250606_091500_clip_17.wav +2 -2
  7. clips/1_grabacion_inia/20250606_091500_clip_19.wav +2 -2
  8. clips/1_grabacion_inia/20250606_091500_clip_2.wav +2 -2
  9. clips/1_grabacion_inia/20250606_091500_clip_20.wav +2 -2
  10. clips/1_grabacion_inia/20250606_091500_clip_21.wav +2 -2
  11. clips/1_grabacion_inia/20250606_091500_clip_22.wav +2 -2
  12. clips/1_grabacion_inia/20250606_091500_clip_3.wav +2 -2
  13. clips/1_grabacion_inia/20250606_091500_clip_5.wav +2 -2
  14. clips/1_grabacion_inia/20250606_091500_clip_6.wav +2 -2
  15. clips/1_grabacion_inia/20250606_091500_clip_7.wav +2 -2
  16. clips/1_grabacion_inia/20250606_091500_clip_8.wav +2 -2
  17. clips/1_grabacion_inia/20250606_091500_clip_9.wav +2 -2
  18. clips/1_grabacion_inia/20250606_093000_clip_10.wav +2 -2
  19. clips/1_grabacion_inia/20250606_093000_clip_11.wav +2 -2
  20. clips/1_grabacion_inia/{20250606_093000_clip_13.wav → 20250606_093000_clip_14.wav} +2 -2
  21. clips/1_grabacion_inia/20250606_093000_clip_15.wav +2 -2
  22. clips/1_grabacion_inia/20250606_093000_clip_17.wav +2 -2
  23. clips/1_grabacion_inia/20250606_093000_clip_21.wav +2 -2
  24. clips/1_grabacion_inia/20250606_093000_clip_24.wav +2 -2
  25. clips/1_grabacion_inia/20250606_093000_clip_26.wav +2 -2
  26. clips/1_grabacion_inia/{20250606_093000_clip_2.wav → 20250606_093000_clip_29.wav} +2 -2
  27. clips/1_grabacion_inia/{20250606_093000_clip_28.wav → 20250606_093000_clip_3.wav} +2 -2
  28. clips/1_grabacion_inia/20250606_093000_clip_30.wav +0 -3
  29. clips/1_grabacion_inia/20250606_093000_clip_31.wav +2 -2
  30. clips/1_grabacion_inia/20250606_093000_clip_32.wav +2 -2
  31. clips/1_grabacion_inia/20250606_093000_clip_35.wav +3 -0
  32. clips/1_grabacion_inia/20250606_093000_clip_36.wav +3 -0
  33. clips/1_grabacion_inia/20250606_093000_clip_37.wav +3 -0
  34. clips/1_grabacion_inia/20250606_093000_clip_4.wav +2 -2
  35. clips/1_grabacion_inia/20250606_093000_clip_41.wav +3 -0
  36. clips/1_grabacion_inia/20250606_093000_clip_42.wav +3 -0
  37. clips/1_grabacion_inia/20250606_093000_clip_45.wav +3 -0
  38. clips/1_grabacion_inia/20250606_093000_clip_48.wav +3 -0
  39. clips/1_grabacion_inia/20250606_093000_clip_5.wav +2 -2
  40. clips/1_grabacion_inia/20250606_093000_clip_50.wav +3 -0
  41. clips/1_grabacion_inia/20250606_093000_clip_54.wav +3 -0
  42. clips/1_grabacion_inia/20250606_093000_clip_56.wav +3 -0
  43. clips/1_grabacion_inia/20250606_093000_clip_57.wav +3 -0
  44. clips/1_grabacion_inia/20250606_093000_clip_58.wav +3 -0
  45. clips/1_grabacion_inia/20250606_093000_clip_60.wav +3 -0
  46. clips/1_grabacion_inia/20250606_093000_clip_63.wav +3 -0
  47. clips/1_grabacion_inia/20250606_093000_clip_65.wav +3 -0
  48. clips/1_grabacion_inia/20250606_093000_clip_66.wav +3 -0
  49. clips/1_grabacion_inia/20250606_093000_clip_7.wav +2 -2
  50. 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:9bdced8664e7705506d70a3fe8b041a282587aa5cd2aad7e6b6f7d314df1206d
3
- size 710444
 
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:d7ed551a4ef5e55c74ff706288c30a909064dc2d4420144c8c1fcb92232051fa
3
- size 710444
 
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:17037fabd6b895ed8043594d6a24e42b73ea6d3189ca8473b14a73637c4c79ce
3
- size 710444
 
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:6fbea4ab1f5793950067dae04cc860f5e2ddbb34ed69ba6a959ee1d27e131656
3
- size 710444
 
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:b90fe0ba0ebb9162cd23d44247b4dee3e8fdbce1e97d648c4dffcfd26c9a854d
3
- size 710252
 
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:7eb366a86eb30be9123122c504c1e7af52a3ff0b90fe5c117b7441129f1ac313
3
- size 710444
 
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:b0c4e90eb9eb7fe78f8872e2f43368c6065f411515d94fa9003fa8225f372822
3
- size 710444
 
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:294f63228c9855e71fc7a819b4034a595a979aa3638a3ad528543e1c925ccdbd
3
- size 710636
 
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:010ed35e56696f1b55798cd549ba60ae0b9657699c3d6769546a7ddf69b86977
3
- size 710444
 
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:8641bd596578f57c120f8b5ca2520ca12773d598beb0ee26f18cbe9fd5039d75
3
- size 710444
 
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:e50bb4e0566e8051f41f07d6f414980a5323be4a9e7ac48bca5facc4b6a833f4
3
- size 710636
 
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:cdaa99edc13c84f1775535ebc6bc65b78402c8a137f69e8e6250fc8cc8d7edc5
3
- size 710636
 
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:027949d067199c71748868aa4adc47f111ebd12c008a2b256604e9bdb65671de
3
- size 710444
 
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:b57a23df9bb09ca750fd96216c50e7f6c84b9058e0c95c9f94d4b080f32ff995
3
- size 710252
 
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:d6b8e4515d967cef8cca0f094c33e5dd8f90a384505869324e440a4e9bcde95b
3
- size 710444
 
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:c618909ed3390c3accc12f4b1052d2055457feff13e1c30a72bad3a81c5094a6
3
- size 710444
 
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:adaa186dc9dad9de5f4c9c95b7de11ce0366b2ae5a9c96328e0c2556b5c7f60f
3
- size 710636
 
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:adebe98d92ec594bf723c7997dfeafe458a99ba83da258109d012775cc375757
3
- size 710636
 
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:394983b6a174a9a5ab9a17bc653a2ac6829d52e7d2e3ef4daf24f14bd52a711e
3
- size 710636
 
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:32a26a80ea577e8beae15b1dcc6e92b153dd0b0b3b24f4e0d0f75d052069d9b1
3
- size 710444
 
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:c20396b06620693358b1fab8d8dbf4c91e103d701b25c0bbea8923b1ce888839
3
- size 710444
 
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:f9b6909b1c957964376c348e8b668c67b17ae083d435cf17eddcfab92d3b91b8
3
- size 710444
 
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:e7537883340006a25be3ea4206fd1d2e543a0bb9fdb4a0dc6b24541b77ace4f4
3
- size 710444
 
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:ba2ae384b81a37bb70f4e2b299cd0d5c34dabb5de4821fbe8645d79b0f6e3da4
3
- size 710252
 
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:f6a2f0b7466f669abeea5d6c01433f0a7f309752a2de48a85e3a2eef51748e74
3
- size 640364
 
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:9e800745fb3cdf079f4766ff536c1311f61e18fbe065c63e5c8e29db3966a06a
3
- size 710252
 
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:65504d9f20a31dea0c5bfed35944da5069b045ed678983dcd63fbba02cfc1999
3
- size 710444
 
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:31afe671a7330be6422b52ccfc5e878e3e90c01d78b343e372ce26501517efc0
3
- size 710252
 
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:05ea8d8f0e6fd49f7c692c9ae02c13e814cb4e1fd7940adc50b6058fdcbf2f77
3
- size 710444
 
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:00ca4301893462a691c3fe94122f9b80ed1b18318055d34ddc23c916d0cc34bf
3
- size 710636
 
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:8d5314c1853c39520a7f506c7db155acfba180582a00bf42be39c4f18af02878
3
- size 710636
 
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