GNOME Bugzilla – Bug 600931
gst pipeline very slow
Last modified: 2009-11-06 11:40:02 UTC
gst pipeline slower than mencoder just encoding audio from a52 to mp3. from 2min length title. time gst-launch dvdreadsrc title=2 ! dvddemux ! a52dec ! audio/x-raw-float ! audioconvert ! lame ! filesink location=test time mencoder dvd://2 -ovc frameno -oac lavc -o test mencoder: 2.4s gst: 7s same results when copy dvd title to disk first then run encoders This shows gst is much slower then mencoder
-oac lavc compresses to mpeg1/layer2 , which is quite less complex than layer3. try with -oac mp3lame for a proper comparision, but you'll notice it's 2/3 times slower. And if you want to try the equivalen in gstreamer, replace lame with ffenc_mp2
yes, true, you are right thank you for clarifying. False alarm, no bug after all. although the theora video encoding is 4 times slower than mpeg4, I suppose is to do with theora itself and not gst.