GNOME Bugzilla – Bug 709457
Do not write out SegmentUID when muxing to WebM
Last modified: 2013-10-06 15:57:47 UTC
Created attachment 256517 [details] [review] Candidate patch against matroska-mux WebM does not support the SegmentUID for segment information. As a result, WebM files muxed through matroskamux are claimed invalid by mkvalidator. Easily reproducible with webm-mux.c's sample pipeline: gst-launch-1.0 webmmux name=mux ! filesink location=test_fix.webm videotestsrc num-buffers=250 ! video/x-raw,framerate=25/1 ! videoconvert ! vp8enc ! queue ! mux.video_0 audiotestsrc samplesperbuffer=44100 num-buffers=10 ! audio/x-raw,rate=44100 ! vorbisenc ! queue ! mux.audio_0 mkvalidator --no-warn test_fix.webm ERR201: Invalid 'SegmentUID' for profile 'webm' in Info at 192 [...] Attached patch avoid writing out this field if muxing to webm. OK to commit?
Commited (edeed575ae6998..). Thanks.