Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion. Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules. Domains: forum.doom9.org / forum.doom9.net / forum.doom9.se |
|
|
#2 | Link |
|
App Geek
Join Date: May 2025
Location: Salt Lake City
Posts: 3
|
Here's a basic command that should do the trick:
Code:
ffmpeg -framerate 10 -i frame_%03d.png -c:v libaom-av1 -crf 30 -b:v 0 -pix_fmt yuv420p10le output.avif Code:
-framerate 10 Make sure your PNGs are named like Code:
frame_001.png Code:
frame_002.png Code:
yuv420p10le AVIF encoding is slow, just a heads up 😅 |
|
|
|
|
|
#3 | Link | |
|
Registered User
Join Date: Apr 2024
Posts: 504
|
Quote:
Code:
-b:v 0 Code:
-pix_fmt yuv420p10le |
|
|
|
|
|
|
#5 | Link |
|
Donor
![]() Join Date: Jun 2024
Location: South Africa
Posts: 679
|
In earlier versions of FFmpeg's libaom wrapper, CRF was only enabled by -crf and -b:v 0.
-pix_fmt yuv420p10le sets the format to YV420 and the bit depth to 10 bit, recommended with AV1 because it improves efficiency and is supported on the standard profile. Indeed, all post-H.264 encoding is better off using 10-bit depth. Last edited by GeoffreyA; 17th June 2025 at 18:24. |
|
|
|
![]() |
| Tags |
| avif, png |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|