我正在尝试运行一个脚本来从一堆 MP4 文件中翻录所有音频。当我从文本编辑器逐行剪切并粘贴到终端时,一切正常,但是当我创建 shell 脚本来执行此操作时,我收到一组错误,如果我剪切并粘贴多行,我会收到另一个错误。
我可以创建一个 foreach 循环来执行此操作,但要尝试了解哪里出了问题。以下是 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
同样,如果我只复制一行,一切都很好。如果我执行脚本,我会得到:
# ./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
如果我选取 3 个左右的组并将其粘贴进去,我会得到以下结果:
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>]
我只是想知道这里出了什么问题,这些年来我已经写了相当多的脚本,而 Unix 的一个特点是它总是一致的。你的脚本可能会被破坏,但直到你得到正确的命令之前,它是一致的。
我正在使用 SecureCRT 作为终端客户端。
答案1
我在编写批处理脚本时遇到了完全相同的问题,该脚本仅用于压缩文件夹及其子文件夹中包含的所有 mp4 视频,结果(经过 3 天的 Google 搜索)我发现,ffmpeg 默认允许实时转码负责的流,因此可以与流的设置进行交互,这意味着当命令在批处理脚本中时,第一个命令会正确执行,而第二个字符串会被解释为交互式命令,因此它会打印错误,直到某种缓冲区已满且脚本崩溃,我通过添加-nostdin
到 ffmpeg 命令行节省了我的时间,现在一切都正常工作了。
马西米利亚诺·萨卢蒂
答案2
根据以下行:
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'
看来 shell 认为所有这些ell.mp4 -b:a 192K -vn BIO06.1-Anatomy-of-the-Cell.mp3
都是单个标记,并且无法识别空格。我敢打赌,这些根本不是空格字符,而是其他可以像空格字符一样呈现的东西。
执行以下命令并仔细查看输出
od -c name_of_your_script.sh | less
这会将每个可打印字符转储为可打印字符,并将所有不可打印字符转储为其 ASCII 代码(我认为是八进制)。无论如何,查找我粘贴到答案中的这个特定字符串,并查找参数之间的空格。如果您在那里看到的不是空格,那就是您的问题。
答案3
我认为,你的脚本第一行缺少一个 !,它应该是:
#!/bin/bash
顺便说一下,如果当前目录中有所有 .mp4 文件,那么另一种方法就是在 bash 中执行以下操作:
for file in `ls *.mp4 | cut -d '.' -f -1 `;
do
ffmpeg -i ${file}.mp4 -b:a 192k -vn ${file}.mp3;
done
您可以调整 *.mp4 中的 glob 标准以满足您的需求(例如ls ../media/bio123/97*BIO*.mp4
)
上述情况的具体细节如下:
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
然后${file}.mp4
语法只是帮助 shell 知道我在谈论$file
for 循环中定义的变量,而不是名为 ' 的变量$file.mp4'
。最后没有什么特别的file
- 你可以将循环写成这样:
for foo in `ls *.mp4 | cut -d '.' -f -1 `;
do
ffmpeg -i ${foo}.mp4 -b:a 192k -vn ${foo}.mp3;
done