ffmpeg concat:“不安全的文件名”


83

尝试将一堆mts文件转换为大mp4文件:

stephan@rechenmonster:/mnt/backupsystem/archive2/Videos/20151222/PRIVATE/AVCHD/BDMV$ ~/bin/ffmpeg-git-20160817-64bit-static/ffmpeg -v info -f concat -i <(find STREAM -name '*' -printf "file '$PWD/%p'\n") -deinterlace -r 25 -s hd720 -c:v libx264 -crf 23 -acodec copy -strict -2 ~/tmp/Videos/20151222.mp4
ffmpeg version N-81364-gf85842b-static http://johnvansickle.com/ffmpeg/  Copyright (c) 2000-2016 the FFmpeg developers
  built with gcc 5.4.1 (Debian 5.4.1-1) 20160803
  configuration: --enable-gpl --enable-version3 --enable-static --disable-debug --enable-libmp3lame --enable-libx264 --enable-libx265 --enable-libwebp --enable-libspeex --enable-libvorbis --enable-libvpx --enable-libfreetype --enable-fontconfig --enable-libxvid --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libtheora --enable-libvo-amrwbenc --enable-gray --enable-libopenjpeg --enable-libopus --enable-libass --enable-gnutls --enable-libvidstab --enable-libsoxr --enable-frei0r --enable-libfribidi --disable-indev=sndio --disable-outdev=sndio --enable-librtmp --enable-libmfx --enable-libzimg --cc=gcc-5
  libavutil      55. 28.100 / 55. 28.100
  libavcodec     57. 53.100 / 57. 53.100
  libavformat    57. 46.101 / 57. 46.101
  libavdevice    57.  0.102 / 57.  0.102
  libavfilter     6. 51.100 /  6. 51.100
  libswscale      4.  1.100 /  4.  1.100
  libswresample   2.  1.100 /  2.  1.100
  libpostproc    54.  0.100 / 54.  0.100
[concat @ 0x56054a0] Unsafe file name '/mnt/backupsystem/archive2/Videos/20151222/PRIVATE/AVCHD/BDMV/STREAM'
/dev/fd/63: Operation not permitted

任何想法在这里出什么问题吗?在这种情况下,“不安全文件”是什么意思?


49
-safe 0在之前添加-i。见ffmpeg.org/ffmpeg-all.html#Options-31
吉安

Answers:


85

@Mulvya表示的答案(谢谢!)起作用:“-safe 0在之前添加-i”。然后出现另一个问题,find STREAM -name '*' -printf "file '$PWD/%p'\n"该问题将空路径作为第一个条目返回。对此进行了更改for f in ./*.wav; do echo "file '$PWD/$f'"; done(请参阅https://trac.ffmpeg.org/wiki/Concatenate),现在它似乎可以工作了。欢呼!


1
您也可以将find子命令更改为find STREAM -type f -name '*' -printf "file '$PWD/%p'\n"(并且不要忘记将-safe 0ffmpeg命令添加到该命令)。
erik

17

为了回答为什么,我们需要查看ffmpeg的解复用器的操作,该器从输入文件中读取多媒体流。在这种情况下,我们使用带有以下选项的“ concat” :(存档文档)

此解复用器接受以下选项:

safe如果设置为1,则拒绝不安全的文件路径。如果文件路径不包含协议规范并且是相对的,并且所有组件仅包含来自可移植字符集的字符(字母,数字,句点,下划线和连字符),并且在组件的开头没有句点,则认为该文件路径是安全的。

如果设置为0,则接受任何文件名。

预设值为1。

如果自动探测格式,-1等于1,否则等于0。

原来find ../在文件前面放一个。请参见如何在Unix“ find”中去除前导“ ./”?如果您不想使用解决方案-safe 0


16

@sers的答案是完全正确的,我只是向您显示命令,所以您不要在其他任何地方放置-safe 0。

ffmpeg.exe -f concat -safe 0 -i "clips.txt" -c copy "video.mp4"

11

就我而言,双引号引起错误。

我使用ffmpeg -f concat -i concat.txt -c copy output.m4a命令,其中concat.txt包含要连接的输入文件的列表。

不安全的文件名(双引号视为文件名的一部分,-safe 0无法解决):

file "song1.m4a"
file "song2.m4a"

安全文件名(单引号):

file 'song1.m4a'
file 'song2.m4a'

安全文件名(不带引号):

file song1.m4a
file song2.m4a

上面的单引号不带引号的仅在仅包含“字母,数字,句点(前缀除外),下划线和连字符”时才安全。因此,以下通用文件名将不起作用:

  • 空间
  • 字形
  • /(路径)
  • 前缀期间(隐藏文件)

您仍然需要-safe 0这种情况。

[关于报价和转义的注意事项]

您总是需要'在filename中转义。原因是因为file Im' .avi将自动添加结束报价Im' .avi',与file Im' .avi'。中的最后一个奇数引号file Im' .avi''''''也会添加结束引号变为file Im' .avi''''''',因此它没有No such file or directory错误。我发现了这种现象,因为空格不再需要\在单引号后加上前缀,而不必添加结束引号。

尽管以上(必须逃避'\与无法逃脱"),逃避风格类似于shell。如果filename包含单引号,则可以使用I\'m\ .m4a(不要用单引号引起来)样式将其转义,也可以使用'I'\''m .m4a'OR 'I'\''m'\ '.m4a'(用单引号引起来)样式来将其转义,但不能使用'I\'m\ .m4a''I'm .m4a'

当测试ffmpeg时,请注意第一行错误消息Impossible to open可能会误导(文件确实存在),您需要检查第二行No such file or directory(文件不存在)或Invalid data found when processing input(无效的媒体文件)。


1
使用文本文件中的文件时,在每个文件名前添加文件可以解决我的问题。
hdoghmen
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.