aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/helpers/ffmpeg/framerate.ts
blob: 18cb0e0e2f31b510e8cf2c3886ee641af10dca81 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import { VIDEO_TRANSCODING_FPS } from '@server/initializers/constants'
import { VideoResolution } from '@shared/models'

export function computeOutputFPS (options: {
  inputFPS: number
  resolution: VideoResolution
}) {
  const { resolution } = options

  let fps = options.inputFPS

  if (
    // On small/medium resolutions, limit FPS
    resolution !== undefined &&
    resolution < VIDEO_TRANSCODING_FPS.KEEP_ORIGIN_FPS_RESOLUTION_MIN &&
    fps > VIDEO_TRANSCODING_FPS.AVERAGE
  ) {
    // Get closest standard framerate by modulo: downsampling has to be done to a divisor of the nominal fps value
    fps = getClosestFramerateStandard({ fps, type: 'STANDARD' })
  }

  // Hard FPS limits
  if (fps > VIDEO_TRANSCODING_FPS.MAX) fps = getClosestFramerateStandard({ fps, type: 'HD_STANDARD' })

  if (fps < VIDEO_TRANSCODING_FPS.MIN) {
    throw new Error(`Cannot compute FPS because ${fps} is lower than our minimum value ${VIDEO_TRANSCODING_FPS.MIN}`)
  }

  return fps
}

// ---------------------------------------------------------------------------
// Private
// ---------------------------------------------------------------------------

function getClosestFramerateStandard (options: {
  fps: number
  type: 'HD_STANDARD' | 'STANDARD'
}) {
  const { fps, type } = options

  return VIDEO_TRANSCODING_FPS[type].slice(0)
                                    .sort((a, b) => fps % a - fps % b)[0]
}