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)
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 -
Originally Posted by halsboss
-
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)
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, 21: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, 18:28 -
x264 video file to ntsc dvd....
By halsboss in forum Video ConversionReplies: 5Last Post: 17th Dec 2007, 23:48 -
What's a good freeware program to convert AVS to video?
By jk318 in forum Newbie / General discussionsReplies: 14Last Post: 27th Aug 2007, 18:42