<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>gHacks technology news &#187; devede</title>
	<atom:link href="http://www.ghacks.net/tag/devede/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Tue, 24 Nov 2009 03:24:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Create DVDs in Linux with DeVeDe, mkisofs, and K3B</title>
		<link>http://www.ghacks.net/2009/03/20/create-dvds-in-linux-with-devede-mkisofs-and-k3b/</link>
		<comments>http://www.ghacks.net/2009/03/20/create-dvds-in-linux-with-devede-mkisofs-and-k3b/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 02:56:14 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tutorials Advanced]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[devede]]></category>
		<category><![CDATA[dvd authoring]]></category>
		<category><![CDATA[K3B]]></category>
		<category><![CDATA[mkisofs]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=11348</guid>
		<description><![CDATA[My wife and I became hooked on the TV show &#8220;Lost&#8221; recently. As we were way behind we caught up by renting seasons 1-4. But then we ran out and fell behind again because the current season was halfway through&#8230;and had yet to be released on DVD yet. My only recourse was to torrent the [...]]]></description>
			<content:encoded><![CDATA[<p>My wife and I became hooked on the TV show &#8220;Lost&#8221; recently. As we were way behind we caught up by renting seasons 1-4. But then we ran out and fell behind again because the current season was halfway through&#8230;and had yet to be released on DVD yet. My only recourse was to torrent the current episodes of Lost and then burn them onto DVD. Of course I use Linux so I knew this might be a bit tricky. At first it was because there were few howtos out there that completed the process without using an infinite amount of command line tools. Not that I might command line tools&#8230;but I knew I would want to report the process here on gHacks. So I set out to find the easiest, most reliable way to create playable DVDs with as few commands as possible.</p>
<p>What I wound up with is a combination of three tools &#8211; only one of which was a command. It&#8217;s not as simple as creating them in Windows, but it&#8217;s free and it&#8217;s reliable (and will also up your geek &#8220;cred&#8221; &#8211; which we all could use.)</p>
<p><span id="more-11348"></span><strong>DeVeDe</strong></p>
<p>This first tool started out to be the most promising &#8211; until it came time to actually burn the DVD. Unfortunately <a title="DeVeDe" href="http://www.rastersoft.com/programas/devede.html" target="_blank">DeVeDe</a> stinks at the process of burning. So what I wound up using this tool for is to create the DVD structure which consists of a directory VIDEO_TS and all necessary files (.IFO, .VOB, and .BUP to be precise.)</p>
<p>Getting and installing DeVeDe is simple because it is found in most common repositories. Fire up your Add/Remove Software utility, do a search for &#8220;devede&#8221; (no quotes) and install the results of the search.</p>
<div id="attachment_11349" class="wp-caption alignleft" style="width: 310px"><a href="http://www.ghacks.net/wp-content/uploads/2009/03/devede_1.png"><img class="size-medium wp-image-11349" src="http://www.ghacks.net/wp-content/uploads/2009/03/devede_1-500x458.png" alt="DeVeDe Main Window" width="300" height="275" /></a><p class="wp-caption-text">DeVeDe Main Window</p></div>
<p>Once it is installed fire it up. The opening window will ask what disk type you want to create. Click &#8220;Video DVD&#8221;. the new window (shown on the left) is where you add your files and configure your options. You can really get creative with creating menus, etc. For the sake of simplicity we will stick with the basics.</p>
<p>Click the Add button under the Files Pane. This is where you will locate the .avi file you want to add to your movie. In the resulting window you can also switch from PAl to NTSC, add audio tracks (if there isn&#8217;t already one), add subtitles, and a number of advanced options.</p>
<p>Once you have added your file click the OK button to come back to the main window. Now, click the Advanced options drop down to reveal a few more options. In this section you want to select the option &#8220;Create Disk Structure&#8221;. Don&#8217;t bother with the iso option &#8211; DeVeDe is as bad at creating the iso as it is at burning.</p>
<p>Now click the Forward button and the process will begin. Depending upon how many files (and how large they are) you might have a long wait.</p>
<p>Once the process is complete you can Quit out of DeVeDe. You are done with that application.</p>
<p><strong>mkisofs</strong></p>
<p>Now you need to locate the directory housing the <strong>VIDEO_TS </strong>directory. You have to run the <em>mkisofs</em> command on that directory like so:</p>
<p><em>mkisofs -dvd-video -o ~/DVD_NAME.iso /path/to/VIDEO_TS</em></p>
<p>Where DVD_NAME is the name you want to give the iso file and where /path/to/ is the absolute path to the VIDEO_TS directory (but leave out the VIDEO_TS portion.) So if VIDEO_TS is located in /home/jlwallen/movie and I want to name the iso <em>lost.iso</em> the command would look like:</p>
<p><em>mkisofs -dvd-video -o /home/jlwallen/lost.iso /home/jlwallen/movie</em></p>
<p>You will want to make sure there is plenty of space on the drive (or directory) you use for this because it can take up some space (how much depends upon the size of the DVD being created.) The results, once the command is finished, will be DVD_NAME.iso (Again where DVD_NAME is the actual name of the iso you created.)</p>
<p><strong>K3B</strong></p>
<p>Now the easy part. Using K3B you will burn this iso image to disk. You can follow the process in my previous article <a title="K3B" href="http://www.ghacks.net/2009/01/11/burn-cd-and-dvd-iso-images-with-k3b/" target="_blank">Burn CD and DVD ISO images with K3B</a>. Once K3B finishes you should have a DVD suited for nearly any home DVD player.</p>
<p><strong>Final Thoughts</strong></p>
<p>Nope&#8230;it&#8217;s not as easy as it should be. But now you can re-create the process fairly quickly with the right tools. Have you found an easier way to create DVDs in Linux? If so let your fellow gHacks readers know.</p>

	Tags: <a href="http://www.ghacks.net/tag/devede/" title="devede" rel="tag">devede</a>, <a href="http://www.ghacks.net/tag/dvd-authoring/" title="dvd authoring" rel="tag">dvd authoring</a>, <a href="http://www.ghacks.net/tag/k3b/" title="K3B" rel="tag">K3B</a>, <a href="http://www.ghacks.net/tag/linux/" title="Linux" rel="tag">Linux</a>, <a href="http://www.ghacks.net/tag/mkisofs/" title="mkisofs" rel="tag">mkisofs</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/01/27/burn-cds-from-command-line/" title="Burn CDs From Command Line (January 27, 2009)">Burn CDs From Command Line</a> (4)</li>
	<li><a href="http://www.ghacks.net/2009/01/11/burn-cd-and-dvd-iso-images-with-k3b/" title="Burn CD and DVD ISO Images with K3B (January 11, 2009)">Burn CD and DVD ISO Images with K3B</a> (9)</li>
	<li><a href="http://www.ghacks.net/2008/02/07/yoggie-pico-personal-mobile-security-computer/" title="Yoggie PICO Personal Mobile Security Computer (February 7, 2008)">Yoggie PICO Personal Mobile Security Computer</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/10/30/with-ubuntu-9-10-arrives-wubi-9-10/" title="With Ubuntu 9.10 Arrives Wubi 9.10 (October 30, 2009)">With Ubuntu 9.10 Arrives Wubi 9.10</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/10/20/winx-dvd-author-giveaway/" title="WinX DVD Author Giveaway (October 20, 2009)">WinX DVD Author Giveaway</a> (53)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/03/20/create-dvds-in-linux-with-devede-mkisofs-and-k3b/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Video To DVD</title>
		<link>http://www.ghacks.net/2008/09/01/video-to-dvd/</link>
		<comments>http://www.ghacks.net/2008/09/01/video-to-dvd/#comments</comments>
		<pubDate>Mon, 01 Sep 2008 17:53:57 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[create a dvd]]></category>
		<category><![CDATA[devede]]></category>
		<category><![CDATA[dvd]]></category>
		<category><![CDATA[movies]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[video dvd]]></category>
		<category><![CDATA[video to dvd]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=6690</guid>
		<description><![CDATA[Windows users surely have no shortage of programs that convert video to dvd. The last excellent tool to create a dvd was AVStoDVD which was reviewed just a few weeks ago here at Ghacks. DeVeDe is an Open-Source multi-plattform application that can not only convert video to DVD but also to CD which offers support [...]]]></description>
			<content:encoded><![CDATA[<p>Windows users surely have no shortage of programs that convert video to dvd. The last excellent tool to <a href="http://www.ghacks.net/2008/08/24/create-a-dvd/">create a dvd</a> was AVStoDVD which was reviewed just a few weeks ago here at Ghacks. <a href="http://www.majorsilence.com/devede/">DeVeDe</a> is an Open-Source multi-plattform application that can not only convert video to DVD but also to CD which offers support for the standards VCD, SVCD and CVD. </p>
<p>The main argument for using DeVeDe is the ease if use of this application. It just takes a minute to add the videos to the application and start the creation of the DVD which does not require user input at all. The program keeps the advanced parameters like audio and video bitrates in configuration dialogs that a normal user does not need to bother to look into. </p>
<p>One nice feature of the video to DVD software is the ability to automatically adjust the size and the quality of the videos that are added to the application so that all movies fit on the selected medium. The medium that is created can have a size between 185 Megabytes and 8.5 Gigabytes which can be selected from templates.</p>
<p><span id="more-6690"></span><img src="http://www.ghacks.net/wp-content/uploads/2008/09/video_to_dvd-500x350.jpg" alt="video to dvd" title="video to dvd" width="500" height="350" class="alignnone size-medium wp-image-6691" /></p>
<p>The user can specify the output format of each video file that he adds, select an audio track if multiple are available and add subtitles from the computer. Advanced users can take a look at detailed information and settings and change settings like the aspect ratio, the scaling mode or several quality settings.</p>
<p>The title menu of the DVD can be configured extensively. A user who just wants to play the videos one after the other can keep the default settings. Users who want to define font size, background image and sounds can do that as well.</p>
<p>If the computer uses more than one cpu core then users should enable the optimization for multi-core cpus in the advanced options of the main menu. The video to DVD software saves the new DVD in iso format on the hard drive which can then be burned to a blank DVD. Other options include the creation of a video_ts folder.</p>
<p>DeVeDe is an excellent video to DVD program for Windows and Linux.</p>

	Tags: <a href="http://www.ghacks.net/tag/create-a-dvd/" title="create a dvd" rel="tag">create a dvd</a>, <a href="http://www.ghacks.net/tag/devede/" title="devede" rel="tag">devede</a>, <a href="http://www.ghacks.net/tag/dvd/" title="dvd" rel="tag">dvd</a>, <a href="http://www.ghacks.net/tag/movies/" title="movies" rel="tag">movies</a>, <a href="http://www.ghacks.net/tag/video/" title="video" rel="tag">video</a>, <a href="http://www.ghacks.net/tag/video-dvd/" title="video dvd" rel="tag">video dvd</a>, <a href="http://www.ghacks.net/tag/video-to-dvd/" title="video to dvd" rel="tag">video to dvd</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/01/14/convert-dvd-movie-to-avi/" title="Convert DVD movie to Avi (January 14, 2008)">Convert DVD movie to Avi</a> (5)</li>
	<li><a href="http://www.ghacks.net/2009/09/16/winx-dvd-ripper-platinum-free-offer/" title="WinX DVD Ripper Platinum Free Offer (September 16, 2009)">WinX DVD Ripper Platinum Free Offer</a> (16)</li>
	<li><a href="http://www.ghacks.net/2008/08/25/the-ultimate-movie-dvd-tool-collection/" title="The Ultimate Movie DVD Tool Collection (August 25, 2008)">The Ultimate Movie DVD Tool Collection</a> (3)</li>
	<li><a href="http://www.ghacks.net/2008/02/03/subtitles-for-joost/" title="Subtitles for Joost (February 3, 2008)">Subtitles for Joost</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/04/21/self-destructing-dvds/" title="Self-Destructing DVDs ? (April 21, 2008)">Self-Destructing DVDs ?</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/09/01/video-to-dvd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
