On 16 Jun 2015, at 05:13, Dani A <[email protected]> wrote:
> I am using the below command to covert the .mov files to play html5, but it > takes so much time..Is there another way to convert those files so they can > play on html5 players but fast to convert... > ffmpeg -i input.MOV -vf scale=720x406,setdar=16:9 -c:v libx264 -profile:v > main -crf 20 -movflags faststart output.MOV You can make it faster by lowering the quality, by increasing the crf value. -crf 23 is the default value and is faster then -crf 20. It depends on the kind of stream and on your eyes how high is acceptable to you. Another option if player accepts this is anamorphic encoding, non-square pixels. > > > Is there a faster codec to use compared to the libx264? According to Eighth MPEG-4 AVC/H.264 Video Codecs Comparison … libx264 is the fastest. > > > _______________________________________________ > ffmpeg-user mailing list > [email protected] > http://ffmpeg.org/mailman/listinfo/ffmpeg-user _______________________________________________ ffmpeg-user mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-user
