-
Notifications
You must be signed in to change notification settings - Fork 6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Parse trick-play role flags from DASH manifests
Issue: #6054 PiperOrigin-RevId: 306641689
- Loading branch information
Showing
8 changed files
with
161 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<MPD type="static" duration="1s" mediaPresentationDuration="PT1S"> | ||
<Period> | ||
<SegmentTemplate startNumber="0" timescale="1000" media="sq/$Number$"> | ||
<SegmentTimeline> | ||
<S d="1000"/> | ||
</SegmentTimeline> | ||
</SegmentTemplate> | ||
<AdaptationSet id="0" mimeType="video/mp4" subsegmentAlignment="true"> | ||
<Representation id="0" codecs="avc1.42c01f" bandwidth="128000"> | ||
<BaseURL>https://test.com/0</BaseURL> | ||
</Representation> | ||
</AdaptationSet> | ||
<AdaptationSet id="1" mimeType="video/mp4" subsegmentAlignment="true"> | ||
<Representation id="0" codecs="avc1.42c01f" bandwidth="128000"> | ||
<BaseURL>https://test.com/0</BaseURL> | ||
</Representation> | ||
</AdaptationSet> | ||
<AdaptationSet id="2" mimeType="video/mp4" subsegmentAlignment="true"> | ||
<EssentialProperty schemeIdUri="http://dashif.org/guidelines/trickmode" value="0"/> | ||
<Representation id="0" codecs="avc1.42c01f" bandwidth="128000"> | ||
<BaseURL>https://test.com/0</BaseURL> | ||
</Representation> | ||
</AdaptationSet> | ||
<AdaptationSet id="3" mimeType="video/mp4" subsegmentAlignment="true"> | ||
<SupplementalProperty schemeIdUri="http://dashif.org/guidelines/trickmode" value="1"/> | ||
<Representation id="0" codecs="avc1.42c01f" bandwidth="128000"> | ||
<BaseURL>https://test.com/0</BaseURL> | ||
</Representation> | ||
</AdaptationSet> | ||
</Period> | ||
</MPD> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters