Python 子进程中的 ffmpeg - 无法为“管道:”找到合适的输出格式
Posted
技术标签:
【中文标题】Python 子进程中的 ffmpeg - 无法为“管道:”找到合适的输出格式【英文标题】:ffmpeg in Python subprocess - Unable to find a suitable output format for 'pipe:' 【发布时间】:2015-11-21 09:18:57 【问题描述】:尝试通过 Python 使用 ffmpeg 将 subs 刻录到视频中。在命令行中工作正常,但是从 Python 子进程调用时:
p = subprocess.Popen('cd ~/Downloads/yt/; ffmpeg -i ./video -vf subtitles=./subtitles out.mp4'.format(video=vid.replace(' ', '\ '), subtitles=subs, out='out.mp4'), shell=True)
我明白了:
Unable to find a suitable output format for 'pipe:'
完整的追溯:
'ffmpeg version 2.7.2 Copyright (c) 2000-2015 the FFmpeg developers
built with Apple LLVM version 6.1.0 (clang-602.0.53) (based on LLVM 3.6.0svn)
configuration: --prefix=/usr/local/Cellar/ffmpeg/2.7.2_1 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-opencl --enable-libx264 --enable-libmp3lame --enable-libvo-aacenc --enable-libxvid --enable-libfreetype --enable-libvpx --enable-libass --enable-libfdk-aac --enable-nonfree --enable-vda
libavutil 54. 27.100 / 54. 27.100
libavcodec 56. 41.100 / 56. 41.100
libavformat 56. 36.100 / 56. 36.100
libavdevice 56. 4.100 / 56. 4.100
libavfilter 5. 16.101 / 5. 16.101
libavresample 2. 1. 0 / 2. 1. 0
libswscale 3. 1.101 / 3. 1.101
libswresample 1. 2.100 / 1. 2.100
libpostproc 53. 3.100 / 53. 3.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from './OnHub - a router for the new way to Wi-Fi-HNnfHP7VDP8.mp4':
Metadata:
major_brand : isom
minor_version : 512
compatible_brands: isomiso2avc1mp41
encoder : Lavf56.36.100
Duration: 00:00:53.94, start: 0.000000, bitrate: 2092 kb/s
Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 1961 kb/s, 23.98 fps, 23.98 tbr, 90k tbn, 47.95 tbc (default)
Metadata:
handler_name : VideoHandler
Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 125 kb/s (default)
Metadata:
handler_name : SoundHandler
[NULL @ 0x7fc07b077600] Unable to find a suitable output format for 'pipe:'
pipe:: Invalid argument'
【问题讨论】:
您能否为代码提供更多上下文以及完整的回溯? 除了文件名的导入和变量之外,代码实际上就是这样。简单的测试。回溯:pastebin.com/gDLjrHZs 您应该直接在问题中包含回溯。如果没有更多的代码,为什么不包括它:)?这是一个养成的好习惯,因为即使在这里无关紧要,它通常也很重要。 尝试打印 -print('cd ~/Downloads/yt/; ffmpeg -i ./video -vf subtitles=./subtitles out.mp4'.format(video=vid.replace(' ', '\ '), subtitles=subs, out='out.mp4'))
- 检查输出以查看直接在命令行中运行的内容之间的任何问题/差异。
试试这个:p = subprocess.Popen(['ffmpeg', '-i', 'path/to/video', '-vf', 'subtitles=path/to/subtitles', 'out.mp4'])
【参考方案1】:
我猜问题是你在一些参数中有空格,你没有逃避。你可以逃避它,但这是做你想做的事情的更好方法:
import os
directory_path = os.path.expanduser('~/Downloads/yt/')
video_path = 'path/to/video'
subtitles_path = 'path/to/subtitles'
outfile_path = 'out.mp4'
args = ['ffmpeg', '-i', video_path, '-vf',
'subtitles='.format(subtitles_path), outfile_path]]
p = subprocess.Popen(args, cwd=directory_path)
主要区别在于您没有使用shell=True
,这是出于安全性和其他原因的良好做法,包括您不必担心用空格引用参数这一事实。因为它没有使用shell=True
,所以您必须将命令行作为字符串列表传递,每个参数一个元素,而不是像以前那样使用一个字符串。
【讨论】:
顺便说一句,不久前我正在使用 Python 中的 FFMpeg 进行一个项目。 感谢@o11c 的编辑,这样肯定更好。以上是关于Python 子进程中的 ffmpeg - 无法为“管道:”找到合适的输出格式的主要内容,如果未能解决你的问题,请参考以下文章
无法弄清楚如何在 Python 3.5 中杀死子进程 [重复]