August 5, 2010
Clive is very useful commandline utility to extract video from video websites like youtube.com and vimeo.com. The recent update to youtube url is causing clive to fail for any youtube url, giving unknown http/404 errors. Although the upstream is fixed the ubuntu package is still not updated with the same version i.e as of this writing clive_2.2.12-1.
In the meantime you can download the debian package for sid from here.
1 Comment |
debian, ubuntu, youtube | Tagged: clive |
Permalink
Posted by Ajo Paul
May 31, 2010
To use the Google Webmaster Tools for your blog, you must first add your blog and allow it to be self verified. This way you tell google, that this ‘site’ is indeed yours.
For a blogger account, the help is given here. If you choose the meta tag verification method for your blogspot blogs, here are the steps to get it verified.
Open your dashboard by visiting blogger.com. Proceed to Settings > Layout > Edit HTML > EDIT Template.
In the code provided copy the <meta> content you picked up from the google’s webmaster tools page. After saving the template, proceed to webmaster page and click on verfiy.
Also to update the sitemap url, proceed to http://yourblog.com/robots.txt copy the sitemap url and update it under Webmaster’s sitemap section.
2 Comments |
google | Tagged: blogger, webmaster |
Permalink
Posted by Ajo Paul
May 27, 2009
New in gmail labs allows you to preview your inbox when gmail is loading. Useful, if you have a little slow connection. Your anxiety of which mails you are about to open will be served too.:) Just goto gmail -> settings – > labs look for inbox preview enable it, close the browser and relogin again.
http://gmailblog.blogspot.com/2009/05/new-in-labs-inbox-preview.html

Leave a Comment » |
google | Tagged: gmail |
Permalink
Posted by Ajo Paul
January 24, 2007
Recently I found a fantastic python script do download videos from youtube.com. http://www.arrakis.es/~rggi3/youtube-dl/
You just need to pass the url of the video like this
$youtube-dl -t http://youtube.com/watch?v=LNY7Lau0sJw
Below is a script which can download the videos based on your search results on youtube.com.
Suppose you make a search as Shilpa Shetty Big Brother
and you get a results page, now save this page as say results.html
Now put the below give script into a file called as youtube_download.sh and run it from the directory u saved results.html
#script to download vids from www.youtube.com
#! /bin/sh
if [ $# -lt 1 ]; then
echo "Usage: $0 filename.html |which has links from youtube.com search results"
echo "-Ajo Paul http://ajopaul.wordpress.com"
exit 1
fi
watchlink=""
for i in `cat $1 | grep "watch?" | cut -d '"' -f 2`
do
#watchlink="http://www.youtube.com"$i
if [ "$watchlink" != "$i" ]; then
echo "*********Now Downloading $i **********"
# youtube-dl -t $i 2>&1;
watchlink=$i
fi
done
echo "Done!"
echo "-Ajo Paul http://ajopaul.wordpress.com"
You can also put this script as a cronjob, but before that you must download youtube-dl and put in anywhere in your $PATH.
2 Comments |
linux, ubuntu, youtube | Tagged: linux, youtube |
Permalink
Posted by Ajo Paul