<?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>Helmut Granda &#187; shell</title>
	<atom:link href="http://www.helmutgranda.com/category/programming/shell/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.helmutgranda.com</link>
	<description>learning through interaction</description>
	<lastBuildDate>Wed, 18 Jan 2012 16:08:59 +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>Covert mov files to flv with ffmpeg</title>
		<link>http://www.helmutgranda.com/2009/02/05/covert-mov-files-to-flv-with-ffmpeg/</link>
		<comments>http://www.helmutgranda.com/2009/02/05/covert-mov-files-to-flv-with-ffmpeg/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 18:26:23 +0000</pubDate>
		<dc:creator>Helmut Granda</dc:creator>
				<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://www.helmutgranda.com/?p=301</guid>
		<description><![CDATA[The shell script below will take files from the folder you are running it from and convert all "mov" files to "flv". The script can be updated to use the same file name as flv name. Since this is not for production but only for testing the name for the flv that I am using [...]]]></description>
			<content:encoded><![CDATA[<p>The shell script below will take files from the folder you are running it from and convert all "mov" files to "flv". The script can be updated to use the same file name as flv name. Since this is not for production but only for testing the name for the flv that I am using is flvMovie0.flv, flvMovie1.flv.. and so on.</p>
<p>#!/bin/bash<br />
# Convert all mov files into flv<br />
counter=0<br />
mov=flvMovie<br />
currmov=$mov$counter<br />
ext=.flv<br />
for file in *.mov; do<br />
let counter=counter+1<br />
currmov=$mov$counter$ext<br />
ffmpeg -i $file -ar 22050 -f flv -ab 56 -aspect 4:3 -b 200 -r 12 -s 320x240 -ac 1 $currmov<br />
done</p>
]]></content:encoded>
			<wfw:commentRss>http://www.helmutgranda.com/2009/02/05/covert-mov-files-to-flv-with-ffmpeg/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

