0
votes

I have a gstreamer pipeline

appsrc ! video/x-raw, format=(string)I420, width=(int)1280, height=(int)720, framerate=(fraction)30/1 ! encodebin ! filesink location=default.raw

This pipeline fetches raw yuv-420 frames, of width 1280 and height 720 with the help of appsrc plugin, and push it to decodebin. The encodebin encodes it into h264 and the filesink will dump it into a file.

But this pipeline is not working as I am not specifying the profile for encodebin. I am working on android with gstreamer, the platform I'm using is OMAP4460, I want to make use of the hardware encoder. But I don't know to which profile I should set the encodebin.

If someone knows about the profile of encodebin, please help me

1

1 Answers