forked from grafov/m3u8
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Release] Merge develop into main (#16)
* [SSAI-500] Allow Segment Insertion into MediaPlaylist (#11) * Allow Segment Insertion into MediaPlaylist * [SSAI-702] Support EXT-X-SESSION-DATA (#15) * [SSAI-702] Support EXT-X-SESSION-DATA * add comment * SessionData struct uses pointer instead * enforce spec on strict read + test * spec compliant write * remove comments --------- Co-authored-by: Patrick Su <[email protected]>
- Loading branch information
1 parent
054b353
commit 72380e0
Showing
8 changed files
with
238 additions
and
16 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
14 changes: 14 additions & 0 deletions
14
sample-playlists/master-with-session-data-with-duplicate-data-id-and-language.m3u8
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,14 @@ | ||
#EXTM3U | ||
#EXT-X-VERSION:3 | ||
#EXT-X-SESSION-DATA:DATA-ID="com.example.movie.title",VALUE="Example Movie",LANGUAGE="en" | ||
#EXT-X-SESSION-DATA:DATA-ID="com.example.movie.title",VALUE="Example Movie",LANGUAGE="en" | ||
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=300000 | ||
chunklist-b300000.m3u8 | ||
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=600000 | ||
chunklist-b600000.m3u8 | ||
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=850000 | ||
chunklist-b850000.m3u8 | ||
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=1000000 | ||
chunklist-b1000000.m3u8 | ||
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=1500000 | ||
chunklist-b1500000.m3u8 |
13 changes: 13 additions & 0 deletions
13
sample-playlists/master-with-session-data-with-uri-and-value.m3u8
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,13 @@ | ||
#EXTM3U | ||
#EXT-X-VERSION:3 | ||
#EXT-X-SESSION-DATA:DATA-ID="com.example.movie.title",VALUE="Example Movie",LANGUAGE="en",URI="http://example.com/description.json" | ||
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=300000 | ||
chunklist-b300000.m3u8 | ||
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=600000 | ||
chunklist-b600000.m3u8 | ||
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=850000 | ||
chunklist-b850000.m3u8 | ||
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=1000000 | ||
chunklist-b1000000.m3u8 | ||
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=1500000 | ||
chunklist-b1500000.m3u8 |
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,14 @@ | ||
#EXTM3U | ||
#EXT-X-VERSION:3 | ||
#EXT-X-SESSION-DATA:DATA-ID="com.example.movie.title",VALUE="Example Movie",LANGUAGE="en" | ||
#EXT-X-SESSION-DATA:DATA-ID="com.example.movie.description",URI="http://example.com/description.json" | ||
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=300000 | ||
chunklist-b300000.m3u8 | ||
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=600000 | ||
chunklist-b600000.m3u8 | ||
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=850000 | ||
chunklist-b850000.m3u8 | ||
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=1000000 | ||
chunklist-b1000000.m3u8 | ||
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=1500000 | ||
chunklist-b1500000.m3u8 |
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