# HG changeset patch # User diego # Date 1053890973 0 # Node ID b2deb0fdbc69f5c6e46d424f9dcbb2ab037952c5 # Parent d927b21b57c1755c8eaa5242f71fd1c8366d233f Changed a few remaining -dvd and -vcd options to dvd:// and vcd://. diff -r d927b21b57c1 -r b2deb0fdbc69 DOCS/en/cd-dvd.html --- a/DOCS/en/cd-dvd.html Sun May 25 19:22:59 2003 +0000 +++ b/DOCS/en/cd-dvd.html Sun May 25 19:29:33 2003 +0000 @@ -70,9 +70,9 @@

For the complete list of available options, please read the man page. The Syntax for a standard Digital Versatile Disc (DVD) is as follows:

-

mplayer -dvd <track> [-dvd-device <device>]

+

mplayer dvd://<track> [-dvd-device <device>]

-

Example: mplayer -dvd 1 -dvd-device /dev/hdc

+

Example: mplayer dvd://1 -dvd-device /dev/hdc

The default DVD device is /dev/dvd. If your setup differs, make a symlink or specify the correct device on the command line with the @@ -208,9 +208,9 @@

For the complete list of available options, please read the man page. The Syntax for a standard Video CD (VCD) is as follows:

-

mplayer -vcd <track> [-cdrom-device <device>]

+

mplayer vcd://<track> [-cdrom-device <device>]

-

Example: mplayer -vcd 2 -cdrom-device /dev/hdc

+

Example: mplayer vcd://2 -cdrom-device /dev/hdc

