Comportamiento loco del terminal

Comportamiento loco del terminal

Estoy intentando ejecutar un script para copiar todo el audio de un montón de archivos MP4. Todo funciona cuando lo hago línea por línea, cortando y pegando desde mi editor de texto en la terminal, pero cuando creo un script de shell para hacerlo, obtengo un conjunto de errores, si corto y pego varias líneas, obtengo un error diferente. .

Puedo crear un bucle foreach para hacer esto, pero trato de entender qué va mal. Aquí está parte del script de shell:

#/bin/bash
ffmpeg -i  969_BIO03.1-Introduction-to-Molecular-Genetics.mp4 -b:a 192K -vn BIO03.1-Introduction-to-Molecular-Genetics.mp3
ffmpeg -i  970_BIO03.2-DNA-Replication.mp4 -b:a 192K -vn BIO03.2-DNA-Replication.mp3
ffmpeg -i  971_BIO03.3-DNA-Repair.mp4 -b:a 192K -vn BIO03.3-DNA-Repair.mp3
ffmpeg -i  972_BIO03.4-Transcription.mp4 -b:a 192K -vn BIO03.4-Transcription.mp3

Nuevamente, si copio solo una línea, todo está bien. Si ejecuto el script obtengo:

# ./ripaudio.sh 
ffmpeg version N-52501-gd783297 Copyright (c) 2000-2013 the FFmpeg developers
  built on May 14 2013 15:57:34 with gcc 4.4.7 (GCC) 20120313 (Red Hat 4.4.7-3)
  configuration: --enable-gpl --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264
  libavutil      52. 27.101 / 52. 27.101
  libavcodec     55.  6.100 / 55.  6.100
  libavformat    55.  3.100 / 55.  3.100
  libavdevice    55.  0.100 / 55.  0.100
  libavfilter     3. 60.102 /  3. 60.102
  libswscale      2.  2.100 /  2.  2.100
  libswresample   0. 17.102 /  0. 17.102
  libpostproc    52.  3.100 / 52.  3.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '969_BIO03.1-Introduction-to-Molecular-Genetics.mp4':
  Metadata:
    major_brand     : isom
    minor_version   : 512
    compatible_brands: isomiso2avc1mp41
    encoder         : Lavf55.3.100
  Duration: 00:08:30.49, start: 0.021333, bitrate: 733 kb/s
    Stream #0:0(eng): Video: h264 (Main) (avc1 / 0x31637661), yuv420p, 720x480 [SAR 32:27 DAR 16:9], 596 kb/s, 29.97 fps, 29.97 tbr, 11988 tbn, 59.94 tbc
    Metadata:
      handler_name    : VideoHandler
    Stream #0:1(eng): Audio: aac (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 128 kb/s
    Metadata:
      handler_name    : SoundHandler
'NULL @ 0x243c8c0] Unable to find a suitable output format for 'BIO03.1-Introduction-to-Molecular-Genetics.mp3
: Invalid argumenton-to-Molecular-Genetics.mp3
ffmpeg version N-52501-gd783297 Copyright (c) 2000-2013 the FFmpeg developers
  built on May 14 2013 15:57:34 with gcc 4.4.7 (GCC) 20120313 (Red Hat 4.4.7-3)
  configuration: --enable-gpl --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264
  libavutil      52. 27.101 / 52. 27.101
  libavcodec     55.  6.100 / 55.  6.100
  libavformat    55.  3.100 / 55.  3.100
  libavdevice    55.  0.100 / 55.  0.100
  libavfilter     3. 60.102 /  3. 60.102
  libswscale      2.  2.100 /  2.  2.100
  libswresample   0. 17.102 /  0. 17.102
  libpostproc    52.  3.100 / 52.  3.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '970_BIO03.2-DNA-Replication.mp4':
  Metadata:
    major_brand     : isom
    minor_version   : 512
    compatible_brands: isomiso2avc1mp41
    encoder         : Lavf55.3.100
  Duration: 00:27:38.52, start: 0.021333, bitrate: 709 kb/s
    Stream #0:0(eng): Video: h264 (Main) (avc1 / 0x31637661), yuv420p, 720x480 [SAR 32:27 DAR 16:9], 572 kb/s, 29.97 fps, 29.97 tbr, 11988 tbn, 59.94 tbc
    Metadata:
      handler_name    : VideoHandler
    Stream #0:1(eng): Audio: aac (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 128 kb/s
    Metadata:
      handler_name    : SoundHandler
'NULL @ 0x357b8a0] Unable to find a suitable output format for 'BIO03.2-DNA-Replication.mp3
: Invalid argumentation.mp3

Si luego tomo un grupo de 3 aproximadamente y los pego, obtengo esto:

