youtube id scrape

sonnen

Junior Member
Joined
Feb 26, 2011
Messages
114
Reaction score
3
Hi,

I am looking for a fast bot that can scrape id from youtube comment page. The bot that use API would be nice. Tubetoolbox can do this but it is not using api so it is super slow.

Anyone know?

Thanks
 
What is "id from youtube comment page" ?
You mean username from people who commented a video ?

Beny
 
Youtube friend bomber will do the job ,, scraping even sending msgs or adding 'em as friends .
 
yes username from people who commented a video

Ok, so it's easy.

Imagine you have an URL of a YouTube video, like :
Code:
http://www.youtube.com/ watch?v=yk0brmgEPgU

With Notepad you'll search-and-replace "watch" by "all_comments".
You URL will looks like :
Code:
http://www.youtube.com/all_comments?v=yk0brmgEPgU

Now, you'll need a regular expression extractor, like this one :
Code:
http://codecanyon.net/item/regex-extractor-extract-everything-simply-/1327433

You'll use this regular expression to extract all usernames :
Code:
dir="ltr">.*</a>

Example :

35d9f00.jpg


Then export to file all extracted results and open the file with Notepad.
To finish, use search-and-replace to replace "dir="ltr">" by nothing ; and again for "</a>".

ayokft.jpg


And you'll have the list of all users who commented the video.

Good luck !

Beny
 
Youtube friend bomber will do the job ,, scraping even sending msgs or adding 'em as friends .

Hey Thank you for the answer, but i cant run it. It is keeping giving me handle exception error.
 
Back
Top