I have lots of videos in the tall, thin 9x16 aspect ratio. I want to put them onto a playable DVD but it seems all of the DVD conversion software available will only work correctly with 4x3 or 16x9 aspect ratios.
The only method I've used so far is to convert the videos to AVI and then use VirtualDub to letterbox-resize them to the desired aspect ratio--a very slow, time-consuming method o say the least, due to the necessary format conversion.
Almost all of the 9x16 videos are MPG or MKV format and I'm hoping to find a faster, easier way of letterboxing the videos. What software and/or method would you recommend for my purposes?
+ Reply to Thread
Results 1 to 9 of 9
-
-
DVD specification allows 4:3 and 16:9 only. Hence you have to letterbox the video accordingly. Any DVD authoring tool would reject anything else.
Is the DVD format and DVD file structure (i.e. full DVD compliance) a must? Are menus required?
The conversion could probably be done with an ffmpeg commandline which would probably be faster than taking the VirtualDub route. Upload a sample. -
Easy way to get what you want: shoot your 9x16 footage, rotate it onto its side and reencode to mpeg2, author to dvd, play it to a tv that has been rotated in the counter direction.
Scott -
-
Thanks everyone! I'll check out the DFVD authoring tools mentioned and hope they can letterbox the input vids--that would be IDEAL!
I don't think the rotate vids for DVD conversion and counter rotate the TV for watching the playback is the right solution for me, but it's an option if all else fails so I'm grateful for the suggestion.
I think if there are no authoring tools that can letterbox the vids to 4x3 or 16x9, I'll stick with the method using VirtualDub to letterbox. If so, I'll want a tool that can batch convert and is fast. Any recommendations?
Again, thanks for your help and advice! -
-
You still tell us little to nothing about your sources. Nevertheless here a proposal using ffmpeg for producing mpeg2 NTSC 4:3 files.
Put below code into a text file, rename it *.cmd and put it onto your desktop (icon). Now drag and drop your sources onto the icon and let it do the job.
Code::: resizes portrait to 480 height, pads to 720 and encodes for 4:3 NTSC DVD @echo off :next if "%~1"=="" goto done ffmpeg -y -i "%~1" -c:a ac3 -c:v mpeg2video -b:v 7000k -maxrate 8000k -bf 2 -b_strategy 2 -mpeg_quant 1 -mbd rd -trellis 2 -cmp 2 -subcmp 2 -mpv_flags qp_rd -filter:v "scale=304:480:flags=bilinear, pad=720:480:(ow-iw)/2:(oh-ih)/2, setdar=4/3" "%~1_out.vob" shift goto next :done pause
Similar Threads
-
How to convert 4x3 640x480 video to 4x3 720x480?
By hbenthow in forum Video ConversionReplies: 17Last Post: 1st Apr 2022, 10:30 -
OBS Studio 4x3 capture image cropped
By techmot in forum Capturing and VCRReplies: 6Last Post: 6th Jan 2022, 11:09 -
How do I forcibly alter the colour range from RGB full to limited
By bergqvistjl in forum Video ConversionReplies: 2Last Post: 22nd May 2020, 12:45 -
Alter audio without re-encoding video
By umbala in forum Newbie / General discussionsReplies: 2Last Post: 12th Oct 2019, 19:53 -
Got old, 74, need some help,tried many ways with no luck so, you know,
By Peggie in forum SVCD2DVD & VOB2MPGReplies: 2Last Post: 28th Jun 2019, 18:08