0

how to change video fps/bitrate from backend side after uploading using node js means it should change live from 144p to 240p means it should goes up to down in all quality, in video

Blockquote

Goku Dbz
  • 1
  • 1

1 Answers1

0

use ffmpeg to resize and change bitrate

ffmpeg -i input_video.mp4 -vf "scale=426:240" -b:v 10M output_video.mp4
mohammad Naimi
  • 2,259
  • 1
  • 5
  • 15