how to increase the view count of your video on Youtube

This is an apocalypse!

Here is how you can increase the view count of your videos on youtube.

I will show you a number of different methods to do this .


1. The scripting way.

 In this method, you wil be using one of the many scripting languages such as PERL , Python , PHP, JAVA to write a piece of code that opens the url to your video again and again and then closes it down.
When this piece of code is put inside a loop, the video site thinks that the video has been video numerous times(actually its equal to the number of times the loop is executed).

Some sample scripts that i found on another blog are as below:

{All the stuff after this line is from the blog icfun}


Bot to increase myspace video view count. Sample Perl/Python/PHP code

Suppose you have a video at myspace, and now you want to increase the video view count for that video. How to do that? As you know myspace is always using the XML service to handle most of the things. When the browser loaded, that XML service called to increase the view count. Suppose you have uploaded a video linked at http://vids.myspace.com/index.cfm?fuseaction=vids.individual&VideoID=2841784. Just extract the video ID. and use the below Perl script to increase the video view count.http://vids.myspace.com/index.cfm?fuseaction=vids.individual&VideoID=2841784. Just extract the video ID. and use the below Perl script to increase the video view count.

-------------------------------------------------------
I'm giving an example of perl script to increase the video view count. Just put your perl code under a loop according to your desired number.


use LWP::UserAgent;
use HTTP::Request::Common;

my $id = 2841784;
my $url = "http://mediaservices.myspace.com/services/media/video.asmx/IncrementVideoPlays?videoID=$id&token=29254735542157_ec2&versionID=1";
my $ua = LWP::UserAgent->new;
$ua->agent('Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.1) Gecko/2006120418 Firefox/2.0.0.1');
my $req = HTTP::Request->new(GET => $url);
$req->content_type('application/x-www-form-urlencoded');
my $res = $ua->request($req);


Thats it. If you want to add proxy support with your script. Just add this inside your script.


my $ua = LWP::UserAgent->new;
my $proxy_url = "http://78.29.232.10:8080/";##change your ip and port
$ua->proxy('http', $proxy_url);


-------------------------------------------------------
If you don't know perl scripting. Here is the php code to crack. Just use the curl. Use the below code inside your loop to increase the video view count. You can use proxy support with curl. Just check the proxy of your own. If you don't know hot to set proxy with curl. I'll help.


$id = 2841784;
$url = "http://mediaservices.myspace.com/services/media/video.asmx/IncrementVideoPlays?videoID=$id&token=29254735542157_ec2&versionID=1";

$ch = curl_init();
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); ## return the content into a variable
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_TIMEOUT, 20);
curl_setopt ($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.11) Gecko/20071127 Firefox/2.0.0.11');
$content = curl_exec ($ch);
curl_close ($ch);


Now you don't know curl, or not interested, or not exist with your apache. Then more simpler code. Just use inside your loop to increase the video view count. Only drawback of this is, you can't add any proxy with this function.


$id = 2841784;
$url = "http://mediaservices.myspace.com/services/media/video.asmx/IncrementVideoPlays?videoID=$id&token=29254735542157_ec2&versionID=1";
file_get_contents($url);


-------------------------------------------------------
For python lovers, here is the below code to use. Just use the code inside your loop. If you need more help on python, just look at http://love-python.blogspot.com/ This guy is the best in python so his blog. Ask him for more help on python.


import urllib2

id = "2841784";
url = "http://mediaservices.myspace.com/services/media/video.asmx/IncrementVideoPlays?videoID="+id+"&token=29254735542157_ec2&versionID=1";
opener = urllib2.build_opener()
opener.addheaders = [('User-agent', 'Mozilla/5.0')]
usock = opener.open(url)
url = usock.geturl()
data = usock.read()
usock.close()


Thats it friends, If get compile error or any thing. just kick me, i'll fix for you guys soon of my best.


{end of stuff from the blog icfun. Whatever follows is my stuff}


That is for scripting.  So all you need to know is to run a script that can in turn fool the servers into believing that there have been numerous users accessing it.
YouTube seems to have learned of this technique and now monitors an ip address. If the same ip generates too many view; it  will not increment the video views.
A work around for this would be to use a proxy to show that the video was accessed from a different location on earth!



2.Without all the scripting and fuss

This is the technique that is easiest to use. There are some enterprising people who have created softwares to increase the numbers of  views of your video on YouTube. All you have to do is to download the software and install it. You can set the number of times your video  has to be viewed. You can also ask it to use a pre-defined proxy list. Simply hit start and lo! the number of views will begin to increase. The name of the software is TubeIncreaser

Here is the link to the software

http://www.tubeincreaser.com

It is a shareware which can be used for 40 minutes for free. This translates to around a 1000 views. The instructions for using the software can be found inside it or on the website above.

The software costs 100$ and it has already been cracked by the pirates.




This more or less summarizes the methods available to increase the number of views of you video

 
Blogged with the Flock Browser

No comments:

Contributors