-
Notifications
You must be signed in to change notification settings - Fork 36
Description
Hi
I'm pleased to see an effort to provide a set of Media Tools for generation too. We use ffmpeg ourselves currently with other third-party packagers but it's a good idea to try to work towards a common best practice for the most common use cases.
There are a few issues with the current tool that I'd like to recommend for update.
Firstly, for the Windows command line a single-quote is not supported so please change to double-quotes, as used on the video/audio filters, i.e:-
-vf "scale=768x432"
-af "pan=stereo:c0<c0+c1:c1<c0+c1"
Also, why not supply a Level for the High profile? It defaults to level 3.0, but common guidelines now seem to recommend level 4.2:
-level:v 4.2
And finally, support for additional user-specified ffmpeg or x264 options would be great. For instance, we supply 4:4:4 input, so we need to specify an ffmpeg output option of:
-pix_fmt yuv420p
(but other ffmpeg/x264 user-defined options would be a great feature for specific use cases depending on the workflow of the end-user)