Well i am looking for a program that will make a x264 video file into dvd files. Because the ones ive messed with all make the audio outta sync on convertion.
+ Reply to Thread
Results 1 to 9 of 9
-
-
Hmm, I wonder if a version of this would work ... would have to encode the audio to MP2 as well, but that's only a couple of extra flags. Also remove the interlaced flags too since the input is probably progressive.
https://forum.videohelp.com/topic337231.html
Latest version of the free ffmpeg at http://ffdshow.faireal.net/mirror/ffmpeg/
Thus the .BAT file would probably be something like (remember undo the line wrapping below)
Let me know how you go.Code:set fINPUT=D:\HDTV\INPUT.mp4 set fOUTPUT=D:\HDTV\OUTPUT-ffmpeg.mpv set fSIZE=720x576 set fASPECT=16:9 set fMAXBITRATE=9200k "C:\SOFTWARE\ffmpeg\ffmpeg.exe" -y -i "%fINPUT%" -target pal-dvd -sameq -maxrate %fMAXBITRATE% -dc 10 -s %fSIZE% -aspect %fASPECT% -acodec mp2 -ab 192k "%fOUTPUT%" PAUSE
Cheerio -
This is bad advice for people in NTSC countries (the original poster is in the USA) because MP2 audio is invalid for NTSC DVD use. There are some authoring programs that will let you do it, but technically the DVD standards ONLY allow MP2 audio on PAL DVDs and some authoring program may refuse to allow MP2 audio when making an NTSC DVD. Otherwise, it was nice of you to provide such a helpful post and perhaps the original poster can figure out how to change the audio to AC3.Originally Posted by halsboss
-
From What ive read and seen here and elsewhere ntsc players will play MP2, its not standart but it play it.Originally Posted by jman98I love it when a plan comes together!
-
Thanks jman98. Oops. I guess AC3 could be produced instead of MP2, with the right switches... Ah yes, with info from late in the thread https://forum.videohelp.com/topic338564.html#1762669 :-
The .BAT file would probably be something like (remember undo the line wrapping below)
Changed - size from 720x576 to 720x480, from pal-dvd to ntsc-dvd, from mp2 to 2-channel ac3. Also assumes 16:9 aspect ratio but you could change it to 4:3 if you need.Code:set fINPUT=D:\HDTV\INPUT.mp4 set fOUTPUT=D:\HDTV\OUTPUT-ffmpeg.mpg set fSIZE=720x480 set fASPECT=16:9 set fMAXBITRATE=9200k "C:\SOFTWARE\ffmpeg\ffmpeg.exe" -y -i "%fINPUT%" -target ntsc-dvd -sameq -maxrate %fMAXBITRATE% -dc 10 -s %fSIZE% -aspect %fASPECT% -acodec ac3 -ac 2 -ab 192k "%fOUTPUT%" PAUSE
Let us know how you go.
Cheerio -
-
I have used DVD Flick, FAVC and ConvertXtoDVD to convert .mp4 and H264 MKV files.
Read my blog here.
Similar Threads
-
convert x264 HDxT file to ps3 playable file
By yodaddi in forum Authoring (Blu-ray)Replies: 3Last Post: 25th Mar 2009, 22:02 -
Can't find a good program to convert .mov/.mp4/H.264/AVC watever video clip
By Nintendo Fan in forum Video ConversionReplies: 8Last Post: 21st Jan 2009, 19:28 -
x264 video file to ntsc dvd....
By halsboss in forum Video ConversionReplies: 5Last Post: 18th Dec 2007, 00:48 -
What's a good freeware program to convert AVS to video?
By jk318 in forum Newbie / General discussionsReplies: 14Last Post: 27th Aug 2007, 19:42



Quote