使用ffmpeg_extract_subclip-黑帧提取视频的一部分

时间:2018-09-10 12:22:56

标签: python ffmpeg

我正尝试使用:“ ffmpeg_extract_subclip” 提取视频的一部分。

我正面临一些问题:

1。当我剪切一小段视频(1-3秒)时,出现黑帧,则只有音频在工作。 2.当我剪切更长的视频时,输出视频在结束前2-3秒卡住。

这是我的简单代码:

from moviepy.video.io.ffmpeg_tools import ffmpeg_extract_subclip

input_video_path='myPath/vid1.mp4'
output_video_path='myPath/output/vid1.mp4
t1=6.5
t2=16 #random numbers, my last attempt..

ffmpeg_extract_subclip(input_video_path, t1, t2, targetname=output_video_path)

我试图查看代码内部: ffmpeg_extract_subclip Function

但还是不明白怎么了.. :(

我仍在尝试,如果有人知道问题所在或采用其他方法,那就太好了。

非常感谢您的帮助!

2 个答案:

答案 0 :(得分:2)

尝试使用moviepy.video.io.VideoFileClip

from moviepy.video.io.VideoFileClip import VideoFileClip

input_video_path = 'myPath/vid1.mp4'
output_video_path = 'myPath/output/vid1.mp4'

with VideoFileClip(input_video_path) as video:
    new = video.subclip(t1, t2)
    new.write_videofile(output_video_path, audio_codec='aac')

对我来说很好。 aah音频编解码器对于Safari和某些Mac OS视频播放器很重要。

答案 1 :(得分:0)

母版here的母版中有一个修复程序,但尚未更新为pip索引。因此,我使用下面的代码将其带入程序

from moviepy.tools import subprocess_call
from moviepy.config import get_setting

def ffmpeg_extract_subclip(filename, t1, t2, targetname=None):
    """ Makes a new video file playing video file ``filename`` between
    the times ``t1`` and ``t2``. """
    name, ext = os.path.splitext(filename)
    if not targetname:
        T1, T2 = [int(1000*t) for t in [t1, t2]]
        targetname = "%sSUB%d_%d.%s" % (name, T1, T2, ext)

    cmd = [get_setting("FFMPEG_BINARY"),"-y",
           "-ss", "%0.2f"%t1,
           "-i", filename,
           "-t", "%0.2f"%(t2-t1),
           "-vcodec", "copy", "-acodec", "copy", targetname]

然后可以按正常功能调用。 这要求您具有moviepy并且已经安装了依赖项