I'm converting from WMV to FLV using FFMPEG, and my problem is that the FLV videos are so big! the 15 minutes video's size ranges between 150MB and 1GB!
I'm using the following FFMPEG command to convert and split WMV videos :
nohup nice -1 ffmpeg -y -ss 00:00:00 -t 00:15:00 -async 1 -i INPUT.WMV -acodec libmp3lame OUTPUT.FLV
And I've tried converting to MP4 before and the video size was much smaller than the FLV video.
So my questions are:
- Would the
MP4videos have any compatibility issues browsers? - Would it work on iPhone, iPad? (I
know
FLVvideos doesn't work on iPhones or iPads) - What is the best
FFMPEGcommand to convert toMP4without losing the quality of the video?