Anonymous
11/8/2025, 5:12:49 PM
No.107143844
[Report]
>>107145376
>>107146032
>>107148316
>>107151082
>>107152771
Does anyone else encode video with SVT-AV1 on their phone? I find the energy efficiency aspect fascinating.
#!/bin/bash
for f in *.mov; do
ffmpeg -i "$f" -c:v libsvtav1 \
-preset 8 -crf 40 \
-c:a libopus -b:a 128k "${f%.mov}.webm"
#!/bin/bash
for f in *.mov; do
ffmpeg -i "$f" -c:v libsvtav1 \
-preset 8 -crf 40 \
-c:a libopus -b:a 128k "${f%.mov}.webm"