Gstreamer:将YUV(4:2:2)原始视频转换为mp4(带有h264编码)

时间:2018-08-23 18:27:26

标签: gstreamer mp4 h.264 yuv

这是我正在运行的,但是它不起作用。该命令怎么了?

gst-launch-1.0 filesrc location=file.yuv ! video/x-raw, format=YUY2 ! decodebin ! \
               videoconvert ! omxh264enc ! queue ! filesink location=output.mp4

错误:管道不想暂停 错误:无法初始化支持库

1 个答案:

答案 0 :(得分:0)

这里有很多错误。这至少应该使您更接近。

gst-launch-1.0 filesrc location=file.yuv ! rawvideoparse format=yuy2, width=xxx, height=xxx ! \
videoconvert ! omxh264enc ! queue ! mp4mux ! filesink location=output.mp4