<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://wiki.zenerves.net/skins/common/feed.css?301"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
		<id>http://wiki.zenerves.net/index.php?action=history&amp;feed=atom&amp;title=DVD</id>
		<title>DVD - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.zenerves.net/index.php?action=history&amp;feed=atom&amp;title=DVD"/>
		<link rel="alternate" type="text/html" href="http://wiki.zenerves.net/index.php?title=DVD&amp;action=history"/>
		<updated>2026-09-20T07:18:50Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.17.0</generator>

	<entry>
		<id>http://wiki.zenerves.net/index.php?title=DVD&amp;diff=86&amp;oldid=prev</id>
		<title>Admin: 1 revision</title>
		<link rel="alternate" type="text/html" href="http://wiki.zenerves.net/index.php?title=DVD&amp;diff=86&amp;oldid=prev"/>
				<updated>2011-10-14T23:59:09Z</updated>
		
		<summary type="html">&lt;p&gt;1 revision&lt;/p&gt;
&lt;table style=&quot;background-color: white; color:black;&quot;&gt;
		&lt;tr valign='top'&gt;
		&lt;td colspan='1' style=&quot;background-color: white; color:black;&quot;&gt;← Older revision&lt;/td&gt;
		&lt;td colspan='1' style=&quot;background-color: white; color:black;&quot;&gt;Revision as of 23:59, 14 October 2011&lt;/td&gt;
		&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	<entry>
		<id>http://wiki.zenerves.net/index.php?title=DVD&amp;diff=85&amp;oldid=prev</id>
		<title>Lola at 21:14, 14 October 2011</title>
		<link rel="alternate" type="text/html" href="http://wiki.zenerves.net/index.php?title=DVD&amp;diff=85&amp;oldid=prev"/>
				<updated>2011-10-14T21:14:11Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;TOVID, like other helpers of this kind in the convert-my-media universe, is more a set of scripts that sets the basic ''ffmpeg'' or ''mencoder'' to work - as such, when code/useage changes in the softs, the script usually lags behind and keeps passing wrong parameters (obsolete) to the soft; writing this as of 06/2011, I am still facing a '''5.1 vs 5:1''' bug that dates back all the way from 2010...&lt;br /&gt;
&lt;br /&gt;
 [jarch@DC266 ~]$ tovid --version&lt;br /&gt;
 0.33&lt;br /&gt;
 [jarch@DC266 ~]$ date&lt;br /&gt;
 Sun Jun 19 12:14:11 CEST 2011&lt;br /&gt;
&lt;br /&gt;
 [jarch@DC266 ~]$ tovid&lt;br /&gt;
 Usage:&lt;br /&gt;
 &lt;br /&gt;
    tovid [command] [arguments ...]&lt;br /&gt;
 &lt;br /&gt;
 Where 'command' is one of the following:&lt;br /&gt;
 &lt;br /&gt;
    Command     Description                                 Formerly&lt;br /&gt;
    -----------------------------------------------------------------&lt;br /&gt;
    id          Identify one or more video files            idvid&lt;br /&gt;
    dvd         Author and/or burn a DVD                    makedvd&lt;br /&gt;
    menu        Create an MPEG menu                         makemenu&lt;br /&gt;
    vcd         Author and/or burn a VCD                    makevcd&lt;br /&gt;
    xml         Create (S)VCD or DVD .xml file              makexml&lt;br /&gt;
    postproc    Post-process an MPEG video file             postproc&lt;br /&gt;
    disc        Create a DVD with menus                     todisc&lt;br /&gt;
    gui         Start the tovid GUI                         todiscgui&lt;br /&gt;
    mpg         Encode videos to MPEG format                tovid&lt;br /&gt;
    titlesets   Start the titleset wizard                   (new)&lt;br /&gt;
 &lt;br /&gt;
 Run 'tovid &amp;lt;command&amp;gt;' with no further arguments to get help on a command,&lt;br /&gt;
 and what arguments it expects.&lt;br /&gt;
