Thread 1531229 - /wsr/ [Archived: 744 hours ago]

Anonymous
6/24/2025, 5:52:31 AM No.1531229
1447446361569
1447446361569
md5: 0c2878e6c18093ed6831af343fc5d32f🔍
Anons, I am requesting a stretch/distort of a video file from 1920x1080 to 3440x1440, or at least a step by step guide to doing so myself since I'm apparently retarded and can't find a good way to do this. Pic unrelated. Ty in advance lads
>https://files.catbox.moe/s8dp6d.mp4
Replies: >>1531230 >>1531231
Anonymous
6/24/2025, 6:09:22 AM No.1531230
>>1531229 (OP)
ffmpeg -i Bepis.mp4 -vf scale=3440:1440 BepisBigger.mp4

https://files.catbox.moe/mby9fg.mp4
Anonymous
6/24/2025, 6:52:47 AM No.1531231
>>1531229 (OP)
I fucked up the first one.
First you need to find out what your new aspect ratio will be.
https://andrew.hedges.name/experiments/aspect_ratio/
3440:1440 has 43:18 ratio
Change aspect ratio with ffmpeg
ffmpeg -i Bepis.mp4 -aspect 43:18 -c copy BepisAspect.mp4
Then scale the new file
ffmpeg -i BepisAspect.mp4 -vf scale=3440:1440 BepisScaled.mp4

https://litter.catbox.moe/hhty62301dqmxgql.mp4
Replies: >>1531232 >>1531264
Anonymous
6/24/2025, 7:04:36 AM No.1531232
>>1531231
you could also just do
>ffmpeg -i bepis.mp4 -vf "scale=3440:1440,setsar=1:1" widebepis.mp4
the result is the same (square pixels)
Replies: >>1531264
Anonymous
6/24/2025, 8:13:11 PM No.1531264
>>1531231
>>1531232
Got it, thank you anon, will try to do it this way next time. Have a good one.