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.
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.
Try This below command to convert video file to .flv
ffmpeg -i input.mp4 -c:v libx264 -ar 22050 -crf 28 output.flv