2017-03-18 95 views
1

我一直在研究腳本作爲學習過程和創建方便工具的一部分。我試圖循環播放列表中的視頻文件來提取每個視頻的某個部分。通過查看示例腳本和ffmpeg的文檔,我終於想出了這一點:無法識別的選項'c副本'

import os 
import sys 
import subprocess as sp 

from moviepy.tools import subprocess_call 

def ffmpeg_extract_pandomim_subclip(): 

    with open('videolist.txt') as f: 
     lines = f.readlines() 
    lines = [x.strip() for x in lines] 

    for video in lines: 
     name, ext = os.path.splitext(video) 
     targetname = "%s-pandomim%s" % (name, ext) 
     t1 = "00:10:00" 
     t2 = "00:15:00" 
     cmd = ["ffmpeg", 
       "-i", "%s%s" % (name, ext), 
       "-ss", t1, 
       "-to", t2, "-c copy", targetname] 

     subprocess_call(cmd) 

ffmpeg_extract_pandomim_subclip() 

我知道這是不是這樣做的理想方式:我創建了一個videolist.txt並在TXT列出的所有視頻文件名文件,逐行,(T1-1.mp4,T1-2.mp4,...)與python腳本「new 1.py」和實際的視頻T1-1.mp4共享相同的文件夾, T1-2.mp4,...

這個錯誤讓我很困惑,因爲當我從cmd使用-c複製時,它工作得很好。

完整的錯誤是:

C:\Users\çomak\AppData\Local\Programs\Python\Python35-32\python.exe "C:/ffmpeg/bin/new 1.py" 

[MoviePy] Running: 
>>> ffmpeg -i T1-1.mp4 -ss 00:10:00 -to 00:15:00 -c copy T1-1-pandomim.mp4 
[MoviePy] This command returned an error !Traceback (most recent call last): 
    File "C:/ffmpeg/bin/new 1.py", line 28, in <module> 
    ffmpeg_extract_pandomim_subclip() 
    File "C:/ffmpeg/bin/new 1.py", line 25, in ffmpeg_extract_pandomim_subclip 
    subprocess_call(cmd) 
    File "C:\Users\çomak\AppData\Local\Programs\Python\Python35-32\lib\site-packages\moviepy\tools.py", line 48, in subprocess_call 
    raise IOError(err.decode('utf8')) 
OSError: ffmpeg version N-83975-g6c4665d Copyright (c) 2000-2017 the FFmpeg developers 
    built with gcc 6.3.0 (GCC) 
    configuration: --enable-gpl --enable-version3 --enable-cuda --enable-cuvid --enable-d3d11va --enable-dxva2 --enable-libmfx --enable-nvenc --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libfreetype --enable-libgme --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenh264 --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxavs --enable-libxvid --enable-libzimg --enable-lzma --enable-zlib 
    libavutil  55. 48.100/55. 48.100 
    libavcodec  57. 83.100/57. 83.100 
    libavformat 57. 66.104/57. 66.104 
    libavdevice 57. 3.100/57. 3.100 
    libavfilter  6. 76.100/6. 76.100 
    libswscale  4. 3.101/4. 3.101 
    libswresample 2. 4.100/2. 4.100 
    libpostproc 54. 2.100/54. 2.100 
Unrecognized option 'c copy'. 
Error splitting the argument list: Option not found 


Process finished with exit code 1 

我使用Pycharm,如果我刪除它的工作拷貝-c部分,但是這個過程是緩慢的...用-c副本,它的速度要快得多。

我很感謝您的時間和精力來幫助我!

+0

你可以嘗試擴大這兩個單獨的參數,他們是:'「-c」,「複製」'? –

+0

太棒了!非常感謝克拉克先生。我會記住這些細節 –

回答

1

這將是由於subprocess.call實際調用該命令的方式;你不能將所有的命令壓縮成一個字符串,它們應該完全展開。

爲了解決這個問題,只需將其擴展爲兩個參數,他們是

[ ..., "-c, "copy", ... ]