<?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>Sadiq Blog &#187; Personal</title>
	<atom:link href="http://www.sadiq.in/category/personal/feed" rel="self" type="application/rss+xml" />
	<link>http://www.sadiq.in</link>
	<description>My Personal Blog</description>
	<lastBuildDate>Thu, 14 Apr 2011 20:01:49 +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>Installing DLNA Media Server For Mac &amp; Windows – Stream Media to PS3, Android thru Wi-Fi</title>
		<link>http://www.sadiq.in/applications/installing-dlna-media-server-for-mac-windows-%e2%80%93-stream-media-to-ps3-android-thru-wi-fi</link>
		<comments>http://www.sadiq.in/applications/installing-dlna-media-server-for-mac-windows-%e2%80%93-stream-media-to-ps3-android-thru-wi-fi#comments</comments>
		<pubDate>Sat, 18 Sep 2010 09:01:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[DLNA Media Server]]></category>
		<category><![CDATA[Media Streaming]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://sadiq.in/?p=77</guid>
		<description><![CDATA[I bought a Samsung Galaxy S Mobile last week. Since then i was playing around with it. When I saw my iPad friends using Air Video to stream files from Mac to iPad in Wi-Fi i thought may be have to wait until they release for Android platform. Then i remembered i saw a allShare [...]]]></description>
			<content:encoded><![CDATA[<p>I bought a <a href="http://galaxys.samsungmobile.com/">Samsung Galaxy S</a> Mobile last week. Since then i was playing around with it. When I saw my iPad friends using <a href="http://www.inmethod.com/air-video/index.html">Air Video</a> to stream files from Mac to iPad in Wi-Fi i thought may be have to wait until they release for Android platform. Then i remembered i saw a allShare application in Samsung which showed it can play from server..So is that it?? Googled for it and found that its wat i was looking for.. its called <a href="http://en.wikipedia.org/wiki/Digital_Living_Network_Alliance">DLNA</a>. the service which can stream media from the compatible DLNA devices otherwise called as<a href="http://en.wikipedia.org/wiki/Universal_Plug_and_Play"> uPnP Technology</a>. Samsung Galaxy S is DLNA certifed by default.Yupee.That was superb.</p>
<p>So wats next.. Setting up my mac.. Thats where i told to myself i should have been using Windows 7. Yeah it comes with built-in DLNA you dont have to install any specific softwares for that, Windows Media Centre itself is more than enough. Check <a href="http://blogs.msdn.com/b/e7/archive/2009/05/12/media-streaming-with-windows-7.aspx">MSDN Blog</a> for how to enable DLNA in Windows 7.</p>
<p>Good luck with it but am a mac user i have to find a solution <img src='http://www.sadiq.in/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  . Again Google. Got so many softwares for mac still in infancy state and nothing had a good review. so it is our choice to select. There are some paid softwares like <a href="http://www.nullriver.com/products/medialink">Nullriver MediaLink</a>, <a href="http://www.elgato.com/elgato/na/mainmenu/products/software/EyeConnect.en.html">Eyeconnect</a>. But started using Android, why dont give a try for a Open Source.? Then i landed on something called <a href="http://www.serviio.org/download">Serviio</a> and <a href="http://fuppes.ulrich-voelkel.de/">Fuppes</a>.I never got Serviio to work . I needed Java 6 for serviio to work unfortunately Leopard doesnt have Java 6. So I proceeded with Fuppes. So here is how to install Fuppes on mac. Though you can run the windows version using <a href="http://winebottler.kronenberg.org/">wineBottler</a> but its good to go with the native always. Just follow these steps to install.</p>
<ul>
<li>
Install Xcode, It will either be on a seperate CD or included on the Mac OS DVD.
</li>
<li>
Download MacPorts from http:www.macports.org and install it.
</li>
<li>
To install Fuppes You need to install the dependent libraries first.</p>
<ul>
<li>
Mandatory Packages &#8211; subversion, pkgconfig, pcre, taglib, libxml2
</li>
<li>
Optional Packages &#8211; ffmpeg, simage, imagemagick, lame, libvorbis, flac, mpeg4ip, faad2
</li>
</ul>
</li>
<li>
Install each these packages with the following command.</p>
<p><code>$ sudo port install [packagename]</code>
</li>
<li>
Download Fuppes distribution from the repository.</p>
<p><code>$ svn co https://fuppes.svn.sourceforge.net/svnroot/fuppes/trunk fuppes</code></p>
<p>This will check out the source from SVN to the folder fuppes
</li>
<li>
Now navigate to the folder you checked out Fuppes.</p>
<p><code>$ cd fuppes</code>
</li>
<li>
Execute the following command</p>
<p><code>$ CFLAGS="-I/opt/local/include -L/opt/local/lib" ./configure --enable-libavformat </code></p>
<p>If there is an error for missing packages check the list of dependencies and make sure all of them installed. In case if you have them installed some other than dependencies location Change your PKG_CONFIG_PATH Variable accordingly. ( For me it happened for sqlite3 <img src='http://www.sadiq.in/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )
</li>
<li>
Make the executables</p>
<p><code>$ make </code>
</li>
<li>
Install the built files:</p>
<p><code>$ sudo make install </code>
</li>
<li>
So we are done with installation now. To start service just type</p>
<p><code>$ fuppes</code>
</li>
</ul>
<p>You should see this screen now.</p>
<div id="attachment_78" class="wp-caption aligncenter" style="width: 310px"><a class="nyroModal" rel="same-post-77" title = "Fuppes Success Screen" href="http://sadiq.in/wp-content/uploads/2010/09/Terminal_Fuppes.jpg"><img src="http://sadiq.in/wp-content/uploads/2010/09/Terminal_Fuppes-300x185.jpg" alt="Fuppes Success Screen" title="Fuppes Success Screen" width="300" height="185" class="size-medium wp-image-78" /></a><p class="wp-caption-text">Fuppes Success Screen</p></div>
<p>In case if you see this error message &#8220;Cannot bind to the socket&#8221; ( i did <img src='http://www.sadiq.in/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ) you might be running other uPnP services same as fuppes try quitting that and run the fuppes command again it should work.</p>
<p>The best thing in the Fuppes is you can configure each and everything as per your need with the fuppes.cfg file.</p>
<p>Stop the fuppes when started first time so that it will create you config in the $HOME/.fuppes/fuppes.cfg  with which you can customize everything, <a href="http://fuppes.ulrich-voelkel.de/wiki/index.php?title=Device_specific_settings"> for more information on customizing Fuppes</a>.<br />
fuppes.cfg file by default should be in the home folder of your system inside a hidden folder .fuppes. To see the hidden files in your mac execute these commands</p>
<p><code>$ defaults write com.apple.finder AppleShowAllFiles TRUE<br />
$ killAll Finder</code></p>
<p>To revert things back to normal change True to False and execute again.</p>
<p>So we have now everything configured lets get this thing to work. Open a browser and type the webinterface given while starting the service in my case it was http://192.168.1.6:5044 (Check the screenshot). You will get the options to add your directories. Add them and give some time to index the directories. All set now. Fire up your allShare application in the mobile. Select Play files from server on my phone. In the following screen you will see your mac listed as a server browse through the folders you added and the enjoy the streaming <img src='http://www.sadiq.in/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . For further reference please refer <a href="http://fuppes.ulrich-voelkel.de/wiki/index.php?title=Main_Page">wiki for Fuppes</a>.</p>
<p>If you dont want to go through all these steps check this one <a href="http://tvmobili.com/">TVMobili</a> i found that simple and powerful.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sadiq.in/applications/installing-dlna-media-server-for-mac-windows-%e2%80%93-stream-media-to-ps3-android-thru-wi-fi/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mydubaimetro.com is live..!!! Flip Media&#8217;s Just another contribution to public</title>
		<link>http://www.sadiq.in/around-the-world/mydubaimetro-com-is-live-flip-medias-just-another-contribution-to-public</link>
		<comments>http://www.sadiq.in/around-the-world/mydubaimetro-com-is-live-flip-medias-just-another-contribution-to-public#comments</comments>
		<pubDate>Wed, 09 Sep 2009 14:28:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Around the World]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[community-site]]></category>
		<category><![CDATA[dubai]]></category>
		<category><![CDATA[flipmedia]]></category>
		<category><![CDATA[metro]]></category>
		<category><![CDATA[mydubaimetro]]></category>

		<guid isPermaLink="false">http://sadiq.in/?p=27</guid>
		<description><![CDATA[Dubai , With residents eagerly awaiting the launch of the Dubai Metro, Dubai&#8217;s biggest infrastructure project, Flip Media today unveiled Mydubaimetro.com, a non profit portal designed and developed to provide residents of Dubai with a practical and usable guide to all things related to the Metro. The one stop shop website offers key information and [...]]]></description>
			<content:encoded><![CDATA[<p>Dubai , With residents eagerly awaiting the launch of the Dubai Metro, Dubai&#8217;s biggest infrastructure project, Flip Media today unveiled <a href="http://www.mydubaimetro.com">Mydubaimetro.com</a>, a non profit portal designed and developed to provide residents of Dubai with a practical and usable guide to all things related to the Metro. </p>
<p>The one stop shop website offers key information and helpful tools such as a journey planner and fare calculator, information about each station stop as well as downloadable pocket maps. </p>
<p> “We saw a gap in the market where people, including ourselves, were curious and hungry for more information about the Metro,” said Yousef Tuqan Tuqan, CEO, <a href="http://www.flipcorp.com">Flip Media</a>.</p>
<p><a href="http://sadiq.in/wp-content/uploads/2009/09/My-Dubai-Metro-The-unofficial-Dubai-Metro-community-resource-website.jpg" rel="attachment wp-att-28"><img src="http://sadiq.in/wp-content/uploads/2009/09/My-Dubai-Metro-The-unofficial-Dubai-Metro-community-resource-website.jpg" alt="My Dubai Metro | The unofficial Dubai Metro community resource website" title="My Dubai Metro | The unofficial Dubai Metro community resource website" width="860" height="502" class="aligncenter size-full wp-image-28" /></a></p>
<p>Dinesh Lalvani, Managing Partner of Flip added, &#8220;We’re bringing the best of web and technology to help people discover not only the basic information about the services available, but also help connect with fellow commuters. The idea is to make the metro not just about the destination but also about the journey and experience.” </p>
<p>The community portal gives users to post comments, blog and share photos and useful tips about the metro.  The website is scalable, allowing for the addition of new technology and tools. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.sadiq.in/around-the-world/mydubaimetro-com-is-live-flip-medias-just-another-contribution-to-public/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My step to professional blogging</title>
		<link>http://www.sadiq.in/personal/my-step-to-professional-blogging</link>
		<comments>http://www.sadiq.in/personal/my-step-to-professional-blogging#comments</comments>
		<pubDate>Mon, 13 Oct 2008 21:00:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://sadiq.in/?p=1</guid>
		<description><![CDATA[After trying out so many free blogging options I got really sick and tired of all of them. Now I got my own domain and going start blog all my heart content here. Will update soon with more information in what I do every day. Please drop by and have fun]]></description>
			<content:encoded><![CDATA[<p>After trying out so many free blogging options I got really sick and tired of all of them. Now I got my own domain and going start blog all my heart content here. Will update soon with more information in what I do every day. Please drop by and have fun <img src='http://www.sadiq.in/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.sadiq.in/personal/my-step-to-professional-blogging/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

