Move video quality constants

This commit is contained in:
Rafael 2022-04-20 15:38:55 -03:00 committed by Thomas Zarebczan
parent ebad2d746a
commit 524eeff745
2 changed files with 6 additions and 5 deletions

View file

@ -1 +1,7 @@
export const VIDEO_ALMOST_FINISHED_THRESHOLD = 0.8;
// Quality Options
export const AUTO = 'auto';
export const ORIGINAL = 'original';
export const VIDEO_QUALITY_OPTIONS = [AUTO, ORIGINAL, 144, 240, 360, 480, 720, 1080];

View file

@ -1,5 +0,0 @@
// Quality Options
export const AUTO = 'auto';
export const ORIGINAL = 'original';
export const VIDEO_QUALITY_OPTIONS = [AUTO, ORIGINAL, 144, 240, 360, 480, 720, 1080];