<?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>SupportSages &#187; Clipshare</title>
	<atom:link href="http://www.supportsages.com/blog/tag/clipshare/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.supportsages.com/blog</link>
	<description>Technical Support and Server Management : Musings in the fox hole.</description>
	<lastBuildDate>Thu, 05 Jan 2012 03:05:11 +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>How would I checkout a particular version from SVN</title>
		<link>http://www.supportsages.com/blog/2009/04/how-would-i-checkout-a-particular-version-from-svn/</link>
		<comments>http://www.supportsages.com/blog/2009/04/how-would-i-checkout-a-particular-version-from-svn/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 12:59:18 +0000</pubDate>
		<dc:creator>Jince</dc:creator>
				<category><![CDATA[Howtos]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[checkout]]></category>
		<category><![CDATA[Clipshare]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://www.supportsages.com/blog/?p=97</guid>
		<description><![CDATA[I needed this, since XVID and JPEG was not getting enabled in Clipshare. Infact they were not getting linked in the mencoder or mplayer. And when checked the FOSS.IN award winning script ffmpeginstaller by Master Sherin (who is an expert in kungfoo), I saw that is uses ffmpeg-SVN-r14473.tar.gz. So decided to use that.

But ffmpeg-SVN-r14473.tar.gz was no were available. And this is how I got it.

<blockquote>mkdir /root/ssages/ffmpeg-SVN
svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk/ ffmpeg -r14473</blockquote>

And that fetched me the 14473 version of ffmpeg. 
]]></description>
			<content:encoded><![CDATA[<p>I needed this, since XVID and JPEG was not getting enabled in Clipshare. Infact they were not getting linked in the mencoder or mplayer. And when checked the FOSS.IN award winning script ffmpeginstaller by Master Sherin (who is an expert in kungfoo), I saw that is uses ffmpeg-SVN-r14473.tar.gz. So decided to use that.</p>
<p>But ffmpeg-SVN-r14473.tar.gz was no were available. And this is how I got it.</p>
<blockquote><p>mkdir /root/ssages/ffmpeg-SVN<br />
svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk/ ffmpeg -r14473</p></blockquote>
<p>And that fetched me the 14473 version of ffmpeg. </p>
<div class="tweetthis" style="text-align:left;"><p> <a  class="tt" href="http://twitter.com/home/?status=How+would+I+checkout+a+particular+version+from+SVN+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F97" title="Post to Twitter"><img class="nothumb" src="http://www.supportsages.com/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a  class="tt" href="http://twitter.com/home/?status=How+would+I+checkout+a+particular+version+from+SVN+http%3A%2F%2Fwww.supportsages.com%2Fblog%2F97" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.supportsages.com/blog/2009/04/how-would-i-checkout-a-particular-version-from-svn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>while installing libx264 for mp4 support, /usr/bin/ld: cannot find -lgpac_static</title>
		<link>http://www.supportsages.com/blog/2009/04/while-installing-libx264-for-mp4-support-usrbinld-cannot-find-lgpac_static/</link>
		<comments>http://www.supportsages.com/blog/2009/04/while-installing-libx264-for-mp4-support-usrbinld-cannot-find-lgpac_static/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 11:13:10 +0000</pubDate>
		<dc:creator>George</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Snippets]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Clipshare]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[libx264]]></category>
		<category><![CDATA[mplayer]]></category>

		<guid isPermaLink="false">http://www.supportsages.com/blog/?p=92</guid>
		<description><![CDATA[While installing, libx264 with mp4 support, we hit this error.

<blockquote>/usr/bin/ld: cannot find -lgpac_static
collect2: ld returned 1 exit status
make: *** [libx264.so.60] Error 1</blockquote>

To solve it,

<blockquote>Install libgpac (rpm or from source)
ranlib /usr/lib/libgpac_static.a
ldconfig -v</blockquote>

]]></description>
			<content:encoded><![CDATA[<p>While installing, libx264 with mp4 support, we hit this error.</p>
<blockquote><p>/usr/bin/ld: cannot find -lgpac_static<br />
collect2: ld returned 1 exit status<br />
make: *** [libx264.so.60] Error 1</p></blockquote>
<p>To solve it,</p>
<blockquote><p>Install libgpac (rpm or from source)<br />
ranlib /usr/lib/libgpac_static.a<br />
ldconfig -v</p></blockquote>
<div class="tweetthis" style="text-align:left;"><p> <a  class="tt" href="http://twitter.com/home/?status=while+installing+libx264+for+mp4+support%2C+%2Fusr%2Fbin%2Fld%3A+cannot+find+-lgpac_static++http%3A%2F%2Fwww.supportsages.com%2Fblog%2F92" title="Post to Twitter"><img class="nothumb" src="http://www.supportsages.com/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a  class="tt" href="http://twitter.com/home/?status=while+installing+libx264+for+mp4+support%2C+%2Fusr%2Fbin%2Fld%3A+cannot+find+-lgpac_static++http%3A%2F%2Fwww.supportsages.com%2Fblog%2F92" title="Post to Twitter">Tweet This Post</a></p></div>]]></content:encoded>
			<wfw:commentRss>http://www.supportsages.com/blog/2009/04/while-installing-libx264-for-mp4-support-usrbinld-cannot-find-lgpac_static/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

