forked from video-dev/hls.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test-streams.js
272 lines (267 loc) · 8.33 KB
/
test-streams.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
/**
* Create test stream
* @param {string} url
* @param {string} description
* @param {boolean} [live]
* @param {boolean} [abr]
* @param {string[]} [blacklist_ua]
* @returns {{url: string, description: string, live: boolean, abr: boolean, blacklist_ua: string[]}}
*/
function createTestStream(
url,
description,
live = false,
abr = true,
blacklist_ua = []
) {
return {
url,
description,
live,
abr,
blacklist_ua,
};
}
/**
* @param {Object} target
* @param {Object} [config]
* @returns {{url: string, description: string, live: boolean, abr: boolean, blacklist_ua: string[]}}
*/
function createTestStreamWithConfig(target, config) {
if (typeof target !== 'object') {
throw new Error('target should be object');
}
const testStream = createTestStream(
target.url,
target.description,
target.live,
target.abr,
target.blacklist_ua
);
testStream.config = config;
return testStream;
}
module.exports = {
bbb: {
url: 'https://test-streams.mux.dev/x36xhzz/x36xhzz.m3u8',
description: 'Big Buck Bunny - adaptive qualities',
abr: true,
},
fdr: {
url: 'https://cdn.jwplayer.com/manifests/pZxWPRg4.m3u8',
description: 'FDR - CDN packaged, 4s segments, 180p - 1080p',
abr: true,
},
bigBuckBunny480p: {
url:
'https://test-streams.mux.dev/x36xhzz/url_6/193039199_mp4_h264_aac_hq_7.m3u8',
description: 'Big Buck Bunny - 480p only',
abr: false,
blacklist_ua: ['internet explorer'],
},
arte: {
url: 'https://test-streams.mux.dev/test_001/stream.m3u8',
description: 'ARTE China,ABR',
abr: true,
},
deltatreDAI: {
url:
'https://test-streams.mux.dev/dai-discontinuity-deltatre/manifest.m3u8',
description: 'Ad-insertion in event stream',
abr: false,
blacklist_ua: ['internet explorer'],
},
issue666: {
url:
'https://playertest.longtailvideo.com/adaptive/issue666/playlists/cisq0gim60007xzvi505emlxx.m3u8',
description:
'Surveillance footage - https://github.com/video-dev/hls.js/issues/666',
abr: false,
blacklist_ua: ['internet explorer'],
},
closedCaptions: {
url: 'https://playertest.longtailvideo.com/adaptive/captions/playlist.m3u8',
description: 'CNN special report, with CC',
abr: false,
},
customIvBadDts: {
url:
'https://playertest.longtailvideo.com/adaptive/customIV/prog_index.m3u8',
description: 'Custom IV with bad PTS DTS',
abr: false,
},
oceansAES: {
url:
'https://playertest.longtailvideo.com/adaptive/oceans_aes/oceans_aes.m3u8',
description: 'AES encrypted,ABR',
abr: true,
},
mp3Audio: {
url:
'https://playertest.longtailvideo.com/adaptive/vod-with-mp3/manifest.m3u8',
description: 'MP3 VOD demo',
abr: false,
},
mpegAudioOnly: {
url: 'https://pl.streamingvideoprovider.com/mp3-playlist/playlist.m3u8',
description: 'MPEG Audio Only demo',
abr: false,
blacklist_ua: ['internet explorer', 'MicrosoftEdge', 'firefox'],
},
fmp4: {
url:
'https://storage.googleapis.com/shaka-demo-assets/angel-one-hls/hls.m3u8',
description: 'HLS fMP4 Angel-One multiple audio-tracks',
abr: true,
blacklist_ua: ['internet explorer'],
},
fmp4Bitmovin: {
url:
'https://bitdash-a.akamaihd.net/content/MI201109210084_1/m3u8s-fmp4/f08e80da-bf1d-4e3d-8899-f0f6155f6efa.m3u8',
description: 'HLS fMP4 by Bitmovin',
abr: true,
blacklist_ua: ['internet explorer'],
},
fmp4BitmovinHevc: {
url:
'https://bitmovin-a.akamaihd.net/content/dataset/multi-codec/hevc/stream_fmp4.m3u8',
description:
'HLS HEVC fMP4 by Bitmovin (Safari and Edge? only as of 2020-08)',
abr: true,
blacklist_ua: ['internet explorer'],
skipFunctionalTests: true,
},
offset_pts: {
url: 'https://test-streams.mux.dev/pts_shift/master.m3u8',
description: 'DK Turntable, PTS shifted by 2.3s',
abr: true,
},
angelOneShakaWidevine: createTestStreamWithConfig(
{
url:
'https://storage.googleapis.com/shaka-demo-assets/angel-one-widevine-hls/hls.m3u8',
description:
'Shaka-packager Widevine DRM (EME) HLS-fMP4 - Angel One Demo',
abr: true,
blacklist_ua: [
'firefox',
'safari',
'internet explorer',
{ name: 'chrome', version: '69.0' },
],
},
{
widevineLicenseUrl: 'https://cwip-shaka-proxy.appspot.com/no_auth',
emeEnabled: true,
}
),
audioOnlyMultipleLevels: {
url:
'https://s3.amazonaws.com/qa.jwplayer.com/~alex/121628/new_master.m3u8',
description: 'Multiple non-alternate audio levels',
abr: true,
},
pdtDuplicate: {
url: 'https://playertest.longtailvideo.com/adaptive/artbeats/manifest.m3u8',
description: 'Stream with duplicate sequential PDT values',
abr: false,
},
pdtLargeGap: {
url: 'https://playertest.longtailvideo.com/adaptive/boxee/playlist.m3u8',
description: 'PDTs with large gaps following discontinuities',
abr: false,
},
pdtBadValues: {
url:
'https://playertest.longtailvideo.com/adaptive/progdatime/playlist2.m3u8',
description: 'PDTs with bad values',
abr: false,
},
pdtOneValue: {
url: 'https://playertest.longtailvideo.com/adaptive/aviion/manifest.m3u8',
description: 'One PDT, no discontinuities',
abr: false,
},
noTrackIntersection: createTestStreamWithConfig(
{
url:
'https://s3.amazonaws.com/qa.jwplayer.com/~alex/123633/new_master.m3u8',
description:
'Audio/video track PTS values do not intersect; 10 second start gap',
abr: false,
},
{
avBufferOffset: 10.5,
}
),
altAudioAndTracks: {
// url: 'https://wowzaec2demo.streamlock.net/vod-multitrack/_definst_/smil:ElephantsDream/elephantsdream2.smil/playlist.m3u',
url:
'https://playertest.longtailvideo.com/adaptive/elephants_dream_v4/index.m3u8',
description: 'Alternate audio tracks, and multiple VTT tracks',
vendor: 'wowza',
abr: true,
},
altAudioAudioOnly: createTestStreamWithConfig(
{
url:
'https://playertest.longtailvideo.com/adaptive/alt-audio-no-video/sintel/playlist.m3u8',
description: 'Audio only with alternate audio track (Sintel)',
abr: false,
},
{
// the playlist segment durations are longer than the media. So much so, that when seeking near the end,
// the timeline shifts roughly 10 seconds seconds back, and as a result buffering skips several segments
// to adjust for the currentTime now being places at the very end of the stream.
allowedBufferedRangesInSeekTest: 3,
}
),
altAudioMultiAudioOnly: {
url:
'https://playertest.longtailvideo.com/adaptive/alt-audio-no-video/angel-one.m3u8',
description: 'Audio only with multiple alternate audio tracks (Angel One)',
abr: false,
},
muxedFmp4: {
url: 'https://s3.amazonaws.com/qa.jwplayer.com/hlsjs/muxed-fmp4/hls.m3u8',
description: 'Muxed av fmp4 - appended to "audiovideo" SourceBuffer',
abr: false,
},
altAudioWithPdtAndStartGap: {
url:
'https://playertest.longtailvideo.com/adaptive/hls-test-streams/test-audio-pdt/playlist.m3u8',
description: 'PDT before each segment, 1.59s start gap',
// Disable smooth switch on this stream. Test is flakey because of what looks like (auto)play issue. To be expected with this large a gap (for now).
// abr: true,
startSeek: true,
},
AppleAdvancedHevcAvcHls: {
url:
'https://devstreaming-cdn.apple.com/videos/streaming/examples/bipbop_adv_example_hevc/master.m3u8',
description:
'Advanced stream (HEVC/H.264, AC-3/AAC, WebVTT, fMP4 segments)',
},
AppleLowLatencyHls: {
url: 'https://ll-hls-test.apple.com/master.m3u8',
description: 'Apple Low-Latency HLS sample (TS segments)',
live: true,
},
AppleLowLatencyCmafHls: {
url: 'https://ll-hls-test.apple.com/cmaf/master.m3u8',
description: 'Apple Low-Latency HLS sample (fMP4 segments)',
live: true,
},
groupIds: {
url: 'https://mtoczko.github.io/hls-test-streams/test-group/playlist.m3u8',
description: 'Group-id: subtitle and audio',
abr: true,
skipFunctionalTests: true,
},
redundantLevelsWithTrackGroups: {
url:
'https://playertest.longtailvideo.com/adaptive/elephants_dream_v4/redundant.m3u8',
description: 'Redundant levels with subtitle and audio track groups',
abr: true,
skipFunctionalTests: true,
},
};