Hello, i am looking to merge 2, or more VOB files, in FFMPEG from the same source (a home made DVD)
I have used the code below:
However when i play the output.mpg in VLC there is no audio. Both original VOB play in VLC with the video and audio working fine.ffmpeg -i "concat:VTS_01_1.VOB|VTS_01_2.VOB" -f mpeg -c copy output.mpg
I am new to FFMPEG and so i need to know how i can convert the audio into a playable format whilst retaining a high audio quality.
Thanks for your help.
+ Reply to Thread
Results 1 to 5 of 5
-
-
you were given 3 answers that will work with vobs that have identical specs. why are you beating a dead horse?
--
"a lot of people are better dead" - prisoner KSC2-303 -
Thanks for all the help.
I used this in the end:
Step 1:
turn the vob into mp4
ffmpeg -i VTS_01_4.vob -c:v libx264 -c:a aac -strict experimental VTS_01_4.mp4
Create a text file and include the paths and names of each file to concatenate (or "join"). Example file,
input.txt:
file '/home/jenia/input1.mp4'
file '/home/jenia/input2.mp4'
file '/home/jenia/input3.mp4'
Now you can use the concat demuxer:
ffmpeg -f concat -i input.txt -codec copy output.mp4
Similar Threads
-
using ffmpeg to great 1 file from multiple vob files
By an63lu51 in forum ffmpegX general discussionReplies: 6Last Post: 21st Jul 2012, 13:07 -
Re-wrapping files in FFmpeg audio problem
By philofarnsworth in forum Video ConversionReplies: 5Last Post: 21st Mar 2012, 11:01 -
Save Rendering Time--Change VOB to MPG--Set Audio VOB & MPG2 video files
By jake61 in forum Newbie / General discussionsReplies: 4Last Post: 5th May 2010, 15:12 -
[OS X] ffmpeg reads and converts VOB files on a G5, but not a new MBPro
By Kernos in forum MacReplies: 2Last Post: 12th May 2009, 09:00 -
Problem with Audio when playing VOB dvd files
By rbrown871 in forum AudioReplies: 9Last Post: 8th Dec 2008, 09:36