You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
865 B
35 lines
865 B
import { createContext } from 'react'; |
|
|
|
export type VideoQuality = { |
|
index: number; |
|
/** |
|
* This property is not just for display or so |
|
* but it holds information |
|
* |
|
* @example '1.2Mbps@24fps' |
|
*/ |
|
name: string; |
|
}; |
|
|
|
export interface VideoSettingsStaticService { |
|
getVideoQualities(): Promise<Array<VideoQuality>>; |
|
} |
|
|
|
class VideoSettingsService { |
|
private static readonly VIDEO_CONFIG_URL = '/api/video/variants'; |
|
|
|
public static async getVideoQualities(): Promise<Array<VideoQuality>> { |
|
let qualities: Array<VideoQuality> = []; |
|
|
|
try { |
|
const response = await fetch(VideoSettingsService.VIDEO_CONFIG_URL); |
|
qualities = await response.json(); |
|
} catch (e) { |
|
console.error(e); |
|
} |
|
return qualities; |
|
} |
|
} |
|
|
|
export const VideoSettingsServiceContext = |
|
createContext<VideoSettingsStaticService>(VideoSettingsService);
|
|
|