<?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>Random Wisdom &#187; multimedia</title>
	<atom:link href="http://scrolls.mafgani.net/tag/multimedia/feed/" rel="self" type="application/rss+xml" />
	<link>http://scrolls.mafgani.net</link>
	<description>An attempt at organizing my thoughts ...</description>
	<lastBuildDate>Sun, 13 Mar 2011 22:54:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Embedded multimedia in LateX/Prosper</title>
		<link>http://scrolls.mafgani.net/2007/12/embedded-multimedia-in-latexprosper/</link>
		<comments>http://scrolls.mafgani.net/2007/12/embedded-multimedia-in-latexprosper/#comments</comments>
		<pubDate>Sat, 01 Dec 2007 14:29:00 +0000</pubDate>
		<dc:creator>Mostafa</dc:creator>
				<category><![CDATA[How To ...]]></category>
		<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[movie15]]></category>
		<category><![CDATA[multimedia]]></category>
		<category><![CDATA[prosper]]></category>

		<guid isPermaLink="false">http://scrolls.mafgani.net/?p=96</guid>
		<description><![CDATA[The movie15 package by Alexander Grahn is useful for this purpose. The movies embedded, however, cannot be viewed with any PDF reader on Linux.]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.ctan.org/tex-archive/macros/latex/contrib/movie15/">movie15</a> package by Alexander Grahn is useful for this purpose. The movies embedded, however, cannot be viewed with any PDF reader on Linux.</p>
]]></content:encoded>
			<wfw:commentRss>http://scrolls.mafgani.net/2007/12/embedded-multimedia-in-latexprosper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extracting Audio/Video</title>
		<link>http://scrolls.mafgani.net/2007/12/extracting-audiovideo/</link>
		<comments>http://scrolls.mafgani.net/2007/12/extracting-audiovideo/#comments</comments>
		<pubDate>Sat, 01 Dec 2007 14:24:00 +0000</pubDate>
		<dc:creator>Mostafa</dc:creator>
				<category><![CDATA[How To ...]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[extract]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[multimedia]]></category>

		<guid isPermaLink="false">http://scrolls.mafgani.net/?p=95</guid>
		<description><![CDATA[It&#8217;s really easy to extract either audio or video from a multimedia file using &#8216;ffmpeg&#8216;. To extract audio only: $ ffmpeg -i inputfile -vn -acodec copy outputfile And for video only, replace &#8216;-vn&#8216; with &#8216;-an&#8216; and &#8216;-acodec&#8216; with &#8216;-vcodec&#8216;. ffmpeg is also commonly used as a transcoding tool.]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s really easy to extract either audio or video from a multimedia file using &#8216;<span style="font-weight:bold;">ffmpeg</span>&#8216;. To extract audio only:
<pre>$ ffmpeg -i inputfile -vn -acodec copy outputfile</pre>
<p>And for video only, replace &#8216;<span style="font-style:italic;">-vn</span>&#8216; with &#8216;<span style="font-style:italic;">-an</span>&#8216; and &#8216;<span style="font-style:italic;">-acodec</span>&#8216; with &#8216;<span style="font-style:italic;">-vcodec</span>&#8216;.</p>
<p><a href="http://ffmpeg.mplayerhq.hu/">ffmpeg</a> is also commonly used as a transcoding tool.</p>
]]></content:encoded>
			<wfw:commentRss>http://scrolls.mafgani.net/2007/12/extracting-audiovideo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Logo in a LaTeX document header/footer</title>
		<link>http://scrolls.mafgani.net/2007/10/logo-in-a-latex-document-headerfooter/</link>
		<comments>http://scrolls.mafgani.net/2007/10/logo-in-a-latex-document-headerfooter/#comments</comments>
		<pubDate>Mon, 22 Oct 2007 15:47:00 +0000</pubDate>
		<dc:creator>Mostafa</dc:creator>
				<category><![CDATA[How To ...]]></category>
		<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[fancyhdr]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[multimedia]]></category>
		<category><![CDATA[positioning]]></category>

		<guid isPermaLink="false">http://scrolls.mafgani.net/?p=93</guid>
		<description><![CDATA[Easily accomplished using the &#8216;fancyhdr&#8216; package: \usepackage{fancyhdr} \renewcommand{\headheight}{0.6in} \setlength{\headwidth}{\textwidth} \fancyhead[L]{}% empty left \fancyhead[R]{ % right \includegraphics[height=0.53in]{img-file} } \pagestyle{fancy} All of that goes into the preamble of the document.]]></description>
			<content:encoded><![CDATA[<p>Easily accomplished using the &#8216;<span style="font-style:italic;">fancyhdr</span>&#8216; package:</p>
<pre>
\usepackage{fancyhdr}
\renewcommand{\headheight}{0.6in}
\setlength{\headwidth}{\textwidth}
\fancyhead[L]{}% empty left
\fancyhead[R]{ % right
   \includegraphics[height=0.53in]{img-file}
}
\pagestyle{fancy}
</pre>
<p>All of that goes into the preamble of the document.</p>
]]></content:encoded>
			<wfw:commentRss>http://scrolls.mafgani.net/2007/10/logo-in-a-latex-document-headerfooter/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Mass conversion of images</title>
		<link>http://scrolls.mafgani.net/2007/05/mass-conversion-of-images/</link>
		<comments>http://scrolls.mafgani.net/2007/05/mass-conversion-of-images/#comments</comments>
		<pubDate>Mon, 07 May 2007 22:00:00 +0000</pubDate>
		<dc:creator>Mostafa</dc:creator>
				<category><![CDATA[How To ...]]></category>
		<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[conversion]]></category>
		<category><![CDATA[file processing]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[multimedia]]></category>

		<guid isPermaLink="false">http://scrolls.mafgani.net/?p=85</guid>
		<description><![CDATA[The following &#8220;one-liner&#8221; can be used to mass convert a given image format into another using the convert (part of ImageMagick) and basename tools: $ for A in $(ls *.$SRC_TYPE); do convert $A $(basename $A .$SRC_TYPE).$DST_TYPE; done where $SRC_TYPE is the file suffix of the original images (e.g. png) and $DST_TYPE is the file suffix of the [...]]]></description>
			<content:encoded><![CDATA[<p>The following &#8220;one-liner&#8221; can be used to mass convert a given image format into another using the <i>convert</i> (part of <strong>ImageMagick</strong>) and <i>basename</i> tools:</p>
<pre>$ for A in $(ls *.$SRC_TYPE); do convert $A $(basename $A .$SRC_TYPE).$DST_TYPE; done</pre>
<p>where <span style="font-family:courier new;">$SRC_TYPE</span> is the file suffix of the original images (e.g. <i>png</i>) and <span style="font-family:courier new;">$DST_TYPE</span> is the file suffix of the type desired (e.g. <i>eps</i>).</p>
]]></content:encoded>
			<wfw:commentRss>http://scrolls.mafgani.net/2007/05/mass-conversion-of-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux and DVD Regions</title>
		<link>http://scrolls.mafgani.net/2007/04/linux-and-dvd-regions/</link>
		<comments>http://scrolls.mafgani.net/2007/04/linux-and-dvd-regions/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 17:52:00 +0000</pubDate>
		<dc:creator>Mostafa</dc:creator>
				<category><![CDATA[How To ...]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[dvd region]]></category>
		<category><![CDATA[multimedia]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://scrolls.mafgani.net/?p=84</guid>
		<description><![CDATA[Typically, Linux DVD playback software are capable of decrypting (libdvdcss must be installed) and playing back DVDs from any region, irrespective of the region code of the drive. Therefore, there should be no need to change the region code of the drive to watch discs from a different region. Regardless, there exists a very handy [...]]]></description>
			<content:encoded><![CDATA[<p>Typically, Linux DVD playback software are capable of decrypting (<span style="font-weight:bold;">libdvdcss</span> must be installed) and playing back DVDs from any region, irrespective of the region code of the drive. Therefore, there should be no need to change the region code of the drive to watch discs from a different region. Regardless, there exists a very handy program that allows the user to change the region code and view other relevant information such as the number of changes remaining. It is called &#8220;<span style="font-weight:bold;">regionset</span>&#8221; and is available for Fedora from the Extras repository. The project website is:</p>
<p><a href="http://linvdr.org/projects/regionset/">http://linvdr.org/projects/regionset/</a></p>
<p>There is also a useful article on Linux.com about DVD playback:</p>
<p><a href="http://www.linux.com/howtos/DVD-Playback-HOWTO/">DVD Playback HOWTO</a></p>
]]></content:encoded>
			<wfw:commentRss>http://scrolls.mafgani.net/2007/04/linux-and-dvd-regions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

