Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

Creating a playable DVD from a single .vob video file.

Share your HowTo, Documentation, Tips and Tricks. Not for support questions!.
Post Reply
Message
Author
User avatar
edbarx
Posts: 5401
Joined: 2007-07-18 06:19
Location: 35° 50 N, 14 º 35 E
Been thanked: 2 times

Creating a playable DVD from a single .vob video file.

#1 Post by edbarx »

First we have to convert the file into a format compatible with video DVDs.

Code: Select all

ffmpeg -i file.vob -target ntsc-dvd file.mpg
This creates a file named file.mpg in the current directory. Note that ntsc-dvd implies ntsc is used. To use pal replace that with pal-dvd.

Make a temporary directory, for instance dvd, and run these two commands

Code: Select all

mkdir dvd
dvdauthor -t file.mpg -o dvd/
dvdauthor -T -o dvd/
You may need to change the environment variable VIDEO_FORMAT to PAL or NTSC.

Code: Select all

export VIDEO_FORMAT=PAL
To test the results with vlc or mplayer:

Code: Select all

vlc dvd/
Or

Code: Select all

mplayer dvd://1 -dvd-device dvd/
When you are done and satisfied with the results, burn the dvd:

Code: Select all

growisofs -dvd-compat -Z /dev/dvd -dvd-video dvd/
Note:
Menus and video thumbnails can be added using tovid.
http://tovid.wikia.com/wiki/Tovid_Wiki
OR
You can use other dvd authoring programs like dvdstyler and DeVeDe.
Debian == { > 30, 000 packages }; Debian != systemd
The worst infection of all, is a false sense of security!
It is hard to get away from CLI tools.

User avatar
Job
Posts: 813
Joined: 2006-12-30 20:20
Location: no clue
Contact:

Re: Creating a playable DVD from a single .vob video file.

#2 Post by Job »

Very nice how to. Thank you Sir.
#aptitude install life
--------------------------------------------------------------------------------------------------------------
Debian 12 - FreeBSD

User avatar
jonnymacuser
Posts: 49
Joined: 2012-04-23 22:03
Location: crowdifornia

Re: Creating a playable DVD from a single .vob video file.

#3 Post by jonnymacuser »

This works great as a DVD on my Progressive Scan SONY CD/DVD player.

Code: Select all

ffmpeg -i file.mp4 -target ntsc-dvd file.mpg
mkdir dvd
dvdauthor -t file.mpg -o dvd/
dvdauthor -T -o dvd/
growisofs -dvd-compat -Z /dev/dvd -dvd-video dvd/

How do you burn multiple files to a DVD so that they all play through ...?

Post Reply