juliogu81 commited on
Commit
e136f53
·
1 Parent(s): b3b21bd

Continuar agregando 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_push.sh +42 -0
  2. clips/1_grabacion_inia/20250609_130000_clip_2.wav +3 -0
  3. clips/1_grabacion_inia/20250609_130000_clip_21.wav +3 -0
  4. clips/1_grabacion_inia/20250609_130000_clip_23.wav +3 -0
  5. clips/1_grabacion_inia/20250609_130000_clip_3.wav +3 -0
  6. clips/1_grabacion_inia/20250609_130000_clip_4.wav +3 -0
  7. clips/1_grabacion_inia/20250609_130000_clip_7.wav +3 -0
  8. clips/1_grabacion_inia/20250609_130000_clip_8.wav +3 -0
  9. clips/1_grabacion_inia/20250609_130000_clip_9.wav +3 -0
  10. clips/1_grabacion_inia/20250609_131500_clip_1.wav +3 -0
  11. clips/1_grabacion_inia/20250609_131500_clip_10.wav +3 -0
  12. clips/1_grabacion_inia/20250609_131500_clip_12.wav +3 -0
  13. clips/1_grabacion_inia/20250609_131500_clip_13.wav +3 -0
  14. clips/1_grabacion_inia/20250609_131500_clip_14.wav +3 -0
  15. clips/1_grabacion_inia/20250609_131500_clip_16.wav +3 -0
  16. clips/1_grabacion_inia/20250609_131500_clip_18.wav +3 -0
  17. clips/1_grabacion_inia/20250609_131500_clip_2.wav +3 -0
  18. clips/1_grabacion_inia/20250609_131500_clip_21.wav +3 -0
  19. clips/1_grabacion_inia/20250609_131500_clip_24.wav +3 -0
  20. clips/1_grabacion_inia/20250609_131500_clip_27.wav +3 -0
  21. clips/1_grabacion_inia/20250609_131500_clip_28.wav +3 -0
  22. clips/1_grabacion_inia/20250609_131500_clip_3.wav +3 -0
  23. clips/1_grabacion_inia/20250609_131500_clip_30.wav +3 -0
  24. clips/1_grabacion_inia/20250609_131500_clip_31.wav +3 -0
  25. clips/1_grabacion_inia/20250609_131500_clip_33.wav +3 -0
  26. clips/1_grabacion_inia/20250609_131500_clip_34.wav +3 -0
  27. clips/1_grabacion_inia/20250609_131500_clip_35.wav +3 -0
  28. clips/1_grabacion_inia/20250609_131500_clip_36.wav +3 -0
  29. clips/1_grabacion_inia/20250609_131500_clip_37.wav +3 -0
  30. clips/1_grabacion_inia/20250609_131500_clip_38.wav +3 -0
  31. clips/1_grabacion_inia/20250609_131500_clip_4.wav +3 -0
  32. clips/1_grabacion_inia/20250609_131500_clip_42.wav +3 -0
  33. clips/1_grabacion_inia/20250609_131500_clip_45.wav +3 -0
  34. clips/1_grabacion_inia/20250609_131500_clip_5.wav +3 -0
  35. clips/1_grabacion_inia/20250609_131500_clip_6.wav +3 -0
  36. clips/1_grabacion_inia/20250609_131500_clip_7.wav +3 -0
  37. clips/1_grabacion_inia/20250609_131500_clip_9.wav +3 -0
  38. clips/1_grabacion_inia/20250609_133000_clip_11.wav +3 -0
  39. clips/1_grabacion_inia/20250609_133000_clip_13.wav +3 -0
  40. clips/1_grabacion_inia/20250609_133000_clip_15.wav +3 -0
  41. clips/1_grabacion_inia/20250609_133000_clip_18.wav +3 -0
  42. clips/1_grabacion_inia/20250609_133000_clip_2.wav +3 -0
  43. clips/1_grabacion_inia/20250609_133000_clip_20.wav +3 -0
  44. clips/1_grabacion_inia/20250609_133000_clip_23.wav +3 -0
  45. clips/1_grabacion_inia/20250609_133000_clip_25.wav +3 -0
  46. clips/1_grabacion_inia/20250609_133000_clip_29.wav +3 -0
  47. clips/1_grabacion_inia/20250609_133000_clip_3.wav +3 -0
  48. clips/1_grabacion_inia/20250609_133000_clip_32.wav +3 -0
  49. clips/1_grabacion_inia/20250609_133000_clip_34.wav +3 -0
  50. clips/1_grabacion_inia/20250609_133000_clip_36.wav +3 -0
