ffmpeg:conversions:convert_h264_to_av1
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
ffmpeg:conversions:convert_h264_to_av1 [2023/06/13 12:49] – peter | ffmpeg:conversions:convert_h264_to_av1 [2023/06/13 21:50] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== ffmpeg - Conversions - Convert H264 to AV1 ====== | ====== ffmpeg - Conversions - Convert H264 to AV1 ====== | ||
+ | |||
+ | While AV1 is used to create video files, it is not a file format. | ||
+ | |||
+ | * Rather, it is a compression format that any program that saves video files can use to compress videos. | ||
+ | * AV1 videos are most commonly saved using one of several more common video container formats, such as MP4, MKV, and WEBM. | ||
+ | * However, in rare circumstances, | ||
+ | |||
+ | There are various methods to convert to AV1. | ||
+ | |||
+ | AV1 is implemented in **libaom** and **svt-av1**. | ||
+ | |||
+ | * [[ffmpeg: | ||
+ | * [[ffmpeg: | ||
+ | |||
+ | |||
+ | ---- | ||
<code bash> | <code bash> | ||
- | ffmpeg -i input.mp4 -c:v av1 output.avi | + | ffmpeg -y -i a.mp4 -c:v libaom-av1 -strict -2 -b:v 3000K -maxrate 6000K -cpu-used 8 -pass 2 out.mp4 |
+ | |||
+ | ffmpeg -i input.mp4 -c:v av1 output.av1 | ||
</ | </ | ||
+ | |||
+ | |||
+ | |||
<code bash> | <code bash> | ||
Line 26: | Line 47: | ||
</ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Simple method, with Quality/ | ||
+ | |||
+ | |||
+ | <code bash> | ||
+ | ffmpeg -y -i a.mp4 -c:v libaom-av1 -cpu-used 8 -f mp4 out.mp4 | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | </ | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Simple usage ===== | ||
+ | |||
+ | <code bash> | ||
+ | ffmpeg -y -i a.mp4 -c:v libaom-av1 -f mp4 out.mp4 | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== References ===== | ||
+ | |||
+ | https:// |
ffmpeg/conversions/convert_h264_to_av1.1686660583.txt.gz · Last modified: 2023/06/13 12:49 by peter