Hi,<br><br>i try to encode a MPEG-2/AC-3 video to the new WebM format (VP8+Vorbis).<br><br>I use the following pipeline:<br><br># gst-launch -tv filesrc location=$SOURCE ! decodebin name=decoder \<br> decoder. ! queue ! audioconvert ! vorbisenc ! queue ! \<br>
 webmmux name=muxer \<br> decoder. ! queue ! ffmpegcolorspace ! vp8enc quality=5 speed=2 max-keyframe-distance=250 ! queue ! \<br> muxer. muxer. ! queue ! filesink location=$DESTINATION<br><br>The encoder start and block when the destination file size reach 271783 bytes.<br>
<br>If i change the pipeline and suppress the audio channel:<br><br># gst-launch -tv filesrc location=$SOURCE ! decodebin name=decoder \<br> decoder. ! queue ! ffmpegcolorspace ! vp8enc quality=5 speed=2 max-keyframe-distance=250 ! queue ! \<br>
 webmmux name=muxer ! queue ! filesink location=$DESTINATION<br><br>then the encoder works fine...<br><br>Any idea why the pipeline block when i try to mux audio ?<br><br><br><br>