How do I use gstreamer to encode an ffv1 file? -
i'd encode video gstreamer ffv1 (ffmpeg's lossless video format) file. however, cannot work out type of mux'ing use. if run this:
gst-launch videotestsrc ! ffenc_ffv1 ! filesink location="test.ffv1"
then thing runs ok, resulting file doesn't appear valid video file. when creating theora videos, i've written "theora ! oggmux ! filesink" in pipeline, , works. however, oggmux doesn't work here. type of transport stream should using here, , correct gst-launch fudge use?
cheers.
this not seem supported in version have installed. can check version saving output of gst-xmlinspect
file , searching video/x-ffv
in file. elements mime type mentioned are:
- avidemux
- ogmvideoparse
- ffdec_ffv1
- ffenc_ffv1
so seems supported avi demuxer not muxer.
ps: mime type can found gst-inspect ffenc_ffv1
.
Comments
Post a Comment