escaped / django-video-encoding

django-video-encoding helps to convert your videos into different formats and resolutions.
BSD 3-Clause "New" or "Revised" License
115 stars 45 forks source link

Support for multi-pass encoding #11

Open escaped opened 5 years ago

escaped commented 5 years ago

Many encoders provide multi-pass encoding for higher image quality and compression ration (eg. VP9). This is currently not supported and would be a nice addition for some use cases.

ajeema commented 3 years ago

if you want to use multipass, although there are much better methods that are faster, a tweak would be to reuse the first pass log file.

escaped commented 3 years ago

yeah, that's basically why it isn't supported. Currently we only do one pass without being able to reuse the logs for a second pass :) Pull Requests are welcome!