<?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>Gabriel de Kadt &#187; DVD</title>
	<atom:link href="http://www.lazydada.com/tag/dvd/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lazydada.com</link>
	<description>Personal notes on Mac based web development and design.</description>
	<lastBuildDate>Thu, 09 Sep 2010 15:29:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Quick and dirty DVD editing in iMovie</title>
		<link>http://www.lazydada.com/2009-02-26/quick-and-dirty-dvd-editing-in-imovie/</link>
		<comments>http://www.lazydada.com/2009-02-26/quick-and-dirty-dvd-editing-in-imovie/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 12:47:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[amateur geekery]]></category>
		<category><![CDATA[DVD]]></category>

		<guid isPermaLink="false">http://www.lazydada.com/2009-02-26/quick-and-dirty-dvd-editing-in-imovie/</guid>
		<description><![CDATA[Got your own content want to re-edit quick-like using iMovie. Use MPEG Streamclip to export to MPEG-4. Import into iMovie. Edit.]]></description>
			<content:encoded><![CDATA[<p>Got your own content want to re-edit quick-like using iMovie. Use <a title="essential for transcoding or converting VOB files on a Mac" href="http://www.squared5.com/svideo/mpeg-streamclip-mac.html">MPEG Streamclip</a> to <b>export to MPEG-4</b>. Import into iMovie. Edit. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.lazydada.com/2009-02-26/quick-and-dirty-dvd-editing-in-imovie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Encoding and embedding Flash video (FLV) for the web on a mac</title>
		<link>http://www.lazydada.com/2008-05-22/encoding-and-embedding-video-for-the-web/</link>
		<comments>http://www.lazydada.com/2008-05-22/encoding-and-embedding-video-for-the-web/#comments</comments>
		<pubDate>Thu, 22 May 2008 16:42:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web design & development]]></category>
		<category><![CDATA[DVD]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[FLV]]></category>
		<category><![CDATA[MPEG]]></category>
		<category><![CDATA[transcoding]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.lazydada.com/?p=32</guid>
		<description><![CDATA[It&#8217;s taken quite a few hours of trial and error and things not working &#8211; but in the end it&#8217;s not too complicated. In essence getting your video onto a webpage is a two part process &#8211; encode into FLV format then wrap this FLV in a SWF viewer and embed in your webpage. The [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s taken quite a few hours of trial and error and things not working &#8211; but in the end it&#8217;s not too complicated. In essence getting your video onto a webpage is a two part process &#8211; encode into FLV format then wrap this FLV in a SWF viewer and embed in your webpage. The first part is best achieved <a title="A great Mac OS X GUI for various UNIX encoding and authoring tools" href="http://homepage.mac.com/major4/">ffmpegX</a> with a helping hand from <a title="essential for transcoding or converting VOB files on a Mac" href="http://www.squared5.com/svideo/mpeg-streamclip-mac.html">MPEG Streamclip</a> if your source is a DVD VOB file. The second part requires finding a Flash player &#8211; more elusive than I had anticipated &#8211; and writing a wee bit of HTML code into your webpage.</p>
<h3>Step one: prepare FLV video stream</h3>
<p>Use ffmpegX. Its a really great tool but currently falls over with some QuickTime movies when the virtual stack of audio/video is the wrong way round &#8211; an &#8220;invert mapping issue&#8221;. I came across this problem when changing the soundtrack of an existing movie file. The work-around is documented <a href="http://forum.videohelp.com/topic341561.html#1810515">here</a></p>
<h6>What if the source material is on a DVD or a VOB file?</h6>
<p>Use the free <a href="http://www.squared5.com/svideo/mpeg-streamclip-mac.html">MPEG Streamclip</a> and, perhaps, Apple&#8217;s twenny dollah <a href="http://www.apple.com/quicktime/mpeg2">QuickTime MPEG-2 Playback Component</a> to convert your source into something QuickTime friendly. (Thanks to <a title="Vobjob" href="http://www.macworld.com/article/53051/2006/09/vobjob.html" target="_blank">this</a> Macworld article) The easiest and best quality option being &#8220;Convert to MPEG&#8230;&#8221; from the File menu.</p>
<h3>Step two: wrap in a simple SWF movie and embed into your page</h3>
<p>for the wrapper go see <a href="http://www.jeroenwijering.com">Jeroen Wijering</a> for his <a href="http://www.jeroenwijering.com/?item=JW_FLV_Media_Player">&#8220;JW FLV Media Player&#8221; </a>. His documantation is good. Then there&#8217;s always <a href="http://freevideocoding.com/">Free Video Coding</a> for another helping hand to generate the code you&#8217;ll need. <strong style="font-weight: bold;">Beware</strong> the one issue I found here was that I couldn&#8217;t mix relative and absolute URLs. Example code (with relatve URLs) follows below&#8230;</p>
<pre>&lt;embed src="video-flvplayer.swf?file=YourMovie.flv&amp;autoStart=true"
width="480" height="360"
quality="high"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer"&gt;</pre>
<p>Lovely.</p>
<p>[Edit]<br />
Must look into <a title="opensource SWF embed method that is standards friendly" href="http://code.google.com/p/swfobject/">swfobject</a> it&#8217;s &#8220;easy-to-use and standards-friendly method to embed Flash content&#8221;&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lazydada.com/2008-05-22/encoding-and-embedding-video-for-the-web/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->