| 9 | } |
| 10 | |
| 11 | export interface Web265JsConfig { |
| 12 | /** |
| 13 | *The type of the file to be played, do not fill in the automatic identification |
| 14 | */ |
| 15 | type?: 'mp4' | 'hls' | 'ts' | 'raw265' | 'flv' |
| 16 | /** |
| 17 | * playback window dom id value |
| 18 | */ |
| 19 | player: string |
| 20 | /** |
| 21 | * the video window width size |
| 22 | */ |
| 23 | width: number |
| 24 | /** |
| 25 | * the video window height size |
| 26 | */ |
| 27 | height: number |
| 28 | /** |
| 29 | * player token value |
| 30 | */ |
| 31 | token: string |
| 32 | extInfo?: Web265JsExtraConfig |
| 33 | } |
| 34 | |
| 35 | export interface Web265JsMediaInfo { |
| 36 | audioNone: boolean |
nothing calls this directly
no outgoing calls
no test coverage detected