<?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>indiWiz.com &#187; multimedia</title>
	<atom:link href="http://indiwiz.com/tag/multimedia/feed/" rel="self" type="application/rss+xml" />
	<link>http://indiwiz.com</link>
	<description>Subhash&#039;s Tech Log</description>
	<lastBuildDate>Sun, 29 Apr 2012 15:11:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Finding the width and height of Ogg Theora videos</title>
		<link>http://indiwiz.com/2009/07/31/finding-the-width-and-height-of-ogg-theora-videos/</link>
		<comments>http://indiwiz.com/2009/07/31/finding-the-width-and-height-of-ogg-theora-videos/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 09:43:41 +0000</pubDate>
		<dc:creator>Subhash Chandran</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[multimedia]]></category>

		<guid isPermaLink="false">http://indiwiz.com/?p=414</guid>
		<description><![CDATA[When placing Ogg Theora video files in your site using HTML5 &#60;video&#62; tags, you can optionally specify the width and height of the videos. But how do you find the width and height? Use the tool ogginfo: $ ogginfo video.ogg]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>When placing <a href="http://en.wikipedia.org/wiki/Ogg_Theora">Ogg Theora</a> video files in your site using HTML5 &lt;video&gt; tags, you can optionally specify the <em>width</em> and <em>height</em> of the videos. But how do you find the <em>width</em> and <em>height</em>? Use the tool <tt>ogginfo</tt>:</p>
<pre>
$ ogginfo video.ogg
</pre>
<div class="shr-publisher-414"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://indiwiz.com/2009/07/31/finding-the-width-and-height-of-ogg-theora-videos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Text-to-speech in Linux</title>
		<link>http://indiwiz.com/2009/07/31/text-to-speech-in-linux/</link>
		<comments>http://indiwiz.com/2009/07/31/text-to-speech-in-linux/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 08:55:14 +0000</pubDate>
		<dc:creator>Subhash Chandran</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[multimedia]]></category>

		<guid isPermaLink="false">http://indiwiz.com/?p=409</guid>
		<description><![CDATA[Festival is an interesting OpenSource project for converting text-to-speech in Linux environment. It has a commandline tool text2wave which converts, guess what, text to voice in wave format. Simple usage: $ echo "Hello World" &#124; text2wave > a.wav Wave files are uncompressed, and occupy lot of space. To encode to Ogg Vorbis format: $ oggenc [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p><a href="http://www.cstr.ed.ac.uk/projects/festival/">Festival</a> is an interesting OpenSource project for converting text-to-speech in Linux environment. It has a commandline tool <tt>text2wave</tt> which converts, guess what, text to voice in wave format. Simple usage:</p>
<pre>
$ echo "Hello World" | text2wave > a.wav
</pre>
<p>Wave files are uncompressed, and occupy lot of space. To encode to <a href="http://en.wikipedia.org/wiki/Ogg_Vorbis">Ogg Vorbis</a> format:</p>
<pre>
$ oggenc a.wav
</pre>
<p>This will create <tt>a.ogg</tt> in the current directory.</p>
<div class="shr-publisher-409"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://indiwiz.com/2009/07/31/text-to-speech-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Desktop Video Capture in Linux</title>
		<link>http://indiwiz.com/2009/07/15/desktop-video-capture-in-linux/</link>
		<comments>http://indiwiz.com/2009/07/15/desktop-video-capture-in-linux/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 04:00:27 +0000</pubDate>
		<dc:creator>Subhash Chandran</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[multimedia]]></category>
		<category><![CDATA[screencast]]></category>

		<guid isPermaLink="false">http://indiwiz.com/?p=385</guid>
		<description><![CDATA[recordmydesktop is a powerful screencasting commandline tool for Linux. To capture the screen: $ recordmydesktop Press Ctrl+C to quit capturing. The captured video will be encoded in Ogg Theora format and saved as out.ogv (if out.ogv exists, as out-1.ogv and so on). To save the file in another name, say myout.ogv: $ recordmydesktop myout.ogv There [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p><tt>recordmydesktop</tt> is a powerful screencasting commandline tool for Linux. To capture the screen:</p>
<pre>
$ recordmydesktop
</pre>
<p><br/></p>
<p>Press Ctrl+C to quit capturing. The captured video will be encoded in <a href="http://en.wikipedia.org/wiki/Ogg_Theora">Ogg Theora</a> format and saved as <tt>out.ogv</tt> (if out.ogv exists, as out-1.ogv and so on). To save the file in another name, say myout.ogv:</p>
<pre>
$ recordmydesktop myout.ogv
</pre>
<p><br/></p>
<p>There is also a GTK frontend for <tt>recordmydesktop</tt>. To launch it:</p>
<pre>
$ gtk-recordMyDesktop
</pre>
<div class="shr-publisher-385"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://indiwiz.com/2009/07/15/desktop-video-capture-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Encoding to Ogg Theora Format: For use in HTML5</title>
		<link>http://indiwiz.com/2009/07/14/encoding-to-ogg-theora-format-for-use-in-html5/</link>
		<comments>http://indiwiz.com/2009/07/14/encoding-to-ogg-theora-format-for-use-in-html5/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 09:08:58 +0000</pubDate>
		<dc:creator>Subhash Chandran</dc:creator>
				<category><![CDATA[Software Dev]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[multimedia]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://indiwiz.com/?p=375</guid>
		<description><![CDATA[To encode a video file for use in HTML5 video compatible browser (firefox 3.5 and above supports HTML5 video), use the command: $ ffmpeg -i in.flv -vcodec libtheora -sameq \ -acodec libvorbis -ac 2 -sameq out.ogg Finally use it in your page: &#60;video src="out.ogg"&#62; Your browser does not support HTML5 video. &#60;/video&#62; Reference: HTML 5 [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>To encode a video file for use in HTML5 video compatible browser (<a href="http://www.mozilla.com/firefox/">firefox</a> 3.5 and above supports HTML5 video), use the command:</p>
<pre>
$ ffmpeg -i in.flv -vcodec libtheora -sameq \
   -acodec libvorbis -ac 2 -sameq out.ogg
</pre>
<p><br/></p>
<p>Finally use it in your page:</p>
<pre>
&lt;video src="out.ogg"&gt;
Your browser does not support HTML5 video.
&lt;/video&gt;
</pre>
<p><br/></p>
<p><strong>Reference</strong>: <a href="http://www.quackit.com/html_5/tags/html_video_tag.cfm">HTML 5 &lt;video&gt; Tag</a>.</p>
<div class="shr-publisher-375"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://indiwiz.com/2009/07/14/encoding-to-ogg-theora-format-for-use-in-html5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video format conversion in Linux</title>
		<link>http://indiwiz.com/2009/06/24/video-format-conversion-in-linux/</link>
		<comments>http://indiwiz.com/2009/06/24/video-format-conversion-in-linux/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 11:13:43 +0000</pubDate>
		<dc:creator>Subhash Chandran</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[multimedia]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://indiwiz.com/?p=346</guid>
		<description><![CDATA[To stream video content using Video View Portlet, I had to re-encode some videos to flv format. This is pretty simple in Linux: $ mencoder -oac copy -ovc lavc -o out.flv in.avi -oac means Output Audio Codec and -ovc means Output Video Codec. The various options for -oac: copy no encoding, just streamcopy. pcm Encode [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop --><!-- End Shareaholic LikeButtonSetTop --><p>To stream video content using <a href="http://java-portlets.googlecode.com/">Video View Portlet</a>, I had to re-encode some videos to <tt>flv</tt> format. This is pretty simple in Linux:</p>
<pre>
$ mencoder -oac copy -ovc lavc -o out.flv in.avi
</pre>
<p><br/></p>
<p><tt>-oac</tt> means <em>Output Audio Codec</em> and <tt>-ovc</tt> means <em>Output Video Codec</em>. The various options for <tt>-oac</tt>:</p>
<table border="0" cellpadding="5" cellspacing="5">
<tr>
<td><tt>copy</tt></td>
<td>no encoding, just streamcopy.</td>
</tr>
<tr>
<td><tt>pcm</tt></td>
<td>Encode to uncompressed PCM.</td>
</tr>
<tr>
<td><tt>mp3lame</tt></td>
<td>Encode to MP3 (using LAME).</td>
</tr>
<tr>
<td><tt>lavc</tt></td>
<td>Encode with a libavcodec codec.</td>
</tr>
</table>
<p>The options for <tt>-ovc</tt>:</p>
<table border="0" cellpadding="5" cellspacing="5">
<tr>
<td><tt>copy</tt></td>
<td>no encoding, just streamcopy.</td>
</tr>
<tr>
<td><tt>raw</tt></td>
<td>Encode  to  an  arbitrary  uncompressed format (use ’-vf format’ to select).</td>
</tr>
<tr>
<td><tt>lavc</tt></td>
<td>Encode with a libavcodec codec.</td>
</tr>
</table>
<div class="shr-publisher-346"></div><!-- Start Shareaholic LikeButtonSetBottom --><!-- End Shareaholic LikeButtonSetBottom -->]]></content:encoded>
			<wfw:commentRss>http://indiwiz.com/2009/06/24/video-format-conversion-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

