Convert videofiles in flv-format (Android - Java)

Viewed 83

How is it possible to convert video files from the devices into an flv file in my android app (Android Studio)? I know ffmpeg is capable of this. However, I don't know how to use it.

1 Answers

Try This below command to convert video file to .flv

ffmpeg -i input.mp4 -c:v libx264 -ar 22050 -crf 28 output.flv
Related