<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Using libmp3lame-enabled ffmpeg on shared hosting</title>
	<atom:link href="http://bogdan.org.ua/2007/10/25/using-libmp3lame-enabled-ffmpeg-on-shared-hosting.html/feed" rel="self" type="application/rss+xml" />
	<link>http://bogdan.org.ua/2007/10/25/using-libmp3lame-enabled-ffmpeg-on-shared-hosting.html</link>
	<description>Tiny bits of bioinformatics, [web-]programming etc</description>
	<lastBuildDate>Sun, 14 Mar 2010 08:55:31 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Instructions on installing libmp3lame-enabled ffmpeg on shared linux hosting &#187; Autarchy of the Private Cave</title>
		<link>http://bogdan.org.ua/2007/10/25/using-libmp3lame-enabled-ffmpeg-on-shared-hosting.html/comment-page-1#comment-59826</link>
		<dc:creator>Instructions on installing libmp3lame-enabled ffmpeg on shared linux hosting &#187; Autarchy of the Private Cave</dc:creator>
		<pubDate>Wed, 12 Mar 2008 06:26:01 +0000</pubDate>
		<guid isPermaLink="false">http://bogdan.org.ua/2007/10/25/using-libmp3lame-enabled-ffmpeg-on-shared-hosting.html#comment-59826</guid>
		<description>[...] this post is based on the comment by Simon, who generously shared his experience [...]</description>
		<content:encoded><![CDATA[<p><!-- google_ad_section_start -->[...] this post is based on the comment by Simon, who generously shared his experience [...]<!-- google_ad_section_end --></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bogdan</title>
		<link>http://bogdan.org.ua/2007/10/25/using-libmp3lame-enabled-ffmpeg-on-shared-hosting.html/comment-page-1#comment-59816</link>
		<dc:creator>Bogdan</dc:creator>
		<pubDate>Wed, 12 Mar 2008 05:59:25 +0000</pubDate>
		<guid isPermaLink="false">http://bogdan.org.ua/2007/10/25/using-libmp3lame-enabled-ffmpeg-on-shared-hosting.html#comment-59816</guid>
		<description>Simon,

thanks for sharing this information! (I edited slightly your comment to fix the direct download links)

If you do not mind, I&#039;ll write &quot;Instructions on installing libmp3lame-enabled ffmpeg on shared linux hosting&quot; (mostly citing you), which will link back to your comment as original source.

Also, I&#039;ll provide properly named and already unarchived binaries to simplify the instructions.

Thanks again!</description>
		<content:encoded><![CDATA[<p><!-- google_ad_section_start -->Simon,</p>
<p>thanks for sharing this information! (I edited slightly your comment to fix the direct download links)</p>
<p>If you do not mind, I&#8217;ll write &#8220;Instructions on installing libmp3lame-enabled ffmpeg on shared linux hosting&#8221; (mostly citing you), which will link back to your comment as original source.</p>
<p>Also, I&#8217;ll provide properly named and already unarchived binaries to simplify the instructions.</p>
<p>Thanks again!<!-- google_ad_section_end --></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon</title>
		<link>http://bogdan.org.ua/2007/10/25/using-libmp3lame-enabled-ffmpeg-on-shared-hosting.html/comment-page-1#comment-59670</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Tue, 11 Mar 2008 17:31:12 +0000</pubDate>
		<guid isPermaLink="false">http://bogdan.org.ua/2007/10/25/using-libmp3lame-enabled-ffmpeg-on-shared-hosting.html#comment-59670</guid>
		<description>Thanks so much for posting this! I spent something like 20 hours during the last 4 days to get ffmpeg working smoothly on my shared server. And this place seems to be the only place on the internet, which addressed the problem I was dealing with. 

So basically what I did:

* Download the compiled ffmpeg with libmp3lame on this blog (called ffmpeg.with.lame, &lt;a href=&quot;http://bogdan.org.ua/wp-content/uploads/2007/06/ffmpeg.with.lame&quot; title=&quot;direct link&quot; rel=&quot;nofollow&quot;&gt;ffmpeg.with.lame&lt;/a&gt;)
* Rename the file to &quot;ffmpeg&quot; (no extension) and upload to a directory on your server, in my example /home/myusername/

* Download the libmp3lame.so.0.0.0 on this blog (&lt;a href=&quot;http://bogdan.org.ua/wp-content/uploads/2008/03/libmp3lameso00.rar&quot; title=&quot;direct link&quot; rel=&quot;nofollow&quot;&gt;libmp3lameso00.rar&lt;/a&gt;) and unrar.

* Rename the unarchived file to libmp3lame.so.0 and upload to the same directory as you placed ffmpeg in

* Create a php file with the following code (remember to change the paths to where you uploaded):
exec(&quot;export LD_LIBRARY_PATH=/home/myusername/&quot;);
echo passthru(&quot;/home/myusername/ffmpeg -formats&quot;)

Now you should see a list of formats that ffmpeg supports, and if you find &quot;EA libmp3lame&quot; somewhere in the output, it means you can now Encode Audio in libmp3lame! But it didn&#039;t work for me: In my case, the LD_LIBRARY_PATH is a protected variable in PHP (you can check for this by searching for the &quot;safe_mode_protected_env_vars&quot; value in phpinfo). The workaround here can be to write your commands to a file from php, chmod the file to 0775, and run the file through EXEC. In this way, PHP is not changing the LD_LIBRARY_PATH, but telling the server to run a file, which tells the server to change it. Weird, huh, but it works at least on my server. Now, good luck!</description>
		<content:encoded><![CDATA[<p><!-- google_ad_section_start -->Thanks so much for posting this! I spent something like 20 hours during the last 4 days to get ffmpeg working smoothly on my shared server. And this place seems to be the only place on the internet, which addressed the problem I was dealing with. </p>
<p>So basically what I did:</p>
<p>* Download the compiled ffmpeg with libmp3lame on this blog (called ffmpeg.with.lame, <a href="http://bogdan.org.ua/wp-content/uploads/2007/06/ffmpeg.with.lame" title="direct link" rel="nofollow">ffmpeg.with.lame</a>)<br />
* Rename the file to &#8220;ffmpeg&#8221; (no extension) and upload to a directory on your server, in my example /home/myusername/</p>
<p>* Download the libmp3lame.so.0.0.0 on this blog (<a href="http://bogdan.org.ua/wp-content/uploads/2008/03/libmp3lameso00.rar" title="direct link" rel="nofollow">libmp3lameso00.rar</a>) and unrar.</p>
<p>* Rename the unarchived file to libmp3lame.so.0 and upload to the same directory as you placed ffmpeg in</p>
<p>* Create a php file with the following code (remember to change the paths to where you uploaded):<br />
exec(&#8220;export LD_LIBRARY_PATH=/home/myusername/&#8221;);<br />
echo passthru(&#8220;/home/myusername/ffmpeg -formats&#8221;)</p>
<p>Now you should see a list of formats that ffmpeg supports, and if you find &#8220;EA libmp3lame&#8221; somewhere in the output, it means you can now Encode Audio in libmp3lame! But it didn&#8217;t work for me: In my case, the LD_LIBRARY_PATH is a protected variable in PHP (you can check for this by searching for the &#8220;safe_mode_protected_env_vars&#8221; value in phpinfo). The workaround here can be to write your commands to a file from php, chmod the file to 0775, and run the file through EXEC. In this way, PHP is not changing the LD_LIBRARY_PATH, but telling the server to run a file, which tells the server to change it. Weird, huh, but it works at least on my server. Now, good luck!<!-- google_ad_section_end --></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bogdan</title>
		<link>http://bogdan.org.ua/2007/10/25/using-libmp3lame-enabled-ffmpeg-on-shared-hosting.html/comment-page-1#comment-59536</link>
		<dc:creator>Bogdan</dc:creator>
		<pubDate>Tue, 11 Mar 2008 06:44:30 +0000</pubDate>
		<guid isPermaLink="false">http://bogdan.org.ua/2007/10/25/using-libmp3lame-enabled-ffmpeg-on-shared-hosting.html#comment-59536</guid>
		<description>I updated the post with the binary of libmp3lame.so which I have on the system, where I compiled those &lt;a href=&quot;/2007/06/28/compiled-linux-ffmpeg-binary-for-gallery2-download.html&quot; rel=&quot;nofollow&quot;&gt;ffmpeg&#039;s I offer for download&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p><!-- google_ad_section_start -->I updated the post with the binary of libmp3lame.so which I have on the system, where I compiled those <a href="/2007/06/28/compiled-linux-ffmpeg-binary-for-gallery2-download.html" rel="nofollow">ffmpeg&#8217;s I offer for download</a>.<!-- google_ad_section_end --></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon</title>
		<link>http://bogdan.org.ua/2007/10/25/using-libmp3lame-enabled-ffmpeg-on-shared-hosting.html/comment-page-1#comment-59427</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Mon, 10 Mar 2008 23:21:01 +0000</pubDate>
		<guid isPermaLink="false">http://bogdan.org.ua/2007/10/25/using-libmp3lame-enabled-ffmpeg-on-shared-hosting.html#comment-59427</guid>
		<description>i can get ffmpeg to work, but there&#039;s abosolutely no sound on any movies! Tyler, or anyone else, if you made the libmp3lame.so workaround work, please post links to the files you used, which were working!</description>
		<content:encoded><![CDATA[<p><!-- google_ad_section_start -->i can get ffmpeg to work, but there&#8217;s abosolutely no sound on any movies! Tyler, or anyone else, if you made the libmp3lame.so workaround work, please post links to the files you used, which were working!<!-- google_ad_section_end --></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bogdan</title>
		<link>http://bogdan.org.ua/2007/10/25/using-libmp3lame-enabled-ffmpeg-on-shared-hosting.html/comment-page-1#comment-48998</link>
		<dc:creator>Bogdan</dc:creator>
		<pubDate>Sat, 02 Feb 2008 14:00:13 +0000</pubDate>
		<guid isPermaLink="false">http://bogdan.org.ua/2007/10/25/using-libmp3lame-enabled-ffmpeg-on-shared-hosting.html#comment-48998</guid>
		<description>Nixan,
both the link and one of the solutions are in the post text.</description>
		<content:encoded><![CDATA[<p><!-- google_ad_section_start -->Nixan,<br />
both the link and one of the solutions are in the post text.<!-- google_ad_section_end --></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nixan</title>
		<link>http://bogdan.org.ua/2007/10/25/using-libmp3lame-enabled-ffmpeg-on-shared-hosting.html/comment-page-1#comment-48939</link>
		<dc:creator>nixan</dc:creator>
		<pubDate>Sat, 02 Feb 2008 08:40:50 +0000</pubDate>
		<guid isPermaLink="false">http://bogdan.org.ua/2007/10/25/using-libmp3lame-enabled-ffmpeg-on-shared-hosting.html#comment-48939</guid>
		<description>can u please provide a link that shows a precompiled ffmpeg with lame support urgent please.</description>
		<content:encoded><![CDATA[<p><!-- google_ad_section_start -->can u please provide a link that shows a precompiled ffmpeg with lame support urgent please.<!-- google_ad_section_end --></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nixan</title>
		<link>http://bogdan.org.ua/2007/10/25/using-libmp3lame-enabled-ffmpeg-on-shared-hosting.html/comment-page-1#comment-48938</link>
		<dc:creator>nixan</dc:creator>
		<pubDate>Sat, 02 Feb 2008 08:38:43 +0000</pubDate>
		<guid isPermaLink="false">http://bogdan.org.ua/2007/10/25/using-libmp3lame-enabled-ffmpeg-on-shared-hosting.html#comment-48938</guid>
		<description>i too have the same problem,.
libmp3lame.so file is not get loaded.
i am also working in a shared hosting envirnment.
i copied ffmpeg with libmp3lame support and i am getting the error libmp3lame.so is not available.
is there any way to get audio for ffmpeg with libmp3lame support</description>
		<content:encoded><![CDATA[<p><!-- google_ad_section_start -->i too have the same problem,.<br />
libmp3lame.so file is not get loaded.<br />
i am also working in a shared hosting envirnment.<br />
i copied ffmpeg with libmp3lame support and i am getting the error libmp3lame.so is not available.<br />
is there any way to get audio for ffmpeg with libmp3lame support<!-- google_ad_section_end --></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tyler</title>
		<link>http://bogdan.org.ua/2007/10/25/using-libmp3lame-enabled-ffmpeg-on-shared-hosting.html/comment-page-1#comment-32973</link>
		<dc:creator>tyler</dc:creator>
		<pubDate>Wed, 31 Oct 2007 07:30:30 +0000</pubDate>
		<guid isPermaLink="false">http://bogdan.org.ua/2007/10/25/using-libmp3lame-enabled-ffmpeg-on-shared-hosting.html#comment-32973</guid>
		<description>anyone can guide me on how to install lame on a shared host?
i do not have root or ssh access.

i managed to get the older compiled of ffmpeg without lame to work on godaddy

now trying to get it working with lame
thank you</description>
		<content:encoded><![CDATA[<p><!-- google_ad_section_start -->anyone can guide me on how to install lame on a shared host?<br />
i do not have root or ssh access.</p>
<p>i managed to get the older compiled of ffmpeg without lame to work on godaddy</p>
<p>now trying to get it working with lame<br />
thank you<!-- google_ad_section_end --></p>
]]></content:encoded>
	</item>
</channel>
</rss>