&lt;br /&gt;
=THIS WON'T WORK:=&lt;br /&gt;
&lt;br /&gt;
 [jarch@DC266 ~]$ tovid mpg -in /home/jarch/Desktop/MIIB/MIIB.mp4 -out MIIB -dvd -pal -wide -subtitles /home/jarch/Desktop/MIIB/MIIB.srt&lt;br /&gt;
  ''or''&lt;br /&gt;
 [jarch@DC266 ~]$ tovid mpg -in MIIB.mp4 -subtitles MIIB.srt -out MIIB&lt;br /&gt;
&lt;br /&gt;
tovid will crash because it can't assume the sound conversion with some files format, so try this in case of failure:&lt;br /&gt;
&lt;br /&gt;
=converting to mpg first=&lt;br /&gt;
using ffmeg instead because tovid is passing wrong parameters to ffmpeg (namely, the '''-ac 2''' part:&lt;br /&gt;
&lt;br /&gt;
 [jarch@DC266 MIIB]$ ffmpeg -i MIIB.mp4 -target pal-dvd output.mpg&lt;br /&gt;
&lt;br /&gt;
If you need subtitles hardcoded, then you can go from your '''new''' file, rebuild (STUPID! LONG! TIME-WASTER!) an mpg with subs in:&lt;br /&gt;
 &lt;br /&gt;
 [jarch@DC266 MIIB]$ tovid mpg -in output.mpg -subtitles MIIB.srt -pal -out MIIB&lt;br /&gt;
 &lt;br /&gt;
A more clever way would probably to study the whole '''.xml''' monkey-ry to be able to just put the '''.srt''' file alongside with proper declarations; the tutorial on the Arch dvdauthor wiki isn't half bad; the tovid wiki is useful for more basic stuff&lt;br /&gt;
&lt;br /&gt;
 https://wiki.archlinux.org/index.php/Convert_any_Movie_to_DVD_Video#The_Subtitles&lt;br /&gt;
 http://tovid.wikia.com/wiki/Making_a_basic_DVD&lt;br /&gt;
 http://tovid.wikia.com/wiki/Making_a_DVD_with_text_menus&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=THEN:=&lt;br /&gt;
&lt;br /&gt;
 [jarch@DC266 ~]$ tovid xml /mnt/raid/video/MIIB/MIIB.mpg -out MyDisc&lt;br /&gt;
&lt;br /&gt;
 [jarch@DC266 MIIB]$ export VIDEO_FORMAT=PAL&lt;br /&gt;
&lt;br /&gt;
 [jarch@DC266 MIIB]$ dvdauthor -x &amp;quot;/mnt/raid/video/MIIB/MyDisc.xml&amp;quot;&lt;br /&gt;
&lt;br /&gt;
you'll end up with the proper AUDIO_TS and VIDEO_TS full of .BUP, IFO and VOB files - either burn them with&lt;br /&gt;
 $ tovid dvd -burn MyDisc.xml&lt;br /&gt;
&lt;br /&gt;
Or just use brasero/k3b&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
don't ask:&lt;br /&gt;
 export VIDEO_FORMAT=PAL&lt;br /&gt;
could probably be declared in '''.bashrc''' or somewhere, I forgot. Otherwise dvdauthor fails with '''ERR:  no video format specified for VMG'''&lt;br /&gt;
see https://wiki.archlinux.org/index.php/Convert_any_Movie_to_DVD_Video&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=bash history=&lt;br /&gt;
 [jarch@DC266 MIIB]$ ffmpeg -i MIIB.mp4 -target pal-dvd output.mpg&lt;br /&gt;
 [jarch@DC266 MIIB]$ tovid mpg -in output.mpg -subtitles MIIB.srt -pal -out MIIB&lt;br /&gt;
 [jarch@DC266 MIIB]$ tovid xml /mnt/raid/video/MIIB/MIIB.mpg -out MyDisc&lt;br /&gt;
 [jarch@DC266 MIIB]$ export VIDEO_FORMAT=PAL&lt;br /&gt;
 [jarch@DC266 MIIB]$ dvdauthor -x &amp;quot;/mnt/raid/video/MIIB/MyDisc.xml&amp;quot;&lt;br /&gt;
&lt;br /&gt;
See http://wiki.zenerves.net/index.php/Talk:DVD for full grab of bash history.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 [jarch@DC266 cmiyc]$ ls -l&lt;br /&gt;
 total 1338840&lt;br /&gt;
 -rwxr-xr-x 1 jarch wheel 1369421944 Jun 19 11:34 CMFYC-ETRG.avi&lt;br /&gt;
 -rw-r--r-- 1 jarch wheel     199586 Jun 19 11:34 CMFYC-ETRG_en.srt&lt;br /&gt;
 [jarch@DC266 cmiyc]$ tovid mpg -in CMFYC-ETRG.avi -subtitles CMFYC-ETRG_en.srt -pal -out CMIYC&lt;br /&gt;
 Read options from /home/jarch/.tovid/tovid.ini:&lt;br /&gt;
 --------------------------------&lt;br /&gt;
 tovid mpg&lt;br /&gt;
 Convert videos to DVD or (S)VCD format&lt;br /&gt;
 Version 0.33&lt;br /&gt;
 http://tovid.wikia.com&lt;br /&gt;
 --------------------------------&lt;br /&gt;
 tovid command-line used:&lt;br /&gt;
 -in CMFYC-ETRG.avi -subtitles CMFYC-ETRG_en.srt -pal -out CMIYC&lt;br /&gt;
 Changing to working directory: /mnt/raid/video/cmiyc&lt;br /&gt;
 Converting /mnt/raid/video/cmiyc/CMFYC-ETRG.avi to PAL DVD format&lt;br /&gt;
 Encoding quality is 6 of 10 (use -quality to change)&lt;br /&gt;
 Saving to /mnt/raid/video/cmiyc/CMIYC.mpg&lt;br /&gt;
 Storing log and temporary files in /mnt/raid/video/cmiyc/CMIYC.0&lt;br /&gt;
 Run 'tail -f &amp;quot;/mnt/raid/video/cmiyc/CMIYC.0/makempg.log&amp;quot;' in another terminal to monitor the log&lt;br /&gt;
 Multiple CPUs detected; mpeg2enc and ffmpeg will use multithreading. &lt;br /&gt;
 &lt;br /&gt;
 ========================================================= &lt;br /&gt;
 &lt;br /&gt;
 Probing video for information. This may take several minutes...&lt;br /&gt;
 The encoding process is estimated to require 5909 MB of disk space.&lt;br /&gt;
 You currently have 32738 MB available in this directory.&lt;br /&gt;
 Analysis of file /mnt/raid/video/cmiyc/CMFYC-ETRG.avi:&lt;br /&gt;
  640 x 352 pixels, 23.976 fps&lt;br /&gt;
  Duration (best guess): 02:20:42 (HH:MM:SS)&lt;br /&gt;
  XVID video with ac3 audio&lt;br /&gt;
 Target format:&lt;br /&gt;
  720 x 576 pixels, 25.000 fps&lt;br /&gt;
  m2v video with ac3 audio&lt;br /&gt;
  5400 kbits/sec video, 224 kbits/sec audio &lt;br /&gt;
 &lt;br /&gt;
 =========================================================&lt;br /&gt;
 &lt;br /&gt;
 Using auto-detected aspect ratio 181:100 (override with -aspect)&lt;br /&gt;
 Letterboxing vertically&lt;br /&gt;
 Input is not 25.000 fps. Framerate will be adjusted.&lt;br /&gt;
 Scaling picture to 720 x 576   &lt;br /&gt;
 &lt;br /&gt;
 =========================================================&lt;br /&gt;
 &lt;br /&gt;
 Encoding audio stream to ac3 with the following command:&lt;br /&gt;
 nice -n 0 ffmpeg -i /mnt/raid/video/cmiyc/CMFYC-ETRG.avi -vn -ab 224k -ar 48000 -map 0:1 -acodec ac3 -y -ac 2   /mnt/raid/video/cmiyc/CMIYC.0/audio0.ac3 &lt;br /&gt;
 &lt;br /&gt;
 Processing started. Please wait...                                               &lt;br /&gt;
    ---  Encoding audio to ac3: 226 MB written to audio0.ac3         &lt;br /&gt;
 &lt;br /&gt;
 Audio encoding finished successfully. &lt;br /&gt;
 &lt;br /&gt;
 =========================================================&lt;br /&gt;
 &lt;br /&gt;
 Encoding video stream with the following commands:&lt;br /&gt;
 nice -n 0 mplayer -noconsolecontrols -benchmark -nosound -noframedrop -sub &amp;quot;/mnt/raid/video/cmiyc/CMFYC-ETRG_en.srt&amp;quot; -vo yuv4mpeg:file=&amp;quot;/mnt/raid/video/cmiyc/CMIYC.0/video.yuv&amp;quot; -vf scale=720:576 &amp;quot;/mnt/raid/video/cmiyc/CMFYC-ETRG.avi&amp;quot;&lt;br /&gt;
 cat &amp;quot;/mnt/raid/video/cmiyc/CMIYC.0/video.yuv&amp;quot; | yuvfps -r 25:1 -v 0 | nice -n 0 mpeg2enc --sequence-length 4300 --nonvideo-bitrate 280 --multi- thread 2 --aspect 3 -f 8 -b 5400 -g 4 -G 9 -D 10 -K hi-res --frame-rate 3 -v 0 --video-norm p --reduction-4x4 2 --reduction-2x2 1 -q 7 -o   &amp;quot;/mnt/raid/video/cmiyc/CMIYC.0/video.m2v&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 Processing started. Please wait...                                                &lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Processing started. Please wait...                                               &lt;br /&gt;
    ---  Encoding video stream: 3265 MB written to video.m2v        &lt;br /&gt;
  &lt;br /&gt;
 &lt;br /&gt;
 =========================================================&lt;br /&gt;
 &lt;br /&gt;
 Multiplexing audio and video together with the following command:&lt;br /&gt;
 mplex -V -f 8 -o /mnt/raid/video/cmiyc/CMIYC.mpg /mnt/raid/video/cmiyc/CMIYC.0/video.m2v /mnt/raid/video/cmiyc/CMIYC.0/audio0.ac3&lt;br /&gt;
 Multiplexing finished successfully&lt;br /&gt;
 Output files:&lt;br /&gt;
 3.6G    /mnt/raid/video/cmiyc/CMIYC.mpg&lt;br /&gt;
 3.6G    total &lt;br /&gt;
 &lt;br /&gt;
 =========================================================&lt;br /&gt;
 &lt;br /&gt;
    ----------------------------------------&lt;br /&gt;
    Final statistics&lt;br /&gt;
    ----------------&lt;br /&gt;
    tovid 0.33&lt;br /&gt;
    File: /mnt/raid/video/cmiyc/CMIYC.mpg, 8442 secs DVD PAL&lt;br /&gt;
    Final size:      3690808 kilobytes&lt;br /&gt;
    Target bitrate:  5400 kbits/sec&lt;br /&gt;
    Average bitrate: 3244 kbits/sec&lt;br /&gt;
    Peak bitrate:    5733 kbits/sec&lt;br /&gt;
    Took 01:39:42 to encode on  Intel(R) Core(TM)2 Duo CPU     E6750  @ 2.66GHz 2666.842 mhz&lt;br /&gt;
    -----------------------------------------&lt;br /&gt;
 Statistics written to /home/jarch/.tovid/stats.tovid&lt;br /&gt;
 Cleaning up...&lt;br /&gt;
 removed `/mnt/raid/video/cmiyc/CMIYC.0/video.yuv'&lt;br /&gt;
 &lt;br /&gt;
 =========================================================&lt;br /&gt;
 &lt;br /&gt;
 Do you want to keep the temporary files that were created ?&lt;br /&gt;
 Please type &amp;quot;yes&amp;quot;, or else they will be deleted&lt;br /&gt;
 (add '-noask' to your ~/.tovid/makempg.config to avoid&lt;br /&gt;
 being asked this question in the future)&lt;br /&gt;
     &lt;br /&gt;
 &lt;br /&gt;
 Removing temporary files...&lt;br /&gt;
 removed `/mnt/raid/video/cmiyc/CMIYC.0/video.m2v'&lt;br /&gt;
 removed `/mnt/raid/video/cmiyc/CMIYC.0/audio0.ac3'&lt;br /&gt;
 removed `/mnt/raid/video/cmiyc/CMIYC.0/tovid.scratch'&lt;br /&gt;
 removed `/mnt/raid/video/cmiyc/CMIYC.0/makempg.log'&lt;br /&gt;
 removed directory: `/mnt/raid/video/cmiyc/CMIYC.0'&lt;br /&gt;
 &lt;br /&gt;
 ========================================================= &lt;br /&gt;
 &lt;br /&gt;
 Done! &lt;br /&gt;
 &lt;br /&gt;
 ========================================================= &lt;br /&gt;
 &lt;br /&gt;
 Your encoded video should be in the file(s) /mnt/raid/video/cmiyc/CMIYC.mpg. &lt;br /&gt;
 &lt;br /&gt;
 You can author a disc with this video on it by running:&lt;br /&gt;
    makexml /mnt/raid/video/cmiyc/CMIYC.mpg -out MyDisc&lt;br /&gt;
    makedvd MyDisc.xml&lt;br /&gt;
 You can also use todisc or makemenu to create menus for your disc.&lt;br /&gt;
 See the tovid manual page ('man tovid') for more information. &lt;br /&gt;
 &lt;br /&gt;
 Please report bugs to:&lt;br /&gt;
   http://code.google.com/p/tovid/issues/list&lt;br /&gt;
 Thanks for using tovid! &lt;br /&gt;
 &lt;br /&gt;
 =========================================================&lt;br /&gt;
 [jarch@DC266 cmiyc]$ echo $VIDEO_FORMAT &lt;br /&gt;
 &lt;br /&gt;
 [jarch@DC266 cmiyc]$ export VIDEO_FORMAT=PAL&lt;br /&gt;
 [jarch@DC266 cmiyc]$ echo $VIDEO_FORMAT&lt;br /&gt;
 PAL&lt;br /&gt;
 [jarch@DC266 cmiyc]$ tovid xml CMIYC.mpg -out CMIYCDVD&lt;br /&gt;
 Read options from /home/jarch/.tovid/tovid.ini: &lt;br /&gt;
 &lt;br /&gt;
 --------------------------------&lt;br /&gt;
 tovid xml&lt;br /&gt;
 Generate XML for authoring a VCD, SVCD, or DVD.&lt;br /&gt;
 Version 0.33&lt;br /&gt;
 http://tovid.wikia.com&lt;br /&gt;
 --------------------------------&lt;br /&gt;
 Adding title: CMIYC.mpg as title number 1 of titleset 1&lt;br /&gt;
    CMIYC.mpg has aspect 177 (widescreen).&lt;br /&gt;
    Calculating the duration of the video with:&lt;br /&gt;
        idvid -terse &amp;quot;CMIYC.mpg&amp;quot;&lt;br /&gt;
    This may take a few minutes, so please be patient...&lt;br /&gt;
    The duration of the video is 02:20:38&lt;br /&gt;
 Closing titleset 1 with 1 title(s).&lt;br /&gt;
 Done. The resulting XML was written to CMIYCDVD.xml.&lt;br /&gt;
 You can now author, image and/or burn the disc by running:&lt;br /&gt;
    tovid dvd &amp;quot;CMIYCDVD.xml&amp;quot;&lt;br /&gt;
 Thanks for using makexml! &lt;br /&gt;
 &lt;br /&gt;
 [jarch@DC266 cmiyc]$ dvdauthor -x &amp;quot;/mnt/raid/video/cmiyc/CMIYCDVD.xml&amp;quot;&lt;br /&gt;
 DVDAuthor::dvdauthor, version 0.7.0.&lt;br /&gt;
 Build options: gnugetopt imagemagick iconv freetype fribidi fontconfig&lt;br /&gt;
 Send bug reports to &amp;lt;dvdauthor-users@lists.sourceforge.net&amp;gt; &lt;br /&gt;
 &lt;br /&gt;
 INFO: default video format is PAL&lt;br /&gt;
 INFO: dvdauthor creating VTS&lt;br /&gt;
 STAT: Picking VTS 01 &lt;br /&gt;
 &lt;br /&gt;
 STAT: Processing CMIYC.mpg...&lt;br /&gt;
 STAT: VOBU 23712 at 3600MB, 1 PGCs&lt;br /&gt;
 INFO: Video pts = 0.160 .. 8442.920&lt;br /&gt;
 INFO: Audio[0] pts = 0.160 .. 8442.880&lt;br /&gt;
 STAT: VOBU 23720 at 3600MB, 1 PGCs&lt;br /&gt;
 CHAPTERS: VTS[1/1] 0.000&lt;br /&gt;
 CHAPTERS: VTS[1/1] 299.840&lt;br /&gt;
 CHAPTERS: VTS[1/1] 599.960&lt;br /&gt;
 CHAPTERS: VTS[1/1] 899.880&lt;br /&gt;
 CHAPTERS: VTS[1/1] 1200.120&lt;br /&gt;
 CHAPTERS: VTS[1/1] 1500.000&lt;br /&gt;
 CHAPTERS: VTS[1/1] 1799.840&lt;br /&gt;
 CHAPTERS: VTS[1/1] 2100.120&lt;br /&gt;
 CHAPTERS: VTS[1/1] 2400.120&lt;br /&gt;
 CHAPTERS: VTS[1/1] 2699.920&lt;br /&gt;
 CHAPTERS: VTS[1/1] 3000.040&lt;br /&gt;
 CHAPTERS: VTS[1/1] 3300.120&lt;br /&gt;
 CHAPTERS: VTS[1/1] 3600.000&lt;br /&gt;
 CHAPTERS: VTS[1/1] 3900.080&lt;br /&gt;
 CHAPTERS: VTS[1/1] 4200.160&lt;br /&gt;
 CHAPTERS: VTS[1/1] 4499.880&lt;br /&gt;
 CHAPTERS: VTS[1/1] 4799.840&lt;br /&gt;
 CHAPTERS: VTS[1/1] 5099.960&lt;br /&gt;
 CHAPTERS: VTS[1/1] 5400.120&lt;br /&gt;
 CHAPTERS: VTS[1/1] 5700.040&lt;br /&gt;
 CHAPTERS: VTS[1/1] 5999.960&lt;br /&gt;
 CHAPTERS: VTS[1/1] 6300.120&lt;br /&gt;
 CHAPTERS: VTS[1/1] 6599.840&lt;br /&gt;
 CHAPTERS: VTS[1/1] 6900.120&lt;br /&gt;
 CHAPTERS: VTS[1/1] 7199.840&lt;br /&gt;
 CHAPTERS: VTS[1/1] 7499.920&lt;br /&gt;
 CHAPTERS: VTS[1/1] 7799.960&lt;br /&gt;
 CHAPTERS: VTS[1/1] 8100.040&lt;br /&gt;
 CHAPTERS: VTS[1/1] 8399.920&lt;br /&gt;
 INFO: Generating VTS with the following video attributes:&lt;br /&gt;
 INFO: MPEG version: mpeg2&lt;br /&gt;
 INFO: TV standard: pal&lt;br /&gt;
 INFO: Aspect ratio: 16:9&lt;br /&gt;
 INFO: Resolution: 720x576&lt;br /&gt;
 INFO: Audio ch 0 format: ac3/2ch,  48khz drc&lt;br /&gt;
 &lt;br /&gt;
 STAT: fixed 23720 VOBUs                         &lt;br /&gt;
 INFO: dvdauthor creating table of contents&lt;br /&gt;
 INFO: Scanning CMIYCDVD/VIDEO_TS/VTS_01_0.IFO&lt;br /&gt;
 [jarch@DC266 cmiyc]$ ls -l&lt;br /&gt;
 total 5029656&lt;br /&gt;
 -rwxr-xr-x 1 jarch wheel 1369421944 Jun 19 11:34 CMFYC-ETRG.avi&lt;br /&gt;
 -rw-r--r-- 1 jarch wheel     199586 Jun 19 11:34 CMFYC-ETRG_en.srt&lt;br /&gt;
 drwxr-xr-x 4 jarch wheel       4096 Jun 19 14:00 CMIYCDVD&lt;br /&gt;
 -rw-r--r-- 1 jarch wheel        485 Jun 19 14:00 CMIYCDVD.xml&lt;br /&gt;
 -rw-r--r-- 1 jarch wheel 3775690752 Jun 19 13:50 CMIYC.mpg&lt;br /&gt;
 [jarch@DC266 cmiyc]$ ls CMIYCDVD -l&lt;br /&gt;
 total 8&lt;br /&gt;
 drwxr-xr-x 2 jarch wheel 4096 Jun 19 14:00 AUDIO_TS&lt;br /&gt;
 drwxr-xr-x 2 jarch wheel 4096 Jun 19 14:06 VIDEO_TS&lt;br /&gt;
 [jarch@DC266 cmiyc]$ ls CMIYCDVD/VIDEO_TS/ -l&lt;br /&gt;
 total 3691068&lt;br /&gt;
 -rw-r--r-- 1 jarch wheel       6144 Jun 19 14:06 VIDEO_TS.BUP&lt;br /&gt;
 -rw-r--r-- 1 jarch wheel       6144 Jun 19 14:06 VIDEO_TS.IFO&lt;br /&gt;
 -rw-r--r-- 1 jarch wheel     112640 Jun 19 14:03 VTS_01_0.BUP&lt;br /&gt;
 -rw-r--r-- 1 jarch wheel     112640 Jun 19 14:03 VTS_01_0.IFO&lt;br /&gt;
 -rw-r--r-- 1 jarch wheel 1073709056 Jun 19 14:04 VTS_01_1.VOB&lt;br /&gt;
 -rw-r--r-- 1 jarch wheel 1073709056 Jun 19 14:05 VTS_01_2.VOB&lt;br /&gt;
 -rw-r--r-- 1 jarch wheel 1073709056 Jun 19 14:06 VTS_01_3.VOB&lt;br /&gt;
 -rw-r--r-- 1 jarch wheel  554563584 Jun 19 14:06 VTS_01_4.VOB&lt;br /&gt;
&lt;br /&gt;
Successful write w/ k3b, playable on my DVD!&lt;br /&gt;
&lt;br /&gt;
[[Category:Linux]] [[Category:Howtos]]&lt;/div&gt;</summary>
		<author><name>Lola</name></author>	</entry>

	</feed>