-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(SUP-41054): Playlist Chapter display issue with Live to VOD (#768)
Description of the Changes Add mediaEntryType under source-config Part of #379 Solves SUP-41054
- Loading branch information
1 parent
0744337
commit 8df66e2
Showing
3 changed files
with
9 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
export const MediaType = { | ||
import {PKMediaTypes} from '../types/media-types'; | ||
|
||
const MediaType: PKMediaTypes = { | ||
VOD: 'Vod', | ||
LIVE: 'Live', | ||
AUDIO: 'Audio', | ||
IMAGE: 'Image', | ||
DOCUMENT: 'Document', | ||
UNKNOWN: 'Unknown' | ||
} as const; | ||
}; | ||
export {MediaType}; |
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 @@ | ||
export type PKMediaTypes = {[type: string]: string}; |
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