Joined
·
366 Posts
When all else fails sometimes the command line is the answer. Split up vob files can be a pain to deal with when using a dlna media server. Getting past the menu can also be problematic.
Here is how to do it with Mint Linux, or any other distro that has the libdvdcss and the codecs installed. For this purpose I use brasero to first create an iso of the dvd to my /home directory then I extract the VIDEO_TS folder from the iso. Brasero will retrieve the dvd keys and create a dvd iso file. This will take about 20 minutes on my p111 1700 ghz pentium m laptop. Which is actually faster than running an iso creator on my Windows Vista machine which is much newer.
Then after I extract the Video_TS I go through to find the indexed vob files and figure out which ones will need to be stitched together to create a single large VOB
The command line is then used to cd to the VIDEO_TS folder and do the deed. The command to concatenate the files is very specific and has very simple syntax.
cat
space
Then (the name and extension of your first file) space (second) space (etc) as many as make up the movie or episode. they are usually numbered and will start with 1 the ones that are indexed with a 0 usually are menus or timed blanking screens.
space
Then the > character to set the file output name with extension and destination where the new concatenated file is to go. You can redirect the file output elsewhere however it will just put it in the current directory that you are in if you just assign the name and not a place, the same as most other software.
If you do redirect the output be careful to not put it somewhere that they will not fit or to an essential directory if you run as root. The output can be huge. The three into one below came out to 2.9 gig. Movies will top out around 6-7 gig!
space
Then the name you chose with the file extension .VOB
hit enter and wait till the job completes.
...............
Some DVDs will put extraneous characters after the .VOB so watch out for them ...just remember that you can use tab to complete with bash so the cli will pick them up.
Single large VOBS work really well with the Serviio java based dlna server that I use with my laptop. I resorted to this because getting the allshare to read continuously through a sequence of .vob files caused server dropout trouble, even with the Windows only pc media server software from Samsung.
Here is a picture of the actual process
Here is how to do it with Mint Linux, or any other distro that has the libdvdcss and the codecs installed. For this purpose I use brasero to first create an iso of the dvd to my /home directory then I extract the VIDEO_TS folder from the iso. Brasero will retrieve the dvd keys and create a dvd iso file. This will take about 20 minutes on my p111 1700 ghz pentium m laptop. Which is actually faster than running an iso creator on my Windows Vista machine which is much newer.
Then after I extract the Video_TS I go through to find the indexed vob files and figure out which ones will need to be stitched together to create a single large VOB
The command line is then used to cd to the VIDEO_TS folder and do the deed. The command to concatenate the files is very specific and has very simple syntax.
cat
space
Then (the name and extension of your first file) space (second) space (etc) as many as make up the movie or episode. they are usually numbered and will start with 1 the ones that are indexed with a 0 usually are menus or timed blanking screens.
space
Then the > character to set the file output name with extension and destination where the new concatenated file is to go. You can redirect the file output elsewhere however it will just put it in the current directory that you are in if you just assign the name and not a place, the same as most other software.
If you do redirect the output be careful to not put it somewhere that they will not fit or to an essential directory if you run as root. The output can be huge. The three into one below came out to 2.9 gig. Movies will top out around 6-7 gig!
space
Then the name you chose with the file extension .VOB
hit enter and wait till the job completes.
...............
Some DVDs will put extraneous characters after the .VOB so watch out for them ...just remember that you can use tab to complete with bash so the cli will pick them up.
Single large VOBS work really well with the Serviio java based dlna server that I use with my laptop. I resorted to this because getting the allshare to read continuously through a sequence of .vob files caused server dropout trouble, even with the Windows only pc media server software from Samsung.
Here is a picture of the actual process