我需要并排合并两个avi视频,并使用python + gstreamer成功完成以下代码。
pipe = """
videomixer2 name=mix background=1
sink_0::xpos=0 sink_0::ypos=60 sink_0::zorder=0
sink_1::xpos=640 sink_1::ypos=60 sink_1::zorder=0 !
ffmpegcolorspace name=colorsp_saida !
video/x-raw-yuv, format=(fourcc)I420, width=1280, height=480, framerate=25/1 !
x264enc quantizer=45 speed-preset=6 profile=1 ! queue !
mp4mux name=mux ! queue ! filesink location="output.mp4"
filesrc location="video1.avi" ! decodebin2 name=dbvideo1 !
aspectratiocrop aspect-ratio=16/9 ! videoscale ! videorate !
ffmpegcolorspace name=colorsp_video1 !
video/x-raw-yuv, format=(fourcc)AYUV, framerate=25/1, width=640, height=360 !
mix.sink_0
filesrc location="video2.avi" ! decodebin2 name=dbvideo2 !
aspectratiocrop aspect-ratio=16/9 ! videoscale ! videorate !
ffmpegcolorspace name=colorsp_video2 !
video/x-raw-yuv, format=(fourcc)AYUV, framerate=25/1, width=640, height=360 !
mix.sink_1
"""
import gst
pipeline = gst.Pipeline()
bus = pipeline.get_bus()
gst_bin = gst.parse_bin_from_description(pipe, False)
pipeline.add(gst_bin)
pipeline.set_state(gst.STATE_PLAYING)
msg = bus.timed_pop_filtered(gst.CLOCK_TIME_NONE, gst.MESSAGE_ERROR | gst.MESSAGE_EOS)
pipeline.set_state(gst.STATE_NULL)
我正在使用ubuntu 12.04 LTS,python 2.7和gstreamer。
我的问题很少,
如果我有任何其他方式合并和转换此文件,除了gstreamer也可以接受。
UPDATE1:
经过几天的工作后,我发现程序在pipeline.set_state(gst.STATE_NULL)
行挂起。任何人都有一个想法,如何克服这一点。
基本上我需要毫无困难地释放管道资源。
UPDATE2:
我需要并排合并两个视频(avi)文件(文件将有一个音频)并转换为MP4格式,这是一个完整的想法。我尝试使用gstreamer并卡在我上面描述的地方。
答案 0 :(得分:1)
正在使用ffmpeg
代码,
./ffmpeg -i video1.avi -i video2.avi -r 30 -filter_complex "[0:v]scale=640:480, setpts=PTS-STARTPTS, pad=1280:720:0:120[left]; [1:v]scale=640:480, setpts=PTS-STARTPTS, pad=640:720:0:120[right]; [left][right]overlay=w; amerge,pan=stereo:c0<c0+c2:c1<c1+c3" -vcodec libx264 -acodec aac -strict experimental output.mp4
答案 1 :(得分:0)
我相信ffmpeg可能会快一点,看看这些链接:
http://ffmpeg.org/pipermail/ffmpeg-user/2013-June/015662.html https://trac.ffmpeg.org/wiki/FilteringGuide#multipleinputoverlayin2x2grid
python的ffmpeg包装器: