Skip to content

Commit 426fbfb

Browse files
committed
Add alternative HLS video format to list of supported
1 parent 93a0a90 commit 426fbfb

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

dotcom-rendering/src/frontend/schemas/feArticle.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5332,6 +5332,7 @@
53325332
},
53335333
"SupportedVideoFileType": {
53345334
"enum": [
5335+
"application/vnd.apple.mpegurl",
53355336
"application/x-mpegURL",
53365337
"video/mp4"
53375338
],

dotcom-rendering/src/frontend/schemas/feFront.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3966,6 +3966,7 @@
39663966
},
39673967
"SupportedVideoFileType": {
39683968
"enum": [
3969+
"application/vnd.apple.mpegurl",
39693970
"application/x-mpegURL",
39703971
"video/mp4"
39713972
],

dotcom-rendering/src/lib/video.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export type Source = {
1313
*/
1414
export const supportedVideoFileTypes = [
1515
'application/x-mpegURL', // HLS format
16+
'application/vnd.apple.mpegurl', // Alternative HLS format
1617
'video/mp4', // MP4 format
1718
] as const;
1819

0 commit comments

Comments
 (0)