<?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>Strick&#039;s Ramblings &#187; zune</title>
	<atom:link href="http://www.strickstuff.com/wp/tag/zune/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.strickstuff.com/wp</link>
	<description>My Ramblings &#38; Random Thoughts</description>
	<lastBuildDate>Mon, 02 Jan 2012 13:52:20 +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>Script for Converting video to Zune format</title>
		<link>http://www.strickstuff.com/wp/2008/03/04/script-for-converting-video-to-zune-format/</link>
		<comments>http://www.strickstuff.com/wp/2008/03/04/script-for-converting-video-to-zune-format/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 00:49:03 +0000</pubDate>
		<dc:creator>James Strickland</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[re-encode]]></category>
		<category><![CDATA[videos]]></category>
		<category><![CDATA[zune]]></category>

		<guid isPermaLink="false">http://www.strickstuff.com/wp/2008/03/04/script-for-converting-video-to-zune-format/</guid>
		<description><![CDATA[A script I wrote to re-encode videos for use on the Zune. &#160; #!/bin/bash &#160; ############################## # ZUNE VIDEO CONVERTER # # gi_james@strickstuff.com # # www.strickstuff.com # ############################## &#160; # all files that start with .m &#40;eg mpeg mpg mod&#41; # change to whatever you want... for file in ./*.m*; &#160; # encode files and [...]]]></description>
			<content:encoded><![CDATA[<p>A script I wrote to re-encode videos for use on the Zune.</p>
<pre class="bash">&nbsp;
    <span style="color: #808080; font-style: italic;">#!/bin/bash</span>
&nbsp;
    <span style="color: #808080; font-style: italic;">##############################</span>
    <span style="color: #808080; font-style: italic;"># ZUNE VIDEO CONVERTER       #</span>
    <span style="color: #808080; font-style: italic;"># gi_james@strickstuff.com   #</span>
    <span style="color: #808080; font-style: italic;"># www.strickstuff.com        #</span>
    <span style="color: #808080; font-style: italic;">##############################</span>
&nbsp;
    <span style="color: #808080; font-style: italic;"># all files that start with .m <span style="color: #7a0874; font-weight: bold;">&#40;</span>eg mpeg mpg mod<span style="color: #7a0874; font-weight: bold;">&#41;</span></span>
    <span style="color: #808080; font-style: italic;"># change to whatever you want...</span>
    <span style="color: #000000; font-weight: bold;">for</span> <span style="color: #c20cb9; font-weight: bold;">file</span> <span style="color: #000000; font-weight: bold;">in</span> ./*.m*;
&nbsp;
    <span style="color: #808080; font-style: italic;"># encode files and rename them to wmv</span>
      <span style="color: #000000; font-weight: bold;">do</span> ffmpeg -i <span style="color: #007800;">$file</span> -deinterlace -pix_fmt yuv420p -g <span style="color: #000000;">15</span> -qmin <span style="color: #000000;">3</span>  \
-maxrate <span style="color: #000000;">628000</span> -bufsize 628k -async <span style="color: #000000;">50</span> -vcodec wmv2 -b <span style="color: #000000;">500000</span>  \
-r <span style="color: #000000;">29.97</span> -s 320x240 -<span style="color: #c20cb9; font-weight: bold;">ar</span> 4x3 -acodec wmav2 -<span style="color: #c20cb9; font-weight: bold;">ar</span> <span style="color: #000000;">44100</span>  \
-ac <span style="color: #000000;">2</span> -ab 128k $<span style="color: #7a0874; font-weight: bold;">&#123;</span>file%.m*<span style="color: #7a0874; font-weight: bold;">&#125;</span>.wmv;
&nbsp;
    <span style="color: #808080; font-style: italic;"># all <span style="color: #000000; font-weight: bold;">done</span>!</span>
    <span style="color: #000000; font-weight: bold;">done</span></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.strickstuff.com/wp/2008/03/04/script-for-converting-video-to-zune-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

