<?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>Bizzeh Dot Com</title>
	<atom:link href="http://www.bizzeh.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.bizzeh.com</link>
	<description>My code, its just what I do</description>
	<lastBuildDate>Sat, 17 Dec 2011 16:47:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Watermark Video in FFMPEG without vhook</title>
		<link>http://www.bizzeh.com/730/watermark-video-in-ffmpeg-without-vhook</link>
		<comments>http://www.bizzeh.com/730/watermark-video-in-ffmpeg-without-vhook#comments</comments>
		<pubDate>Sat, 17 Dec 2011 16:47:29 +0000</pubDate>
		<dc:creator>bizzeh</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[FFmpeg]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[watermark]]></category>
		<category><![CDATA[win32]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.bizzeh.com/730/watermark-video-in-ffmpeg-without-vhook</guid>
		<description><![CDATA[It has always been that with ffmpeg, if you want to watermark a video, you needed vhook. vhook as we all know is old and not very useful to windows users and in the newer ffmpeg builds has been replaced with video filters, or –vf. One of the filters in the new –vf format is [...]]]></description>
			<content:encoded><![CDATA[<p>It has always been that with ffmpeg, if you want to watermark a video, you needed vhook. vhook as we all know is old and not very useful to windows users and in the newer ffmpeg builds has been replaced with video filters, or –vf.</p>
<p>One of the filters in the new –vf format is a watermark filter, allowing you to watermark your videos during the transcoding procedure.</p>
<p>An example would be: –vf “overlay:10:10” which would tell the overlay to position 10 pixels from the top of the main video, and 10 pixels from the left. </p>
<p>But what if we want to position from the right? Or from the bottom? Or centre the overlay? This is where main_w (main video width), main_h (main video height), overlay_w (overlay video width) and overlay_h&#160; (overlay video height) comes in. You can use these variables to represent the certain set sizes of the video and the overlay.</p>
<p>So what if we wanted to position 10 pixels from the right and 10 pixels from the bottom? We would the use: –vf “overlay:main_w-overlay_w-10:main_h-overlay_h-10”.</p>
<p>So how do we specify the overlay? What we do is use the “movie” video filter which would take our png or jpg and convert that into a movie which is then overlaid on top of our existing movie.</p>
<p>See example below:</p>
<p><font color="#ff0000">ffmpeg –i inputvideo.avi -vf &quot;movie=watermarklogo.png [watermark]; [in][watermark] overlay=main_w-overlay_w-10:10 [out]&quot; outputvideo.flv</font></p>
<p>Or if you are planing to use your video with a newer version of flash that supports h264 encoded videos, you could use:</p>
<p><font color="#ff0000">ffmpeg.exe -i input.avi -sameq -vcodec libx264 -acodec libfaac -vf &quot;movie=logo.png [watermark]; [in][watermark] overlay=(main_w-overlay_w)/2:main_h-overlay_h-10 [out]&quot; -threads 0 &quot;output-slow.mp4&quot;</font></p>
<p><font color="#ff0000">qt-faststart.exe output-slow.mp4 output-fast.mp4</font></p>
<p>Thus giving you a watermarked MPEG4 h264 + AAC file capable of streaming with a flash player.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bizzeh.com/730/watermark-video-in-ffmpeg-without-vhook/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search and Replace in Linux Command Line</title>
		<link>http://www.bizzeh.com/725/search-and-replace-in-linux-command-line</link>
		<comments>http://www.bizzeh.com/725/search-and-replace-in-linux-command-line#comments</comments>
		<pubDate>Mon, 15 Aug 2011 14:32:59 +0000</pubDate>
		<dc:creator>bizzeh</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Free Code]]></category>

		<guid isPermaLink="false">http://www.bizzeh.com/?p=725</guid>
		<description><![CDATA[I wanted to search and replace every file in a directory tree and find a URL that linked to /web-design and remove that part of the URL, and i also wanted to find the phrase &#8220;Web Design&#8221; in a link and replace it with &#8220;Affordable Web Design&#8221;. Usually i would have to go through each [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to search and replace every file in a directory tree and find a URL that linked to /web-design and remove that part of the URL, and i also wanted to find the phrase &#8220;Web Design&#8221; in a link and replace it with &#8220;Affordable Web Design&#8221;.</p>
<p>Usually i would have to go through each individual file via SSH or FTP and then open the file, make the edits, save the file and re-upload the file. The problem with that is, i needed to do this for over 15,000 files on over 3000 web sites, and that isn&#8217;t something i wanted to do.</p>
<p>Firstly, i needed to find all the html files that could possibly have these two defects, so i went with &#8220;find&#8221;, its simple, and easy, and crawls sub directories as default.</p>
<p>Find all files with the extension &#8220;.html&#8221; in the current directory and all sub directories:<br />
<code>find . -iname '*.html'</code></p>
<p>The problem i had then was, web sites that are still being worked on are in a private directory that i do not want to alter, so i needed to exclude these directories:<br />
<code>find . -iname '*.html' -not -path '*private*'</code></p>
<p>This now gives me a list of everything that i need to do a search and replace on.</p>
<p>For this next part, you can use either &#8220;sed&#8221; or &#8220;perl&#8221;. I chose to go with perl as i know perl better than sed.</p>
<p>This cold should replace &#8220;/web-design&#8221; with &#8220;&#8221; in a file called &#8220;index.html&#8221; in the current folder. (Follows the format &#8220;s/what to find/what to replace with/g&#8221;):<br />
<code>perl -pi -w -e 's/\/web-design//g;' index.html</code></p>
<p>So what we need to do now is use xargs to combine the two parts and make the search and replace in all files:<br />
<code>find . -iname '*.html' -not -path '*private*' | xargs perl -pi -w -e 's/\/web-design//g;' -sl</code></p>
<p>This code should now look in the current directory, and all sub-directories contained within for any html file not in a private folder, and remove the text &#8220;/web-design&#8221; and replace it with nothing.</p>
<p>The next bit was a simple modification to replace the phrase &#8220;Web Design&#8221; with &#8220;Affordable Web Design&#8221;, though we needed to take into account that we only wanted to replace content within a A HREF tag, so we need to search for &#8220;&gt;Web Design&lt;&#8221;<br />
<code>find . -iname '*.html' -not -path '*private*' | xargs perl -pi -w -e 's/\&gt;Web Design\&lt;/\&gt;Affordable Web Design\&lt;/g;' -sl</code></p>
<p>Make sure that when you are creating your regular expressions, you escape any special characters such as \ / &lt; &gt; and friends.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bizzeh.com/725/search-and-replace-in-linux-command-line/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AnyFontCss &#8211; Use CSS to load any font (TTF/Freetype) in modern browsers</title>
		<link>http://www.bizzeh.com/714/anyfontcss-use-css-to-load-any-font-ttffreetype-in-modern-browsers</link>
		<comments>http://www.bizzeh.com/714/anyfontcss-use-css-to-load-any-font-ttffreetype-in-modern-browsers#comments</comments>
		<pubDate>Wed, 01 Jun 2011 22:38:33 +0000</pubDate>
		<dc:creator>bizzeh</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[ie]]></category>

		<guid isPermaLink="false">http://www.bizzeh.com/?p=714</guid>
		<description><![CDATA[With Chrome, Firefox and now IE9 becoming more and more wide spread, and the impending death of IE6. I began to look into googles font loading library and it turned out to be some new CSS features (new to me anyway) that loaded up and allowed any font to be used within a website natively, [...]]]></description>
			<content:encoded><![CDATA[<p>With Chrome, Firefox and now IE9 becoming more and more wide spread, and the impending death of IE6. I began to look into googles font loading library and it turned out to be some new CSS features (new to me anyway) that loaded up and allowed any font to be used within a website natively, without the need for Flash or Canvas.</p>
<p>You simply select a font and font style, and the app simply generates all the CSS and even the link code for the HTML to allow the loading of any installed font.</p>
<p><a rel="attachment wp-att-715" href="http://www.bizzeh.com/714/anyfontcss-use-css-to-load-any-font-ttffreetype-in-modern-browsers/afcss"><img class="size-medium wp-image-715 aligncenter" title="AnyFontCss" src="http://www.bizzeh.com/wp-content/uploads/2011/06/afcss-366x450.jpg" alt="" width="366" height="450" /></a></p>
<p><a rel="attachment wp-att-718" href="http://www.bizzeh.com/714/anyfontcss-use-css-to-load-any-font-ttffreetype-in-modern-browsers/anyfontcss">Download AnyFontCss</a> (Requires .NET Framework 2.0)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bizzeh.com/714/anyfontcss-use-css-to-load-any-font-ttffreetype-in-modern-browsers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FFmpeg Win32 Builds down indefinitely</title>
		<link>http://www.bizzeh.com/710/ffmpeg-win32-builds-down-indefinitely</link>
		<comments>http://www.bizzeh.com/710/ffmpeg-win32-builds-down-indefinitely#comments</comments>
		<pubDate>Wed, 01 Jun 2011 22:24:19 +0000</pubDate>
		<dc:creator>bizzeh</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[FFmpeg]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[win32]]></category>

		<guid isPermaLink="false">http://www.bizzeh.com/?p=710</guid>
		<description><![CDATA[I am sorry to say that my hosting provider did not like me using the dedicated host i paid for, so that i could run build processes on the server, running build processes on the server. They killed my entire build environment, and all the builds. Until i am able to find a new host [...]]]></description>
			<content:encoded><![CDATA[<p>I am sorry to say that my hosting provider did not like me using the dedicated host i paid for, so that i could run build processes on the server, running build processes on the server.</p>
<p>They killed my entire build environment, and all the builds.</p>
<p>Until i am able to find a new host that is willing to let me create these builds, the ffmpeg builds will remain down.</p>
<p>Anyone looking to get ffmpeg builds for windows for now should look at http://ffmpeg.zeranoe.com/</p>
<p>Sorry, and thank you to everyone who used my builds.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bizzeh.com/710/ffmpeg-win32-builds-down-indefinitely/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FFmpeg Win32 Builds Back Up</title>
		<link>http://www.bizzeh.com/707/ffmpeg-win32-builds-back-up</link>
		<comments>http://www.bizzeh.com/707/ffmpeg-win32-builds-back-up#comments</comments>
		<pubDate>Wed, 04 May 2011 15:18:56 +0000</pubDate>
		<dc:creator>bizzeh</dc:creator>
				<category><![CDATA[FFmpeg]]></category>

		<guid isPermaLink="false">http://www.bizzeh.com/?p=707</guid>
		<description><![CDATA[Hi, sorry for the delay in getting this back up but we have had some server issues over the past few weeks and i have only just got round to getting this sorted. FFmpeg win32 builds are now being generated nightly again from the ffmpeg git repository.]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>sorry for the delay in getting this back up but we have had some server issues over the past few weeks and i have only just got round to getting this sorted.</p>
<p><a href="http://www.bizzeh.com/ffmpeg/free/">FFmpeg win32 builds</a> are now being generated nightly again from the ffmpeg git repository.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bizzeh.com/707/ffmpeg-win32-builds-back-up/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>FFmpeg Windows Builds (Repeating Builds)</title>
		<link>http://www.bizzeh.com/701/ffmpeg-windows-builds-repeating-builds</link>
		<comments>http://www.bizzeh.com/701/ffmpeg-windows-builds-repeating-builds#comments</comments>
		<pubDate>Sat, 02 Apr 2011 18:43:04 +0000</pubDate>
		<dc:creator>bizzeh</dc:creator>
				<category><![CDATA[FFmpeg]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[win32]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.bizzeh.com/?p=701</guid>
		<description><![CDATA[Some of you may have noticed that some builds have been repeating over the past 2 weeks, this is down to git not being able to recognise that i have manually applied some patches that now made it into the main ffmpeg branch. i have had to undo these packages and i have now created [...]]]></description>
			<content:encoded><![CDATA[<p>Some of you may have noticed that some builds have been repeating over the past 2 weeks, this is down to git not being able to recognise that i have manually applied some patches that now made it into the main ffmpeg branch. i have had to undo these packages and i have now created a seperate experimental clone to test experimental patches.</p>
<p>this should now stop any future messups.</p>
<p><a href="http://www.bizzeh.com/ffmpeg/free/">ffmpeg windows builds</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bizzeh.com/701/ffmpeg-windows-builds-repeating-builds/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to build libvpx for windows and ffmpeg win32</title>
		<link>http://www.bizzeh.com/687/build-libvpx-windows-ffmpeg-win32</link>
		<comments>http://www.bizzeh.com/687/build-libvpx-windows-ffmpeg-win32#comments</comments>
		<pubDate>Fri, 11 Mar 2011 22:46:15 +0000</pubDate>
		<dc:creator>bizzeh</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[libvpx]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[vp8]]></category>
		<category><![CDATA[webm]]></category>
		<category><![CDATA[win32]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.bizzeh.com/?p=687</guid>
		<description><![CDATA[I initially ran into quite a lot of difficulty building libvpx (webm) for windows (win32) under msys or linux using mingw32, but I eventually cracked it. git clone git://review.webmproject.org/libvpx.git cd libvpx CROSS=i686-pc-mingw32- ./configure --prefix=/usr/i686-pc-mingw32/mingw --target=x86-win32-gcc make make install The only thing you would generally need to change is the &#8220;i686-pc-mingw32&#8243; generally needs to be changed [...]]]></description>
			<content:encoded><![CDATA[<p>I initially ran into quite a lot of difficulty building libvpx (webm) for windows (win32) under msys or linux using mingw32, but I eventually cracked it.</p>
<pre class="brush: bash">git clone git://review.webmproject.org/libvpx.git
cd libvpx
CROSS=i686-pc-mingw32- ./configure --prefix=/usr/i686-pc-mingw32/mingw --target=x86-win32-gcc
make
make install</pre>
<p>The only thing you would generally need to change is the &#8220;i686-pc-mingw32&#8243; generally needs to be changed to reflect the mingw in your build system and the prefix needs to point to your mingw toolset root. Not only will this create a working library to use within windows projects (the libvpx.a can be added to visual studio projects), it creates and installs a library that builds perfectly into ffmpeg win32 builds.</p>
<p>Simple, no patches required.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bizzeh.com/687/build-libvpx-windows-ffmpeg-win32/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fast convert x264 mkv to Xbox360 mp4 (Play mkv on Xbox 360)</title>
		<link>http://www.bizzeh.com/683/fast-convert-x264-mkv-xbox360-mp4-play-mkv-xbox-360</link>
		<comments>http://www.bizzeh.com/683/fast-convert-x264-mkv-xbox360-mp4-play-mkv-xbox-360#comments</comments>
		<pubDate>Wed, 09 Mar 2011 23:21:13 +0000</pubDate>
		<dc:creator>bizzeh</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[FFmpeg]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[h264]]></category>
		<category><![CDATA[mkv]]></category>
		<category><![CDATA[wmvhd]]></category>
		<category><![CDATA[x264]]></category>
		<category><![CDATA[xbox360]]></category>

		<guid isPermaLink="false">http://www.bizzeh.com/?p=683</guid>
		<description><![CDATA[Most HD is distributed in either WMV-HD or mkv x264. WMV-HD plays by default on the Xbox360 but mkv&#8217;s do not and transcoding 1080p can take a long time. The thing is, you dont need to transcode the entire file, usually just the audio (360 cant play AC3 from within a mp4 container). The x264 [...]]]></description>
			<content:encoded><![CDATA[<p>Most HD is distributed in either WMV-HD or mkv x264. WMV-HD plays by default on the Xbox360 but mkv&#8217;s do not and transcoding 1080p can take a long time.</p>
<p>The thing is, you dont need to transcode the entire file, usually just the audio (360 cant play AC3 from within a mp4 container). The x264 that exists within the mkv works perfectly on an Xbox 360 and it takes nothing more than copying the video from one container to another, and re-code the audio.</p>
<p>You simply need:</p>
<blockquote><p>ffmpeg -i input.mkv -vcodec copy -acodec <span style="color: #ff0000;">aac</span> -ab 192k -ac 2 -threads 0 -strict experimental output.mp4</p></blockquote>
<p>Depending on your version of ffmpeg, you need to replace aac with libfaac.</p>
<p>You can also create a batch script that converts an entire directory of mkv&#8217;s to mp4&#8242;s for you.</p>
<blockquote><p>FOR /R <span style="color: #ff0000;">&#8220;in&#8221;</span> %%D  in (*.mkv) DO ffmpeg -i &#8220;%%D&#8221; -vcodec copy -acodec libfaac -ab 192k -ac 2 -threads 0 -strict experimental &#8220;<span style="color: #ff0000;">out</span>\%%~nD.mp4&#8243;</p></blockquote>
<p>Create a text file called convert-mkv-mp4.bat and paste this line inside, when you run it the script will look inside a directory &#8220;in&#8221; and outputs the mp4&#8242;s in a directory called &#8220;out&#8221;. You will need to create the two directories yourself before running the script or errors will ensue <img src='http://www.bizzeh.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If you need recent <a href="http://www.bizzeh.com/ffmpeg/free/">win32 ffmpeg builds</a>, you need to check my <a href="http://www.bizzeh.com/ffmpeg/free/">ffmpeg win32 autobuilds</a> page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bizzeh.com/683/fast-convert-x264-mkv-xbox360-mp4-play-mkv-xbox-360/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pop3 Client Library for .NET (System.Net.Pop3)</title>
		<link>http://www.bizzeh.com/677/pop3-client-library-net-system-net-pop3</link>
		<comments>http://www.bizzeh.com/677/pop3-client-library-net-system-net-pop3#comments</comments>
		<pubDate>Mon, 21 Feb 2011 11:15:34 +0000</pubDate>
		<dc:creator>bizzeh</dc:creator>
				<category><![CDATA[Free Code]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[csharp]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[pop3]]></category>

		<guid isPermaLink="false">http://www.bizzeh.com/?p=677</guid>
		<description><![CDATA[C# .NET library implementing the Pop3 message retrieval protocol Features: Full Pop3 implementation SSL Support HTML Support Plain Text Support Mixed/Multi Mode Message Support Attachments Support .NET 2.0 + Compatable Fully Self Contained Code Extendible Message Parser SVN: https://systemnetpop3.svn.sourceforge.net/svnroot/systemnetpop3 Files: https://sourceforge.net/projects/systemnetpop3/files/]]></description>
			<content:encoded><![CDATA[<p>C# .NET library implementing the Pop3 message retrieval protocol</p>
<p>Features:</p>
<ul>
<li>Full Pop3 implementation</li>
<li>SSL Support</li>
<li>HTML Support</li>
<li>Plain Text Support</li>
<li>Mixed/Multi Mode Message Support</li>
<li>Attachments Support</li>
<li>.NET 2.0 + Compatable</li>
<li>Fully Self Contained Code</li>
<li>Extendible Message Parser</li>
</ul>
<p>SVN: <a href="https://systemnetpop3.svn.sourceforge.net/svnroot/systemnetpop3">https://systemnetpop3.svn.sourceforge.net/svnroot/systemnetpop3</a><br />
Files: <a href="https://sourceforge.net/projects/systemnetpop3/files/">https://sourceforge.net/projects/systemnetpop3/files/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bizzeh.com/677/pop3-client-library-net-system-net-pop3/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FFmpeg Win32 build with webm (libvpx) x264 and libfaac</title>
		<link>http://www.bizzeh.com/668/ffmpeg-win32-build-webm-libvpx-x264-libfaac</link>
		<comments>http://www.bizzeh.com/668/ffmpeg-win32-build-webm-libvpx-x264-libfaac#comments</comments>
		<pubDate>Sun, 20 Feb 2011 20:26:03 +0000</pubDate>
		<dc:creator>bizzeh</dc:creator>
				<category><![CDATA[FFmpeg]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[faac]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[libvpx]]></category>
		<category><![CDATA[vpx]]></category>
		<category><![CDATA[webm]]></category>
		<category><![CDATA[win32]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[x264]]></category>

		<guid isPermaLink="false">http://www.bizzeh.com/?p=668</guid>
		<description><![CDATA[I have decided to begin releasing intermittent ffmpeg win32 builds built on my ubuntu virtual machine with mingw32. Releases will be made if and when any features or fixes are added into the ffmpeg code base that make it worth doing a new build. For now, all builds will be &#8220;shared&#8221; builds, meaning they will [...]]]></description>
			<content:encoded><![CDATA[<p>I have decided to begin releasing intermittent ffmpeg win32 builds built on my ubuntu virtual machine with mingw32. Releases will be made if and when any features or fixes are added into the ffmpeg code base that make it worth doing a new build.<br />
For now, all builds will be &#8220;shared&#8221; builds, meaning they will come with all the dll&#8217;s and wont just be huge exe&#8217;s.</p>
<p>This build includes:</p>
<ul>
<li>libmp3lame</li>
<li>libx264</li>
<li><del datetime="2011-02-21T00:11:55+00:00">libfaac</del> (due to licencing issues, libfaac is nonfree and cannot be distributed)</li>
<li>libvpx (encoder)</li>
<li>all the standard stuff</li>
</ul>
<p>[EDIT]Removed direct link[/EDIT]</p>
<p>New location for bookmarking, all builds and build information will appear at <a href="http://www.bizzeh.com/ffmpeg/free/">http://www.bizzeh.com/ffmpeg/free/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bizzeh.com/668/ffmpeg-win32-build-webm-libvpx-x264-libfaac/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

