On Fri, Dec 24, 2021 at 02:17:57PM -0600, Michael Hennebry wrote:
Any suggestions for converting mp4 files to VOB?
Even an example with mencoder might be useful.
Long long ago, I used mencoder for making DVD video files.
Lost track of the script I used.
I tried it again recently,
but getting all the options right was making my head swim.

At least one of the files I want to convert is 480x360@24 .


If "480x360@24" means native resolution or frame size at 24fps then
I'd try:

ffmpeg -i source.mp4 -target film-dvd -s 480x360 output.vob

Make sure to write the "-s" option after the "-target ..." one,
because the "target film-dvd" is some sort of wrapper that already
includes some "-s" switch, namely 720x480. So you might need to
override it. See man ffmpeg{-all} for the "-target" option.

I haven't actually tried to copy such a VOB file to a DVD. So at
worst, you ruin a disk ... ;)

And thanks for the question: I got curious myself for an answer.
ffmpeg might be a bit difficult to handle at times, but it's great
anyways ...

Good luck!
Wolfgang
_______________________________________________
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org
Do not reply to spam on the list, report it: 
https://pagure.io/fedora-infrastructure

Reply via email to