User Tools

Site Tools


ffmpeg:conversions:convert_h264_to_av1

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
ffmpeg:conversions:convert_h264_to_av1 [2023/06/13 18:21] peterffmpeg: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 ======
  
-There are various methods, and the recommendation is to use the top ones here before the latter.+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, you may encounter an AV1 video saved with the **.av1** extension. 
 + 
 +There are various methods to convert to AV1. 
 + 
 +AV1 is implemented in **libaom** and **svt-av1**. 
 + 
 +  * [[ffmpeg:Conversions:Convert H264 to AV1:libaom|libaom]] 
 +  * [[ffmpeg:Conversions:Convert H264 to AV1:svt-av1|svt-av1]]
  
-  * AV1 is implemented in **libaom** and **svt-av1**. 
  
 ---- ----
Line 35: Line 45:
   * The svt-av1 encoder is optimized for speed and produces bigger files than libaom.   * The svt-av1 encoder is optimized for speed and produces bigger files than libaom.
  
 +</WRAP>
 +
 +
 +----
 +
 +===== Simple method, with Quality/Speed ratio modifier =====
 +
 +
 +<code bash>
 +ffmpeg -y -i a.mp4 -c:v libaom-av1 -cpu-used 8 -f mp4 out.mp4
 +</code>
 +
 +<WRAP info>
 +**NOTE:**  The **-cpu-used 8** option sets the quality to the higher.
 </WRAP> </WRAP>
  
Line 50: Line 74:
 </WRAP> </WRAP>
  
 +----
 +
 +===== References =====
 +
 +https://trac.ffmpeg.org/wiki/Encode/AV1
ffmpeg/conversions/convert_h264_to_av1.1686680509.txt.gz · Last modified: 2023/06/13 18:21 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki