1

我用 videomixer2 创建了一个图片马赛克,我想在我的一张图片周围添加边框。我尝试使用 videoscale “add-borders” 属性,但它不起作用。

这是我的管道:

gst-launch videomixer2 sink_0::ypos=200 sink_0::xpos=200 \
                   sink_2::xpos=200 \
                   sink_3::xpos=400 \
                   sink_4::ypos=200 \
       name=mixer ! \
    ffmpegcolorspace ! xvimagesink \
    uridecodebin uri=http://upload.wikimedia.org/wikipedia/commons/thumb/2/2d/Nostalgie_logo_simple.png/120px-Nostalgie_logo_simple.png ! \
            videoscale ! ffmpegcolorspace ! imagefreeze !  \
            textoverlay font-desc="Sans 24" text="Nostalgie" valign=top shaded-background=true ! \
            textoverlay font-desc="Sans 24" text="PLAYING" valign=bottom shaded-background=true ! \
            "video/x-raw-yuv, format=(fourcc)AYUV, width=200, height=200" ! mixer. \
    uridecodebin uri=http://www.logotheque.fr/6396-2/logo+RMC+INFO.jpg ! \
            videoscale ! ffmpegcolorspace ! imagefreeze ! \
            textoverlay font-desc="Sans 24" text="RMC" valign=top shaded-background=true ! \
            "video/x-raw-yuv, format=(fourcc)AYUV, width=200, height=200" ! mixer. \
    uridecodebin uri=http://upload.wikimedia.org/wikipedia/fr/1/14/Logo_vibration.JPG ! \
            videoscale add-borders=true ! ffmpegcolorspace ! imagefreeze ! \
            textoverlay font-desc="Sans 24" text="Vibration" valign=top shaded-background=true ! \
            "video/x-raw-yuv, format=(fourcc)AYUV, width=200, height=200" ! mixer. \
    uridecodebin uri=http://upload.wikimedia.org/wikipedia/commons/b/b4/France_Inter.png ! \
            videoscale ! ffmpegcolorspace ! imagefreeze ! \
            textoverlay font-desc="Sans 24" text="France Inter" valign=top shaded-background=true ! \
            "video/x-raw-yuv, format=(fourcc)AYUV, width=200, height=200" ! mixer. \
    uridecodebin uri=http://upload.wikimedia.org/wikipedia/commons/thumb/6/64/France_Info.png/120px-France_Info.png ! \
            videoscale ! ffmpegcolorspace ! imagefreeze ! \
            textoverlay font-desc="Sans 24" text="France Info" valign=top shaded-background=true ! \
            "video/x-raw-yuv, format=(fourcc)AYUV, width=200, height=200" ! mixer.

“add-borders”属性放置在第三个源上。我错过了什么?如果无法使用 videoscale,如何在视频流周围添加边框?

谢谢您的帮助。

4

1 回答 1

0

如果添加“video/x-raw-yuv, width=(int)650, height=(int)450, framerate=(fraction)25/1”,则可以更改 videomixer2 的输出大小,因此在使用 xpos 后输出会更大你有一个边界。

视频混合器2 ...!“视频/x-raw-yuv,宽度=(int)650,高度=(int)450,帧率=(分数)25/1”!ffmpeg色彩空间!xvimagesink

于 2013-10-31T11:21:42.767 回答