mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-13 10:18:51 +03:00
ffmpeg vp9 conversion
Added sample command to convert an *.mp4 file to *.webm VP9
This commit is contained in:
parent
3a0d13a8d2
commit
054052d9e0
@ -25,3 +25,7 @@
|
||||
- Remux MKV video to MP4 without re-encoding audio or video streams:
|
||||
|
||||
`ffmpeg -i {{input_video}}.mkv -codec copy {{output_video}}.mp4`
|
||||
|
||||
- Convert MP4 video to VP9 codec. The CRF value can be from 0–63. Lower values mean better quality. -b:v MUST be 0:
|
||||
|
||||
`ffmpeg -i {{input_video}}.mp4 -c:v libvpx-vp9 -crf 30 -b:v 0 {{output_video}}.webm`
|
||||
|
Loading…
Reference in New Issue
Block a user