The default VCD device is /dev/cdrom. If your setup differs, make a symlink or specify the correct device on the command line with the @@ -238,7 +238,7 @@ containing one MPEG PS data packet per sector instead of a filesystem. Similar to audio CD tracks, these tracks cannot be mounted (Did you ever mount an audio CD to play it?). As most movies are inside this track, - you should try -vcd 2 first. + you should try vcd://2 first.

  • There exist VCD disks without the first track (single track and no filesystem at all). They are still playable, but cannot be mounted.
  • @@ -256,7 +256,7 @@ the raw tracks through this shadow .DAT file. If you mount the disc using their driver, you can copy and even play .DAT files with mplayer. But it will not work with the standard iso9660 driver of the Linux kernel! - Use the -vcd option instead. Alternatives for VCD copying are + Use vcd:// instead. Alternatives for VCD copying are the new cdfs kernel driver (not part of the official kernel) that shows CD sessions as image files and cdrdao, a diff -r d927b21b57c1 -r b2deb0fdbc69 DOCS/en/documentation.html --- a/DOCS/en/documentation.html Sun May 25 19:22:59 2003 +0000 +++ b/DOCS/en/documentation.html Sun May 25 19:29:33 2003 +0000 @@ -1329,21 +1329,17 @@ - - + +
      file  mplayer [options] [path/]filename
    filesmplayer [default options] [path/]filename1 [options for filename1] filename2 [options for filename2] ...
    VCDmplayer [options] -vcd trackno [-cdrom-device /dev/cdrom]
    DVDmplayer [options] -dvd titleno [-dvd-device /dev/dvd]
    VCDmplayer [options] vcd:// trackno [-cdrom-device /dev/cdrom]
    DVDmplayer [options] dvd:// titleno [-dvd-device /dev/dvd]
    WWWmplayer [options] http://site.com/file.asf (playlists can be used, too)
    RTSPmplayer [options] rtsp://server.example.com/streamName
    -

    - Latest versions of MPlayer also accept VCD and DVD tracks in URL style, just like - xine does: mplayer dvd://1 or mplayer vcd://1

    -
       mplayer -vo x11 /mnt/Films/Contact/contact2.mpg
    -  mplayer -vcd 2
    +  mplayer vcd://2 -cdrom-device /dev/hdc
       mplayer -afm 3 /mnt/DVDtrailers/alien4.vob
    -  mplayer -dvd 1 -dvd-device /dev/hdc
    +  mplayer dvd://1 -dvd-device /dev/hdc
       mplayer -abs 65536 -delay -0.4 -nobps ~/movies/test.avi
     
    @@ -1850,7 +1846,7 @@

    DVDs also work, just set the DVD device correctly to whatever your CD-ROM device is:

    -

    mplayer -dvd <title> -dvd-device '\\.\d:'

    +

    mplayer dvd://<title> -dvd-device '\\.\d:'

    QuickTime DLLs have also been reported to work. Compile with --enable-qtx-codecs and put the codecs into the diff -r d927b21b57c1 -r b2deb0fdbc69 DOCS/en/encoding.html --- a/DOCS/en/encoding.html Sun May 25 19:22:59 2003 +0000 +++ b/DOCS/en/encoding.html Sun May 25 19:29:33 2003 +0000 @@ -39,9 +39,9 @@     rm frameno.avi - remove this file, which can come from a previous 3-pass encoding (it interferes with current one)
    -     mencoder -dvd 2 -ovc lavc -lavcopts +     mencoder dvd://2 -ovc lavc -lavcopts vcodec=mpeg4:vpass=1 -oac copy -o movie.avi
    -     mencoder -dvd 2 -ovc lavc -lavcopts +     mencoder dvd://2 -ovc lavc -lavcopts vcodec=mpeg4:vpass=2 -oac copy -o movie.avi

    3-pass encoding: this is an extension of 2-pass encoding, @@ -79,11 +79,11 @@

        rm frameno.avi - remove this file, which can come from a previous 3-pass encoding (it interferes with current one)
    -     mencoder -dvd 2 -ovc frameno +     mencoder dvd://2 -ovc frameno -o frameno.avi -oac mp3lame -lameopts vbr=3
    -     mencoder -dvd 2 -ovc lavc +     mencoder dvd://2 -ovc lavc -lavcopts vcodec=mpeg4:vpass=1 -oac copy -o movie.avi
    -     mencoder -dvd 2 -ovc lavc +     mencoder dvd://2 -ovc lavc -lavcopts vcodec=mpeg4:vpass=2 -oac copy -o movie.avi

    @@ -193,7 +193,7 @@ vcodec config, like: -lavcopts vcodec=msmpeg4

    An example, with MJPEG compression:
    -     mencoder -dvd 2 -o title2.avi -ovc lavc +     mencoder dvd://2 -o title2.avi -ovc lavc -lavcopts vcodec=mjpeg -oac copy

    @@ -275,10 +275,10 @@

    Copying two subtitles from a DVD while doing 3-pass encoding
      rm subtitles.idx subtitles.sub
    -   mencoder -dvd 1 -vobsubout subtitles -vobsuboutindex 0 +   mencoder dvd://1 -vobsubout subtitles -vobsuboutindex 0 -sid 2 -o frameno.avi -ovc frameno -oac mp3lame -lameopts vbr=3
    -   mencoder -dvd 1 -oac copy -ovc divx4 -divx4opts pass=1
    -   mencoder -dvd 1 -oac copy -ovc divx4 -divx4opts pass=2 -vobsubout +   mencoder dvd://1 -oac copy -ovc divx4 -divx4opts pass=1
    +   mencoder dvd://1 -oac copy -ovc divx4 -divx4opts pass=2 -vobsubout subtitles -vobsuboutindex 1 -sid 5

    Copying a french subtitle from an MPEG file
    diff -r d927b21b57c1 -r b2deb0fdbc69 DOCS/en/formats.html --- a/DOCS/en/formats.html Sun May 25 19:22:59 2003 +0000 +++ b/DOCS/en/formats.html Sun May 25 19:29:33 2003 +0000 @@ -44,7 +44,7 @@

  • DAT: This is the very same format as MPG with a different extension. It is used on Video CDs. Due to the way VCDs are created and Linux is designed, DAT files cannot be played nor copied from VCDs as regular files. - You have to use the -vcd option to play the Video CD.
  • + You have to use vcd:// to play a Video CD.
  • VOB: This is the MPEG file format on DVDs. It is the same as MPG, plus the capability to contain subtitles or non-MPEG (AC3) audio. It contains encoded MPEG2 video and usually AC3 audio, but DTS, MP2 and