this is badass, you shared that Articlesbase method right ?
awesome man...... i read a lot about this kind of method and it was a success... i think its time to do the same...
wow your earnings are high,you will surely hit $200/day by 2013,i wish you good luck
Interesting thread, goodluck on your journey OP. i'd like to ask how many YT vids do you upload in a day? Do you use softwares or bots? Sharecash or fileice?
I have a question too; Do you make blogs or websites? If blogs.. wordpress or blogger? Also.. how do you make those scripts? xD
As for "make a video showing them how you download and install" do you make softwares that you will install? and after the video is done , do you re-upload the same videos X times for quantity?
Florida?;4287980 said:Great journal!
Subscribed and fingers are crossed!
Best of luck!
Wow, your EPC is simply awesome. How did you got such high EPC?
Good luck with your journal!
That yt download method is gold. The trick is find a decently high earning on adsend or blamads that allows incentives. When you do the video do a complete walkthrough of your downloading the file and getting the password and everything else. What I've found works good is hiding the password in anotherpay per download. As long as people believe you have what they need and that you will show them how to get it they will do anything.
That's a bad-ass panel you made there. You scrape the information of your videos directly from youtube or what?
Just a question, when people download from mediafire, they download the file, they read the readme.txt
then, do you send them to a blog or a simple landingpage with a content locker on it? and after unlocking the password
will appear on the page?
I always have difficulties with this part, sending from the text file to a website where they need to do a survey.
Hi there. You have great results. From which network or soft this screenshot is? I'm looking something similar.
Thanks and Good Luck.
Martin
hey hellohellosharp
your panels for youtube look super neat and just what I need to keep track of my accounts/videos
how/where do you program them?
thankS!
Great method good keep gng...
I don't think you make that amount only from youtube videos , from what I saw those only brought you 131 $ , so the main method you use is SEO , right ?![]()
$videoid="d_56kyib-Ls"; //This is just an example video I am using
$feedURL = 'http://gdata.youtube.com/feeds/api/videos/' . $videoid;
$entry = @simplexml_load_file($feedURL);
$video = parseVideoEntry($entry); $rates=$video->numrates; $views=$video->viewCount; $favorites=$video->favoriteCount; $rating=$video->rating; $comments=$video->commentsCount; $author=$video->author;
function parseVideoEntry($entry) { $obj= new stdClass; // get <yt:stats> node for viewer statistics $yt = $entry->children('http://gdata.youtube.com/schemas/2007'); $attrs = $yt->statistics->attributes(); $obj->viewCount = $attrs['viewCount']; $obj->favoriteCount = $attrs['favoriteCount']; $obj->author=$entry->author->name; // get <gd:rating> node for video ratings $gd = $entry->children('http://schemas.google.com/g/2005'); if ($gd->rating) { $attrs = $gd->rating->attributes(); $obj->rating = $attrs['average']; $obj->numrates = $attrs['numRaters']; } else { $obj->rating = 0;$obj->numrates=0; } // get <gd:comments> node for video comments $gd = $entry->children('http://schemas.google.com/g/2005'); if ($gd->comments->feedLink) { $attrs = $gd->comments->feedLink->attributes(); $obj->commentsCount = $attrs['countHint']; } else $obj->commentsCount = 0; // return object to caller return $obj; }
$videoid="d_56kyib-Ls"; //This is just an example video I am using
$feedURL = 'http://gdata.youtube.com/feeds/api/videos/' . $videoid;
$entry = @simplexml_load_file($feedURL);
$video = parseVideoEntry($entry);
$rates=$video->numrates;
$views=$video->viewCount;
$favorites=$video->favoriteCount;
$rating=$video->rating;
$comments=$video->commentsCount;
$author=$video->author;
function parseVideoEntry($entry) {
$obj= new stdClass;
// get <yt:stats> node for viewer statistics
$yt = $entry->children('http://gdata.youtube.com/schemas/2007');
$attrs = $yt->statistics->attributes();
$obj->viewCount = $attrs['viewCount'];
$obj->favoriteCount = $attrs['favoriteCount'];
$obj->author=$entry->author->name;
// get <gd:rating> node for video ratings
$gd = $entry->children('http://schemas.google.com/g/2005');
if ($gd->rating) {
$attrs = $gd->rating->attributes();
$obj->rating = $attrs['average'];
$obj->numrates = $attrs['numRaters'];
} else {
$obj->rating = 0;
$obj->numrates=0;
}
// get <gd:comments> node for video comments
$gd = $entry->children('http://schemas.google.com/g/2005');
if ($gd->comments->feedLink) {
$attrs = $gd->comments->feedLink->attributes();
$obj->commentsCount = $attrs['countHint'];
}
else
$obj->commentsCount = 0;
// get feed URL for video responses
// get feed URL for related videos
// return object to caller
return $obj;
}