2023-08-24 02:15:00 +00:00
|
|
|
# 4*0.875 = 3.5 pixel aspect ratio
|
|
|
|
# 320x180 -> 80x157.5
|
|
|
|
# instead scale to 82x160 and crop to 80x160 :D
|
|
|
|
# note: letterboxing makes it harder to reuse those blocks
|
2023-06-28 22:52:09 +00:00
|
|
|
ffmpeg \
|
2023-07-06 03:34:59 +00:00
|
|
|
-i 'https://upload.wikimedia.org/wikipedia/commons/a/ab/Caminandes_3_-_Llamigos_-_Blender_Animated_Short.webm' \
|
2023-08-24 02:15:00 +00:00
|
|
|
-vf 'format=yuv444p,scale=82:160,crop=w=80:x=1,setsar=1' \
|
2023-06-28 22:52:09 +00:00
|
|
|
-an \
|
|
|
|
-vcodec libvpx-vp9 \
|
|
|
|
-row-mt 1 \
|
|
|
|
-crf 20 \
|
|
|
|
-y llamigos.webm
|