Downsample to the closest divisor standard framerate

This commit is contained in:
Rigel Kent 2020-01-14 23:34:03 +01:00 committed by Chocobozzz
parent 0539dba824
commit 06bcfbd9f7
6 changed files with 23 additions and 9 deletions

View file

@ -1,6 +1,8 @@
export type VideoTranscodingFPS = {
MIN: number,
AVERAGE: number,
MAX: number,
MIN: number
STANDARD: number[]
HD_STANDARD: number[]
AVERAGE: number
MAX: number
KEEP_ORIGIN_FPS_RESOLUTION_MIN: number
}