ffmpeg -i  974_BIO05.2-Prokaryotes.mp4 -b:a 192K -vn BIO05.2-Prokaryotes.mp3
ffmpeg version N-52501-gd783297 Copyright (c) 2000-2013 the FFmpeg developers
  built on May 14 2013 15:57:34 with gcc 4.4.7 (GCC) 20120313 (Red Hat 4.4.7-3)
  configuration: --enable-gpl --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264
  libavutil      52. 27.101 / 52. 27.101
  libavcodec     55.  6.100 / 55.  6.100
  libavformat    55.  3.100 / 55.  3.100
  libavdevice    55.  0.100 / 55.  0.100
  libavfilter     3. 60.102 /  3. 60.102
  libswscale      2.  2.100 /  2.  2.100
  libswresample   0. 17.102 /  0. 17.102
  libpostproc    52.  3.100 / 52.  3.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '974_BIO05.2-Prokaryotes.mp4':
  Metadata:
    major_brand     : isom
    minor_version   : 512
    compatible_brands: isomiso2avc1mp41
    encoder         : Lavf55.3.100
  Duration: 00:21:53.75, start: 0.021333, bitrate: 708 kb/s
    Stream #0:0(eng): Video: h264 (Main) (avc1 / 0x31637661), yuv420p, 720x480 [SAR 32:27 DAR 16:9], 571 kb/s, 29.97 fps, 29.97 tbr, 11988 tbn, 59.94 tbc
    Metadata:
      handler_name    : VideoHandler
    Stream #0:1(eng): Audio: aac (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 128 kb/s
    Metadata:
      handler_name    : SoundHandler
Output #0, mp3, to 'BIO05.2-Prokaryotes.mp3':
  Metadata:
    major_brand     : isom
    minor_version   : 512
    compatible_brands: isomiso2avc1mp41
    TSSE            : Lavf55.3.100
    Stream #0:0(eng): Audio: mp3, 48000 Hz, stereo, fltp, 192 kb/s
    Metadata:
      handler_name    : SoundHandler
Stream mapping:
  Stream #0:1 -> #0:0 (aac -> libmp3lame)
Press [q] to stop, [?] for help
stream #1:390kB time=00:00:16.58 bitrate= 192.6kbits/s    
  keyframe=1
  duration=0.021
  dts=332.480  pts=332.480
  size=375
stream #1:
  keyframe=1
  duration=0.021
  dts=332.501  pts=332.501
  size=355

[trimmed out hundreds of lines of this repeating pattern]


stream #1:
  keyframe=1
  duration=0.021
  dts=337.109  pts=337.109
  size=364
stream #1:
  keyframe=1
  duration=0.021
  dts=337.131  pts=337.131
  size=318

Enter command: <target> <time> <command>[ <argument>]
Parse error, at least 3 arguments were expected, only 1 given in string 'ell.mp4 -b:a 192K -vn BIO06.1-Anatomy-of-the-Cell.mp3'
size=    8408kB time=00:05:58.70 bitrate= 192.0kbits/s    
Enter command: <target> <time> <command>[ <argument>]

Solo estoy tratando de entender qué salió mal aquí. He escrito una cantidad decente de scripts a lo largo de los años y lo único que tiene Unix es que siempre es consistente. Es posible que su script esté roto, pero es consistente hasta que obtenga el comando correcto.

Estoy usando SecureCRT como cliente terminal.

Respuesta1

Tuve exactamente el mismo problema en mi secuencia de comandos por lotes escrita para comprimir todos mis videos mp4 contenidos en una carpeta y en sus subcarpetas, descubrí (después de 3 días de buscar en Google) que ffmpeg de forma predeterminada permite la transcodificación en tiempo real de la transmisión. a cargo, y por lo tanto la posibilidad de interactuar con la configuración de la secuencia, esto significa que cuando los comandos están en un script por lotes, el primero se ejecuta correctamente y la segunda cadena se interpreta como un comando interactivo, por lo que imprime errores hasta algún tipo del búfer está lleno y el script falla, me salvé el día agregándolo -nostdina la línea de comando ffmpeg y ahora todo funciona correctamente.

Saluti, Massimiliano

Respuesta2

Basado en la siguiente línea:

Parse error, at least 3 arguments were expected, only 1 given in string 'ell.mp4 -b:a 192K -vn BIO06.1-Anatomy-of-the-Cell.mp3'

Parece que el shell piensa que todo ell.mp4 -b:a 192K -vn BIO06.1-Anatomy-of-the-Cell.mp3es un solo token y no reconoce los espacios. Estoy dispuesto a apostar que esos no son personajes espaciales en absoluto, sino algo más que se representa como un personaje espacial.

Realice el siguiente comando y observe atentamente el resultado.

od -c name_of_your_script.sh | less

Esto volcará cada carácter imprimible como carácter imprimible y todos los caracteres no imprimibles como su código ASCII (creo que está en octal). De todos modos, busque esta cadena específica que pegué en mi respuesta y busque los espacios entre los argumentos. Si ves algo más que un espacio allí, ese es tu problema.

Respuesta3

¡Te falta un! Creo que en la primera línea de tu script debería ser:

#!/bin/bash

Por cierto, otra forma de hacer esto, si tienes todos los archivos .mp4 en el directorio actual, sería esta en bash:

for file in `ls *.mp4 | cut -d '.' -f -1 `; 
do 
ffmpeg -i ${file}.mp4 -b:a 192k -vn ${file}.mp3; 
done

Puede ajustar los criterios globales en el *.mp4 para satisfacer sus necesidades (p. ej. ls ../media/bio123/97*BIO*.mp4)

El desglose de lo que está sucediendo arriba:

ls *.mp4 // Get a list of all the MP4s in the current directory.
ls *.mp4 | cut -d '.' -f -1 // Get everything from the filename before the terminal . in the filename

Entonces la ${file}.mp4sintaxis simplemente ayuda al shell a saber que estoy hablando de la $filevariable definida en mi bucle for, no de una variable llamada ' $file.mp4'. Finalmente, no hay nada especial file: podrías escribir el bucle como:

for foo in `ls *.mp4 | cut -d '.' -f -1 `; 
do 
ffmpeg -i ${foo}.mp4 -b:a 192k -vn ${foo}.mp3; 
done

información relacionada