[GET] Youtube views script

Status
Not open for further replies.

hajrobaba

Regular Member
Joined
Jul 1, 2013
Messages
220
Reaction score
206
Hi guys.

I found this script in my folder with scripts, I found it somewhere few months ago, tested and added to my collection.
What does this script do?
-Basicly show your video on your website. But don't worry you can set it to bi invisible and to mute audio. So nobody won't know he's "watching your video.



Code:
<script src="http://www.google.com/jsapi"></script>
<script src="http://ajax.googleapis.com/ajax/libs/swfobject/2.1/swfobject.js"></script>
<div id="ytapiplayer">You need Flash player 8+ and JavaScript enabled to view this video.</div>
<script type="text/javascript">
    google.load("swfobject", "2.1");
    function onYouTubePlayerReady(playerId) {
        ytplayer = document.getElementById("myytplayer");
        ytplayer.playVideo();
        ytplayer.mute();
    }
    var params = { allowScriptAccess: "always" };
    var atts = { id: "myytplayer" };
    swfobject.embedSWF("http://www.youtube.com/v/MO8ITTxvdSo?enablejsapi=1&playerapiid=ytplayer&allowFullScreen=true&version=3",
    "ytapiplayer", "420", "315", "8", null, null, params, atts);
</script>

And to make it invisible, just add this code below:
Code:
<style>#myytplayer{width:1px;height:1px;}</style>

p.s Don't forget to change "MO8ITTxvdSo" with your video ID, I just added this video as example.
 
Thank You for the share, but pretty sure yt don't count scripted playbacks.. just so ya know
 
Thank You for the share, but pretty sure yt don't count scripted playbacks.. just so ya know
My friend yesterday get about 30.000 views by using this script, so it works.
 
One more question, that "invisible" code should be added to the style css file right?
 
One more question, that "invisible" code should be added to the style css file right?

If you add it to the css file, you will need to only put
Code:
#myytplayer{width:1px;height:1px;}
otherwise, if you're putting it in the same file as the script, then in the head tags add the whole thing:
Code:
<style>#myytplayer{width:1px;height:1px;}</style>
 
So basically the video plays in the background but doesn't show up to the visitor?
 
So if you're getting a decent amount of traffic to your site you should expect a decent amount of views correct? Will the video play for everybody?
 
Well... A real views generating script that can generate the http requests for the views can give you views 5 to 20 times more then the amount of visitors you send to it...and this without loading a hidden video or things like this :) ... For your script to work and give good views you need to keep the visitors on your page at least half of the length of the video!
 
A dumb question but how this script works ? I mean how to use it, I need a software to run it ?
 
A dumb question but how this script works ? I mean how to use it, I need a software to run it ?

Good lord. Have the script on your site and send visitors to it. They will watch the video without even knowing it and your video view account increases (as claimed by OP). I dont know how this will give high retention views though.
 
Can I embed as much videos in the background as I want?
 
Good lord. Have the script on your site and send visitors to it. They will watch the video without even knowing it and your video view account increases (as claimed by OP). I dont know how this will give high retention views though.
I said it it's high retention views script?
Well... A real views generating script that can generate the http requests for the views can give you views 5 to 20 times more then the amount of visitors you send to it...and this without loading a hidden video or things like this :) ... For your script to work and give good views you need to keep the visitors on your page at least half of the length of the video!
Mind sharing it with BHW Community?
So if you're getting a decent amount of traffic to your site you should expect a decent amount of views correct? Will the video play for everybody?
Yes, 1 visit = 1 view to video
Is this script or traffic save for video that have adsense enabled?
My friend use it and he have adsense enabled on it, you just won't have any clicks that's for sure :)
Can I embed as much videos in the background as I want?
Mate, I didn't tried multiple videos, probably should work fine if you change some parameters a "myytplayer" to "myytplayer2"..
 
Status
Not open for further replies.
Back
Top