Changes between Version 7 and Version 8 of Ticket #849, comment 14
- Timestamp:
- 08/13/15 06:41:22 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #849, comment 14
v7 v8 59 59 * r10276 fixes vorbis - beware though: we can't mix python2/gstreamer-0.10 servers with python3/gstreamer-1.x clients without getting a stream of warnings: {{{GStreamer-CRITICAL **: gst_segment_to_stream_time: assertion 'segment->format == format' failed}}} (not much we can do about this I am afraid... I'll have to write some code to skip this combination since the warning is deep in gstreamer code and we can't really avoid it since gstreamer is the one that is generating the packet metadata that causes the problems) 60 60 And here's the proof: 61 * this works :61 * this works (0.10 to 0.10, 1.0 to 0.10, 1.0 to 1.0): 62 62 {{{ 63 63 gst-launch-0.10 -q audiotestsrc ! vorbisenc ! gdppay ! filesink location=/dev/stdout | gst-launch-0.10 filesrc location=/dev/stdin ! gdpdepay ! vorbisdec ! autoaudiosink 64 gst-launch-1.0 -q audiotestsrc ! vorbisenc ! gdppay ! filesink location=/dev/stdout | gst-launch-0.10 filesrc location=/dev/stdin ! gdpdepay ! vorbisdec ! autoaudiosink 65 gst-launch-1.0 -q audiotestsrc ! vorbisenc ! gdppay ! filesink location=/dev/stdout | gst-launch-1.0 filesrc location=/dev/stdin ! gdpdepay ! vorbisdec ! autoaudiosink 64 66 }}} 65 * this doesn't ( not sure why it works when we do this same pipeline from our code using python gstreamer...):67 * this doesn't (0.10 to 1.0), not sure why it works when we do this same pipeline from our code using python gstreamer...: 66 68 {{{ 67 69 gst-launch-0.10 -q audiotestsrc ! vorbisenc ! gdppay ! filesink location=/dev/stdout | gst-launch-1.0 filesrc location=/dev/stdin ! gdpdepay ! vorbisdec ! autoaudiosink