<?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>Matthew Elliston &#187; Web</title>
	<atom:link href="http://www.matthewelliston.com/category/development/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.matthewelliston.com</link>
	<description>A site filled with my pictures, thoughts and things I want to remember!</description>
	<lastBuildDate>Wed, 24 Aug 2011 14:03:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Remove sound from an FLV</title>
		<link>http://www.matthewelliston.com/remove-sound-from-an-flv/</link>
		<comments>http://www.matthewelliston.com/remove-sound-from-an-flv/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 10:40:34 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.matthewelliston.com/?p=113</guid>
		<description><![CDATA[Today I needed to remove sound from an a flash video that was playing in the website. I was hoping that I would not have to get the DVD out and re-encode it for the web as this took me quite some time to get it to the required level of quality/size. After a bit<a href="http://www.matthewelliston.com/remove-sound-from-an-flv/" class="read-more">Continue Reading</a>]]></description>
			<content:encoded><![CDATA[<p>Today I needed to remove sound from an a flash video that was playing in the website. I was hoping that I would not have to get the DVD out and re-encode it for the web as this took me quite some time to get it to the required level of quality/size.</p>
<p>After a bit of searching with google I came across FFMPEG which turned made the task really easy.</p>
<pre class="brush: bash">
ffmpeg -i input.flv -an -vcodec copy output.flv
</pre>
<p>-i is the input fil<br />
-an disables the audio which is really important here.<br />
-vcodec copy ensures that the codec of the input file is used for the output file.</p>
<p>output.flv is the name of the output file.</p>
<p>Hope that you find this useful! I know it saved me some time!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.matthewelliston.com/remove-sound-from-an-flv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