batch_push.sh ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+
3
+ # Script para hacer push de commits uno por uno
4
+ # Uso: ./batch_push.sh [número_de_commits_a_push]
5
+
6
+ if [ $# -eq 0 ]; then
7
+ PUSH_COUNT=1
8
+ else
9
+ PUSH_COUNT=$1
10
+ fi
11
+
12
+ echo "Haciendo push de $PUSH_COUNT commits..."
13
+
14
+ # Obtener commits locales que no están en el remoto
15
+ local_commits=$(git log --oneline origin/main..HEAD | wc -l)
16
+ echo "Commits locales pendientes: $local_commits"
17
+
18
+ if [ $local_commits -eq 0 ]; then
19
+ echo "No hay commits locales para hacer push."
20
+ exit 0
21
+ fi
22
+
23
+ # Hacer push de los commits especificados
24
+ for i in $(seq 1 $PUSH_COUNT); do
25
+ if [ $local_commits -gt 0 ]; then
26
+ echo "Haciendo push del commit $i..."
27
+ git push origin HEAD~$((local_commits-1)):main
28
+ local_commits=$((local_commits - 1))
29
+ echo "Push completado. Commits restantes: $local_commits"
30
+
31
+ # Pausa opcional entre pushes
32
+ if [ $i -lt $PUSH_COUNT ] && [ $local_commits -gt 0 ]; then
33
+ echo "Esperando 2 segundos antes del siguiente push..."
34
+ sleep 2
35
+ fi
36
+ else
37
+ echo "No hay más commits para hacer push."
38
+ break
39
+ fi
40
+ done
41
+
42
+ echo "¡Push completado!"
clips/1_grabacion_inia/20250609_130000_clip_2.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9403951c1d13f05366b522fb992e39745d2534e9196bfe3d780015887b32d56
3
+ size 960044
clips/1_grabacion_inia/20250609_130000_clip_21.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4705ec35c18e282e722527330b875b52361060c7d57b0fce350a537c1d568577
3
+ size 960044
clips/1_grabacion_inia/20250609_130000_clip_23.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2fe6960d0fc4879f7db8dc6bd9252aef589ba5b062adf9e9fdf3269970b2f4b9
3
+ size 960044
clips/1_grabacion_inia/20250609_130000_clip_3.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e1b498a693495806b98f632d3868b4a95abbabe36245b6fa931c1697e621355d
3
+ size 960236
clips/1_grabacion_inia/20250609_130000_clip_4.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5f64e45971a4bb6409409871a634aa6dadd70c99071fc5f8536e9e4052155fe8
3
+ size 960044
clips/1_grabacion_inia/20250609_130000_clip_7.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:712778d285105116e120766de901d14b8f1efc30a2493b1f4833117543d80555
3
+ size 960044
clips/1_grabacion_inia/20250609_130000_clip_8.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e291c7a1074b64e0e7081ab3a3b9821eb3bf837998c1940e46a54a110a1b73ad
3
+ size 960044
clips/1_grabacion_inia/20250609_130000_clip_9.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3078bfb42841d39db0117954b3b4f622d268224cedd7887d40c42cd8cf26b7bb
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_1.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ea1d7416fb3df1039af147aad74c200ad9d70dccada31b4a5e8360162099516
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_10.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e22ee8d2334a3f52b4a81194d7484b634e4bbb2da2c7ca360d29603ec52b740e
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_12.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:66a515efe004b6318fd096c5c7b4fd74190a1940f7047f2e85a2ed4ea5d169a9
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_13.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:65f5f7aac4826932b05ef2bbcd0261e97e7d51ee0477109ab6f2ac231251af06
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_14.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c181f60380231f61184416f392e90add89f38eb86334844ffb6e719222bd4ee9
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_16.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:87e0388a4e0d23e9170bcb283c6db21aad615803d060d4a835842bdf8cadad94
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_18.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f6b86aec5e41f0c3eeac21e20fc449d4af69b9198504ff9722ebe415c1cffcb6
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_2.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb4776a9a67068a5f573d39500becd48dd0737bcae9f5675fb63a26abb7a8e32
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_21.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c60f74ff5001b4a97409a6e50339b00048d3735273af8c99776b541621f3332f
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_24.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc95c4a917bc10d2447e974b6a47d31a5b4a71f7c4b3b5bb010770757a6ce838
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_27.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:85fb9fe044e7f1535b6c13806483c6cfecd9fdbf508affa961f3b09146d63ac6
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_28.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:33247d324632c208b237c0f7ef03850cd16b90bfdd7218e9c61a1fa4b1e3625f
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_3.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a7abe8cb6faa68ea95ac96feb215987a5bbe40798ba311abe4bb937fd5720c7b
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_30.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:590375613f140bf5579867d829c907a36c123d31b6d4889daebff5551b5496e1
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_31.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e36f51e04d5977df8525a4f5565cc1f150254f6600d56328dc8094411ef5739
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_33.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:64d8f3ee8cca039b6a5c8c4c3aff784649ea3eec05e4994961d825a6fbc59d58
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_34.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4e57517591454e9d2107cc1e4ba316886b1d1eabca2306080864ee8a12d0fe7
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_35.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d970f3b6eb7fc7c4b4812aeeb3add5b77f0b0f68de376317e5a28a470ce87da2
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_36.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:810f14855cfd7670920198a88ec9dc9a292d0b6d6ccc6994041b8eb08f437b13
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_37.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:56ddb5fda196697aa16af7d6a1daff175ec9e3701941829177aa34f2ff09e04d
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_38.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c9dd8e1450dbd6f78c04f5a27cae23cd882336a4ae7fa9659b21f4d530fb6d7
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_4.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5a6d884b7bdfea7b14cae66d4ecc24f6d3b80be21fb2da06cccfa7b1181c238e
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_42.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8e1e102ec9fc6c51753a1f20077808c0de093b750c51d8881d40b8d6f9dffba
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_45.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:978f0483549422ea5d513063f23b2d37141f8a93ed753eedbb6feb93d39117c4
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_5.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83ac28d2a976959bbbbd64cfd91965c8058c63bea3461f5eaa735cfd5fc62a5d
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_6.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:36d8f52b348bafc1bf6cea34e9084105e175281312bfd13da23de14d412ca044
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_7.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6be31a48d78753e4734fc251bdeb52eeaeb70804a350404fb823fcc8f935040e
3
+ size 960044
clips/1_grabacion_inia/20250609_131500_clip_9.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:53c5a6642825355938d879afc84f68f6aed1c6b4c3207ab5a622c709682d05e4
3
+ size 960044
clips/1_grabacion_inia/20250609_133000_clip_11.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:425bcb4eebdf040965769092968d25e9c7fcda10443d3db8fdebd06f433ef0d6
3
+ size 960044
clips/1_grabacion_inia/20250609_133000_clip_13.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5d41f496d034b22c877535b275b28b59b7f4af16542019e5a257782dfa4696e9
3
+ size 960044
clips/1_grabacion_inia/20250609_133000_clip_15.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7726eefbbfe3fa382b16ce7573f48e2c41daeb64bc9de8af680a981a0f7e1d75
3
+ size 960044
clips/1_grabacion_inia/20250609_133000_clip_18.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e7f7d9679bff1beb1413d901a45db3291bb1905f22720a3a465f0850230defc
3
+ size 960044
clips/1_grabacion_inia/20250609_133000_clip_2.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7cddf4156b9a28fc9f02ab62fe7c5ade8bb9f2004efd1f336ea553729ef6687d
3
+ size 960044
clips/1_grabacion_inia/20250609_133000_clip_20.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:357e2ea7e5a638dd94950311dbfae35c6b07fc050d853dd382f4f794ee5ee6b8
3
+ size 960044
clips/1_grabacion_inia/20250609_133000_clip_23.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:85e593e6f51098b35dec1fc5df1d0caff903b1ac3ed737a95ee477a6e9b9da94
3
+ size 960044
clips/1_grabacion_inia/20250609_133000_clip_25.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:470107627cfe95a8a2bc3953c749089164b5c8693dda4c2730aa7432cb26ebf4
3
+ size 960044
clips/1_grabacion_inia/20250609_133000_clip_29.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:82a0b8a5dacc404b52aebcda408c7333db433af625f2204d11e80202087c349a
3
+ size 960044
clips/1_grabacion_inia/20250609_133000_clip_3.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c641c55afa06cc62a248c27b6a69e876ffabe08cf2f477ad190321cc847eb5d2
3
+ size 960044
clips/1_grabacion_inia/20250609_133000_clip_32.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c67bade25b4c51c021bf12b173903bd7f1b860cfab06a699570f9ca7b692d786
3
+ size 960044
clips/1_grabacion_inia/20250609_133000_clip_34.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d8d9e034c2471dc1d68005918da1714fe3044d1f7963bffca19ab16c80353489
3
+ size 960044
clips/1_grabacion_inia/20250609_133000_clip_36.wav ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3748f057adc953c95e9980fc8628893d53921a5071021a560e933a11bd83c66
3
+ size 960044