Showing posts with label increase number of views of your video. Show all posts
Showing posts with label increase number of views of your video. Show all posts

How to stream videos in your LAN/Wi-fi network uding VLC player

VLC a.k.a Video over LAN player is an amazing little Swiz knife for video playback. The new 0.9 series is terrible as it has a lot of bugs and makes even a simple task such as video streaming a little difficult.
I have used the last stable version of VLC Player 0.8 series for this tutorial. That would be VLC media player 0.8.6i, you can download it directly from this link

http://www.filehippo.com/download_vlc/4395/
(The folks there maintain every version of every free software.)

Not that you have the required stable version of the older beautiful VLC 0.8, your screen should look something like this

Streaming a File on to the Network

click on File-->Open File

  • You will get something like this
  • Use the browse option to find a file that needs to be played on your other computer from the PC.Since this file will be played on another PC, tick the Stream/Save option. You could as well simply follow the graphics.I have uploaded a file called the India moon mission. The field "Customize" will be filled automatically by vlc.

  • Now we come to the toughest part. Setting up the network. A Streaming that takes place to one particular computer is called Unicast, if the streaming is to a number of computers it is a multicast. The ip address assigned for a multicast transmission inside a network is 255.255.255.255 according to the specifications of ip address allotment. Normally we would require only a Unicast. Choose the options as shown. Enter the IP address of the computer to which you want to stream the video. Inside a network it is usually in this range 10.0.0.1 to 10.255.255.255 or 192.168.0.0 to 192.168.255.255, the ip address of the computer can be found by typing ipconfig in the command line of any windows computer.
  • Press OK and lo! you are streaming your first video on the Web/Network. You could have chosen RTP(Realtime Transmission protocol) instead of UDP(Universal Datagram Protocol). RTP is better suited for media but most people never use it. You are better off starting with something that works.

Recieving the Streamed Video/Audio

On the computer on which you wish to playback the file you just begain streaming. Do the following on the Destination computer.



Leave this setting to the default. It will always have the following values. What we are telling the computer is that we are getting a stream of data on the network and that the player has to fetch it and put it out on your screen

That's it . Enjoy the video or Audio that you just streamed

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

Contributors