Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Encoding for fastest decoding with ffmpeg

Tags:

ffmpeg

libx264

Encoding with ffmpeg and libx264, are there presets or flags that will optimize decoding speed?

Right now it seems that videos transcoded with similar file sizes are decoded at very different speeds using Qtkit, and I was wondering whether there are options for encoding such that the decoding speed will be maximal.

like image 230
nbubis Avatar asked Jan 07 '14 02:01

nbubis


1 Answers

There is --tune fastdecode in x264 (or -tune fastdecode if using ffmpeg) if you want optimize for decoding speed at the cost of quality/compression efficiency. In libx264 tune setting is available as one of the params for x264_param_default_preset.

like image 200
nobody555 Avatar answered Sep 28 '22 07:09

nobody555