0

how to add text watermark and convert a video flv to 3gp with FFMPEG?

lakshanz
  • 1
  • 1

1 Answers1

0

Below is the code to convert flv to 3gp:

ffmpeg -i input.flv -s 176x144 -vcodec h263 -r 15 -b 200 -ab 12.8 -acodec amr_nb -ar 8000 output.3gp

Muhammad Razib
  • 1,297
  • 9
  • 13