File: README

package info (click to toggle)
dvdauthor 0.7.0-1.3
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,972 kB
  • ctags: 2,047
  • sloc: ansic: 20,838; sh: 4,387; yacc: 450; lex: 198; makefile: 146
file content (61 lines) | stat: -rw-r--r-- 2,308 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
dvdauthor is a program that will generate a DVD-Video movie from a valid
mpeg2 stream that should play when you put it in a DVD player.

To start you need mpeg files that contain the necessary DVD-Video VOB
packets. These can be generated with FFmpeg, or by by passing '-f 8' to mplex.

There are 3 steps to building the DVD directory structure on your HDD.

1. Delete a previously authored dvd

        dvddirdel [-o dir]

    To guard against mistakes, this will only delete files and subdirectories
    that look like part of a DVD-Video structure.

2. Create your titlesets

        dvdauthor [-o dir] [audio/video/subpicture options] [chapters]

    To create 1 chapter per mpeg, simply do

        dvdauthor [-o dir] [a/v/s options] chap1.mpg chap2.mpg chap3.mpg...

    To manually specify chapters, use the '--chapters' option

        dvdauthor [-o dir] [a/v/s options] -c chap1a.mpg chap1b.mpg -c chap2a.mpg chap2b.mpg ....

    To add chapters every fifteen minutes, do

        dvdauthor [-o dir] [a/v/s options] -c 0,15:00,30:00,45:00,1:00:00,1:15:00... longvideo.mpg

    Call dvdauthor for each titleset you want to create.  Note that
    due to the DVD-Video standard, all audio, video, and subpicture options
    must be set once for the entire titleset; i.e. you cannot mix PAL
    and NTSC video in the same titleset. For that you must generate
    separate titlesets.

    Run dvdauthor -h to see the audio, video, and subpicture options.
    Note that dvdauthor can autodetect most parameters except the
    language.

3. Create the table of contents

        dvdauthor -T [-o dir]

Voila! You now have a DVD-Video directory structure that will probably
work! You can now write this out to your DVD, mini-DVD (CD), or just
play it from your HDD. To generate the UDF image to burn to DVD, use
mkisofs and pass it the -dvd-video option.


important links:

FFmpeg: http://www.ffmpeg.org/
        Note that packages included with your distro are almost certainly out
        of date. Get the latest version from the Subversion repository.
mjpegtools: http://mjpeg.sourceforge.net
        includes mplex for building an mpeg2 system stream with hooks
        for DVD-Video navigation packets
mpucoder's site on dvd specs: http://www.mpucoder.com/DVD/
        details on the DVD-Video format