adjustaments

It's long but don't really know how to short this description line more ^^"
I've added the long forms of `c:` and `b:v`. Threads has been added because I noticed that if expressed as `0` or not set, only 1 thread is used. (tested on version 3.4.1-1)
coverage
Francesco Yoshi Gobbo 2017-12-28 12:34:56 +01:00 committed by GitHub
parent 054052d9e0
commit f90823802f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -26,6 +26,6 @@
`ffmpeg -i {{input_video}}.mkv -codec copy {{output_video}}.mp4`
- Convert MP4 video to VP9 codec. The CRF value can be from 063. Lower values mean better quality. -b:v MUST be 0:
- Convert MP4 video to VP9 codec. For the best quality, use a CRF value (recommended range 15-35) if so, -b:video MUST be 0:
`ffmpeg -i {{input_video}}.mp4 -c:v libvpx-vp9 -crf 30 -b:v 0 {{output_video}}.webm`
`ffmpeg -i {{input_video}}.mp4 -codec:video libvpx-vp9 -crf 30 -b:video 0 -codec:audio libopus -vbr on -threads {{number_of_threads}} {{output_video}}.webm`