<?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>YourSearchBuddy</title>
	<atom:link href="http://www.yoursearchbuddy.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.yoursearchbuddy.com</link>
	<description>your search ends here</description>
	<lastBuildDate>Sat, 04 Sep 2010 08:00:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Partly Cloudy</title>
		<link>http://www.yoursearchbuddy.com/partly-cloudy-pixar-disney</link>
		<comments>http://www.yoursearchbuddy.com/partly-cloudy-pixar-disney#comments</comments>
		<pubDate>Fri, 03 Sep 2010 19:45:47 +0000</pubDate>
		<dc:creator>silly</dc:creator>
				<category><![CDATA[Video]]></category>
		<category><![CDATA[disney]]></category>
		<category><![CDATA[partly cloud]]></category>
		<category><![CDATA[pixar]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=1219</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object width="540" height="385"><param name="movie" value="http://www.youtube.com/v/V9SfMPtsCsw?fs=1&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/V9SfMPtsCsw?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="540" height="385"></embed></object></p>
<img src="http://www.yoursearchbuddy.com/?ak_action=api_record_view&id=1219&type=feed" alt=" Partly Cloudy"  title="Partly Cloudy" />]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/partly-cloudy-pixar-disney/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>./sqlplus: error while loading shared libraries: libsqlplus.so</title>
		<link>http://www.yoursearchbuddy.com/sqlplus-error-loading-shared-libraries-libsqlplusso</link>
		<comments>http://www.yoursearchbuddy.com/sqlplus-error-loading-shared-libraries-libsqlplusso#comments</comments>
		<pubDate>Fri, 03 Sep 2010 18:57:47 +0000</pubDate>
		<dc:creator>techno</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[lbsqlplus.so]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[sqlplus]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=1210</guid>
		<description><![CDATA[While connecting to Oracle database using sqlplus, you can get an error (./sqlplus: error while loading shared libraries: libsqlplus.so). There can be various reasons for this issue.
After you unzip all the client files, make sure you set the environments variable correctly in your bash file. Generally its your .bashrc file:

ORACLE_HOME=/location of your sqlplus client directory

//In [...]]]></description>
			<content:encoded><![CDATA[<p>While connecting to Oracle database using sqlplus, you can get an error (<span style="color:red;">./sqlplus: error while loading shared libraries: libsqlplus.so</span>). There can be various reasons for this issue.</p>
<p>After you unzip all the client files, make sure you set the environments variable correctly in your bash file. Generally its your .bashrc file:</p>
<pre>
ORACLE_HOME=/location of your sqlplus client directory

//In my case i installed under /opt directory.
//By default it makes the directory as instantclient_11_2
// (I installed Oracle 11g r2).
//Then i did <strong>mv instantclient_11_2 oracle</strong>

Thus now:

ORACLE_HOME= /opt/oracle

//Add $ORACLE_HOME to PATH

PATH=.:$ORACLE_HOME
export PATH
export ORACLE_BASE=/opt
export ORACLE_HOME
export LD_LIBRARY_PATH=$ORACLE_HOME:$ORACLE_HOME/lib
</pre>
<p>This should solve your issue, however after this you might again get error: <span style="color:red;">sqlplus: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory</span></p>
<pre>
To resolve this error you need to install libaio1 package:  

<strong>(libaio1 - Linux kernel AIO access library - shared library)</strong>

# apt-get install libaio1
</pre>
<p>After the installation, you can connec to to sqlplus:</p>
<pre>
# ./sqlplus

SQL*Plus: Release 11.2.0.1.0 Production on Fri Sep 3 11:56:56 2010

Copyright (c) 1982, 2009, Oracle.  All rights reserved.

Enter user-name: 
</pre>
<img src="http://www.yoursearchbuddy.com/?ak_action=api_record_view&id=1210&type=feed" alt=" ./sqlplus: error while loading shared libraries: libsqlplus.so"  title="./sqlplus: error while loading shared libraries: libsqlplus.so" />]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/sqlplus-error-loading-shared-libraries-libsqlplusso/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oneway calls in WCF service</title>
		<link>http://www.yoursearchbuddy.com/oneway-calls-wcf-service</link>
		<comments>http://www.yoursearchbuddy.com/oneway-calls-wcf-service#comments</comments>
		<pubDate>Fri, 03 Sep 2010 08:05:18 +0000</pubDate>
		<dc:creator>lokeshlal</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[TipnTricks]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[WCF]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=1208</guid>
		<description><![CDATA[There is a known bug in oneway calls in WCF service, that you are not allowed to close the channel untill the call is completed.
that is you are doing some thing like this

Client c = new Client();
c.open();
c.SomeMethod(); //one way method
c.Close(); //You will have to wait here untill the calls gets completed

so in this case you [...]]]></description>
			<content:encoded><![CDATA[<p>There is a known bug in oneway calls in WCF service, that you are not allowed to close the channel untill the call is completed.</p>
<p>that is you are doing some thing like this</p>
<pre>
Client c = new Client();
c.open();
c.SomeMethod(); //one way method
c.Close(); //You will have to wait here untill the calls gets completed
</pre>
<p>so in this case you will need to either hook the close fiunction using some delegate or close the connection in the end of the whole functionality.</p>
<img src="http://www.yoursearchbuddy.com/?ak_action=api_record_view&id=1208&type=feed" alt=" Oneway calls in WCF service"  title="Oneway calls in WCF service" />]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/oneway-calls-wcf-service/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Custom Fields for post thumbnail &#8211; Wordpress</title>
		<link>http://www.yoursearchbuddy.com/custom-fields-post-thumbnail-wordpress</link>
		<comments>http://www.yoursearchbuddy.com/custom-fields-post-thumbnail-wordpress#comments</comments>
		<pubDate>Fri, 03 Sep 2010 07:40:33 +0000</pubDate>
		<dc:creator>wptricks</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[TipnTricks]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress hacks]]></category>
		<category><![CDATA[wordpress tips]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=1190</guid>
		<description><![CDATA[There are couple of ways you can show thumbnail of a post in your Wordpress blog. 
First thing you need to do is create a custom field under add post section with any name you wish, but let&#8217;s say you name it as &#8220;Thumbnail&#8221;.
Now in the value put the image location (http://www.example.com/imageFolder/thumbnail.jpg). So now you [...]]]></description>
			<content:encoded><![CDATA[<p>There are couple of ways you can show thumbnail of a post in your Wordpress blog. </p>
<p>First thing you need to do is create a custom field under add post section with any name you wish, but let&#8217;s say you name it as &#8220;Thumbnail&#8221;.</p>
<p>Now in the value put the image location (http://www.example.com/imageFolder/thumbnail.jpg). So now you have what you need to show thumbnail for your post.</p>
<p>Do this in you page where you wish to show posts and their thumbnail:</p>
<pre class="brush: php;">
$img = get_post_custom_values(&quot;Thumbnail&quot;);
if($img[0]){
	echo &quot;&lt;img src='$img[0]' height='75' width='75' alt='$post-&gt;post_title'  /&gt;
                $post-&gt;post_title&quot;;
}
</pre>
<p>You can show multiple posts with thumbnail. We will take my earlier post as reference <a href="http://www.yoursearchbuddy.com/post-category-wordpress">http://www.yoursearchbuddy.com/post-category-wordpress</a> :</p>
<pre class="brush: php;">
&lt;table&gt;
	&lt;?php $recent = new WP_Query(&quot;cat=categoryId&amp;showposts=numberOfPost&quot;);
	      while($recent-&gt;have_posts()) : $recent-&gt;the_post();
	?&gt;
		&lt;tr&gt;
			&lt;?php
				$img = get_post_custom_values(&quot;Thumbnail&quot;);
				if($img[0]){
					echo &quot;&lt;td&gt;&lt;img src='$img[0]'  alt='$post-&gt;post_title'
						  title='$post-&gt;post_title' /&gt;&lt;/td&gt;&quot;;
				}
			?&gt;
			&lt;td&gt;
				&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot;&gt;
					&lt;?php the_title(); ?&gt;
				&lt;/a&gt;
			&lt;/td&gt;
		&lt;/tr&gt;
		&lt;?php endwhile; ?&gt;
&lt;/table&gt;
</pre>
<img src="http://www.yoursearchbuddy.com/?ak_action=api_record_view&id=1190&type=feed" alt=" Using Custom Fields for post thumbnail   Wordpress"  title="Using Custom Fields for post thumbnail   Wordpress" />]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/custom-fields-post-thumbnail-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>See post from any category  &#8211; Wordpress</title>
		<link>http://www.yoursearchbuddy.com/post-category-wordpress</link>
		<comments>http://www.yoursearchbuddy.com/post-category-wordpress#comments</comments>
		<pubDate>Fri, 03 Sep 2010 07:05:32 +0000</pubDate>
		<dc:creator>wptricks</dc:creator>
				<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[TipnTricks]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress hacks]]></category>
		<category><![CDATA[wordpress tips]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=1167</guid>
		<description><![CDATA[Here is how to show posts from any particular category in Wordpress:

&#60;ul&#62;
&#60; ?php $recent = new WP_Query(&#34;cat=categoryId&#38;showposts=postNum&#34;); while($recent-&#62;have_posts()) : $recent-&#62;the_post();?&#62;
&#60; ?php
	echo &#34;&#60;li&#62;&#34;;
		&#60;a href=&#34;&#60;?php the_permalink() ?&#62;&#34; rel=&#34;bookmark&#34;&#62;
			&#60; ?php the_title(); ?&#62;
		&#60;/a&#62;
	echo &#34;&#34;;
&#60; ?php endwhile; ?&#62;
&#60;/ul&#62;

]]></description>
			<content:encoded><![CDATA[<p>Here is how to show posts from any particular category in Wordpress:</p>
<pre class="brush: php;">
&lt;ul&gt;
&lt; ?php $recent = new WP_Query(&quot;cat=categoryId&amp;showposts=postNum&quot;); while($recent-&gt;have_posts()) : $recent-&gt;the_post();?&gt;
&lt; ?php
	echo &quot;&lt;li&gt;&quot;;
		&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot;&gt;
			&lt; ?php the_title(); ?&gt;
		&lt;/a&gt;
	echo &quot;&quot;;
&lt; ?php endwhile; ?&gt;
&lt;/ul&gt;
</pre>
<img src="http://www.yoursearchbuddy.com/?ak_action=api_record_view&id=1167&type=feed" alt=" See post from any category    Wordpress"  title="See post from any category    Wordpress" />]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/post-category-wordpress/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Get post author name &#8211; Wordpress</title>
		<link>http://www.yoursearchbuddy.com/username-post-wordpress</link>
		<comments>http://www.yoursearchbuddy.com/username-post-wordpress#comments</comments>
		<pubDate>Fri, 03 Sep 2010 06:51:34 +0000</pubDate>
		<dc:creator>wptricks</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[TipnTricks]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress hacks]]></category>
		<category><![CDATA[wordpress tips]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=1161</guid>
		<description><![CDATA[While working with wordpress, you might want to do something with the post author. Here is how to get the author name:

$postAuthor = $post->post_author;
//$postAuthor have the Author Id now

$curauth    = get_userdata(intval($postAuthor));
$authName = $curauth->user_login;

//$authName is the author name of the post

]]></description>
			<content:encoded><![CDATA[<p>While working with wordpress, you might want to do something with the post author. Here is how to get the author name:</p>
<pre>
$postAuthor = $post->post_author;
//$postAuthor have the Author Id now

$curauth    = get_userdata(intval($postAuthor));
$authName = $curauth->user_login;

//$authName is the author name of the post
</pre>
<img src="http://www.yoursearchbuddy.com/?ak_action=api_record_view&id=1161&type=feed" alt=" Get post author name   Wordpress"  title="Get post author name   Wordpress" />]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/username-post-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Indian Panga League Commercial</title>
		<link>http://www.yoursearchbuddy.com/indian-panga-league-commercial-2</link>
		<comments>http://www.yoursearchbuddy.com/indian-panga-league-commercial-2#comments</comments>
		<pubDate>Fri, 03 Sep 2010 02:16:39 +0000</pubDate>
		<dc:creator>vishal</dc:creator>
				<category><![CDATA[Comedy]]></category>
		<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Indian Panga League Commercial]]></category>
		<category><![CDATA[ipl]]></category>
		<category><![CDATA[IPL videos]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=1174</guid>
		<description><![CDATA[Just loved it&#8230;..awesome&#8230;..just hilarious  



]]></description>
			<content:encoded><![CDATA[<p>Just loved it&#8230;..awesome&#8230;..just hilarious <img src='http://www.yoursearchbuddy.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' title="Indian Panga League Commercial" /> </p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/UHopkzltHRw?fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/UHopkzltHRw?fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/Ly4sRTCes0Y?fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Ly4sRTCes0Y?fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/JzsgY5ujsh4?fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/JzsgY5ujsh4?fs=1" type="application/x-shockwave-flash" width="500" height="400" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<img src="http://www.yoursearchbuddy.com/?ak_action=api_record_view&id=1174&type=feed" alt=" Indian Panga League Commercial"  title="Indian Panga League Commercial" />]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/indian-panga-league-commercial-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using With (nolock) in SQL Server</title>
		<link>http://www.yoursearchbuddy.com/nolock-sql-server</link>
		<comments>http://www.yoursearchbuddy.com/nolock-sql-server#comments</comments>
		<pubDate>Wed, 01 Sep 2010 07:10:34 +0000</pubDate>
		<dc:creator>lokeshlal</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[NoLock]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=1163</guid>
		<description><![CDATA[Using WITH (NOLOCK) in sql server definitely help in improving the performance of the SQL queries, as it tells the SQL Server that ignore any lock on the table and give me whatever data is available in the tables.
So if you are updating a table, and at the same time another T-SQL is issued to [...]]]></description>
			<content:encoded><![CDATA[<p>Using WITH (NOLOCK) in sql server definitely help in improving the performance of the SQL queries, as it tells the SQL Server that ignore any lock on the table and give me whatever data is available in the tables.</p>
<p>So if you are updating a table, and at the same time another T-SQL is issued to query the table with nolock as hint, then it will ignore the updates and give you the data which is there in the server.</p>
<p>This can be harmful if you are working on some sensitive data, however if you are working on some table say </p>
<p>
SELECT COUNT(1) FROM Table1 WITH (NOLOCK)</p>
<p>Then it should not matter unless a huge number of records gets deleted or inserted in the table.</p>
<img src="http://www.yoursearchbuddy.com/?ak_action=api_record_view&id=1163&type=feed" alt=" Using With (nolock) in SQL Server"  title="Using With (nolock) in SQL Server" />]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/nolock-sql-server/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Select or delete duplicate rows from a table</title>
		<link>http://www.yoursearchbuddy.com/select-delete-duplicate-rows-table</link>
		<comments>http://www.yoursearchbuddy.com/select-delete-duplicate-rows-table#comments</comments>
		<pubDate>Tue, 31 Aug 2010 07:21:48 +0000</pubDate>
		<dc:creator>techno</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[Information]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[TipnTricks]]></category>
		<category><![CDATA[delete duplicate]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[select duplicate]]></category>
		<category><![CDATA[sql server]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=1152</guid>
		<description><![CDATA[When it comes to database, there are various ways you can select or delete the duplicate rows from a table.
Lets first focus on selecting the duplicate rows:

This can be done in various ways:

Solution 1:

select columnName, count(columnName) as cnt
from tableName
group by columnName
where cnt>1

//columnName is the column that you are checking for duplicates

Solution 2:

select columnName , count(columnName [...]]]></description>
			<content:encoded><![CDATA[<p>When it comes to database, there are various ways you can select or delete the duplicate rows from a table.</p>
<p><strong>Lets first focus on selecting the duplicate rows:</strong></p>
<pre>
<strong>This can be done in various ways:</strong>

<strong>Solution 1:</strong>

select columnName, count(columnName) as cnt
from tableName
group by columnName
where cnt>1

//columnName is the column that you are checking for duplicates

<strong>Solution 2:</strong>

select columnName , count(columnName ) as cnt
from tableName
group by columnName
order by cnt desc

<strong>Solution 3:</strong>

select columnName
from tableName
group by columnName
having count(*) > 1
</pre>
<p><strong>Now lets see how can we delete the duplicate rows from a table:</strong></p>
<pre>
<strong>Solution 1:</strong>

//In this solution we create a new table, with only distinct rows and then
deleting the old table and changing the new table name to the old table
name. However, in this way the primary key gets dropped from the table:

<strong>Step 1:</strong>

create table new_table as
select * from old_table where 1 group by [column to remove duplicates by];

Step 2: delete delete the old table

drop table old_table;

Step 3: rename the new_table to the name of the old_table

rename table new_table to old_table;

<strong>Solution 2:</strong>

// This solution doesn't require what all we did and restores
the primary keys

ALTER IGNORE TABLE tableName ADD UNIQUE INDEX(columnName);

If you wish to delete duplicates based on more than one index do:

ALTER IGNORE TABLE tableName ADD UNIQUE INDEX(columnName1,columnName2);
</pre>
<img src="http://www.yoursearchbuddy.com/?ak_action=api_record_view&id=1152&type=feed" alt=" Select or delete duplicate rows from a table"  title="Select or delete duplicate rows from a table" />]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/select-delete-duplicate-rows-table/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding subtitles to a movie</title>
		<link>http://www.yoursearchbuddy.com/adding-subtitles-movie</link>
		<comments>http://www.yoursearchbuddy.com/adding-subtitles-movie#comments</comments>
		<pubDate>Tue, 31 Aug 2010 03:02:46 +0000</pubDate>
		<dc:creator>lokeshlal</dc:creator>
				<category><![CDATA[Information]]></category>
		<category><![CDATA[TipnTricks]]></category>
		<category><![CDATA[movie]]></category>
		<category><![CDATA[subtitle]]></category>

		<guid isPermaLink="false">http://www.yoursearchbuddy.com/?p=1146</guid>
		<description><![CDATA[If you are playing a movie in VLC player and want to add subtitles to the movie by your own, then what all you need to do is create &#8220;.srt&#8221; file.
So, if your movie file name is abc.avi, then create another file abc.srt and open the file in notepad or any text editor and content [...]]]></description>
			<content:encoded><![CDATA[<p>If you are playing a movie in VLC player and want to add subtitles to the movie by your own, then what all you need to do is create &#8220;.srt&#8221; file.</p>
<p>So, if your movie file name is abc.avi, then create another file abc.srt and open the file in notepad or any text editor and content should be like</p>
<pre>
0
00:00:34,133 --&gt; 00:00:37,159
<i>[man] I am going</i>
<i>to tell you a story now.</i>

1
00:00:37,236 --&gt; 00:00:39,727
<i>But as any good storyteller knows,</i>
</pre>
<p>This will show line</p>
<pre>
[man] I am going
to tell you a story now.
</pre>
<p>From 00:00:34,133 to 00:00:37,159</p>
<p>and is at index 0, that is first subtitle in the movie.</p>
<p>Have fun.</p>
<img src="http://www.yoursearchbuddy.com/?ak_action=api_record_view&id=1146&type=feed" alt=" Adding subtitles to a movie"  title="Adding subtitles to a movie" />]]></content:encoded>
			<wfw:commentRss>http://www.yoursearchbuddy.com/adding-subtitles-movie/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
