diff options
author | Vignesh Venkatasubramanian <vigneshv@google.com> | 2015-03-31 19:40:01 -0700 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-04-05 02:08:55 +0200 |
commit | 26f2e2f3f73f0da088e6765291d0839ebb077b03 (patch) | |
tree | 9d7f943e6fd967ace3411ba705677969bcf6051f /tests/ref/fate/webm-dash-manifest-live | |
parent | bc0e65e7d0d0459622f0e0b5936efd5a6aa38b01 (diff) | |
download | ffmpeg-26f2e2f3f73f0da088e6765291d0839ebb077b03.tar.gz |
webmdashenc: Support for live stream manifests
This patch adds support for creating DASH manifests for WebM Live
Streams. It also updates the documentation and adds a fate test to
verify the behavior of the new muxer flag.
Signed-off-by: Vignesh Venkatasubramanian <vigneshv@google.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'tests/ref/fate/webm-dash-manifest-live')
-rw-r--r-- | tests/ref/fate/webm-dash-manifest-live | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/ref/fate/webm-dash-manifest-live b/tests/ref/fate/webm-dash-manifest-live new file mode 100644 index 0000000000..a6aef97a2c --- /dev/null +++ b/tests/ref/fate/webm-dash-manifest-live @@ -0,0 +1,26 @@ +<?xml version="1.0" encoding="UTF-8"?> +<MPD + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns="urn:mpeg:DASH:schema:MPD:2011" + xsi:schemaLocation="urn:mpeg:DASH:schema:MPD:2011" + type="dynamic" + minBufferTime="PT1S" + profiles="urn:mpeg:dash:profile:isoff-live:2011" + availabilityStartTime="" + timeShiftBufferDepth="PT7200S"> +<UTCTiming + schemeIdUri="urn:mpeg:dash:utc:direct:2012" + value=""/> +<Period id="0" start="PT0S" > +<AdaptationSet id="0" mimeType="video/webm" codecs="vp9" bitstreamSwitching="true" subsegmentAlignment="true" subsegmentStartsWithSAP="1"> +<ContentComponent id="1" type="video"/> +<SegmentTemplate timescale="1000" duration="5000" media="dash_live_video_$RepresentationID$_$Number$.chk" startNumber="1" initialization="dash_live_video_$RepresentationID$.hdr"/> +<Representation id="360" bandwidth="1000000" width="640" height="360" codecs="vp9" mimeType="video/webm" startsWithSAP="1"></Representation> +</AdaptationSet> +<AdaptationSet id="1" mimeType="audio/webm" codecs="vorbis" bitstreamSwitching="true" subsegmentAlignment="true" subsegmentStartsWithSAP="1"> +<ContentComponent id="1" type="audio"/> +<SegmentTemplate timescale="1000" duration="5000" media="dash_live_audio_$RepresentationID$_$Number$.chk" startNumber="1" initialization="dash_live_audio_$RepresentationID$.hdr"/> +<Representation id="171" bandwidth="128000" audioSamplingRate="32000" codecs="vorbis" mimeType="audio/webm" startsWithSAP="1"></Representation> +</AdaptationSet> +</Period> +</MPD> |