added more black magic

This commit is contained in:
zombie maniac 2023-05-05 13:22:23 -04:00
parent 2607107ab1
commit 7e2d98b5a0
Signed by: nbrooks211
GPG key ID: F43C85C0DF0C334E

View file

@ -46,6 +46,7 @@ ffmpeg -i Invader\ Zim\ S01E02a.mkv -c copy -aspect 4:3 output.mkv
```
for whatever other mystical stupid reason the `-aspect` flag doesnt work in av1an, at least when i tried, so we have to do it after the av1an transcode.
and obviously change `4:3` to whatever aspect ratio the dvd normally is. Common aspect ratios, and the only ones that i know of, are 4:3 and 16:9
And even sometimes if you didnt do your cast your druidic ritual spell correctky -aspect wont copy the video over for who knows why so using the command `mkvmerge -o outputav1fix.mkv --aspect-ratio 0:16/9 output.mkv` might also work. just make sure to change the 0: to the video stream... or just choose random numbers and hope it works.
### Transcode input to h264 and not audio (classic zombie crap version for playing on phone)
```