Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
[how to] extract all vk urls #4470
Comments
|
I'm not youtube-dl developer/maintainer but I know a way of achieving what you want. youtube-dl in here is having problems with infinite-scroll functionality, so it'd be good if you could just scrap all the vk urls by yourself and just feed them to youtube-dl and for this we'll need a few steps:
Hope it helps! Contact me if it didn't :) |
var videos = cur.videoList.all.list;
for (var i = 0; i < videos.length; i++) {
var video = videos[i];
var link = 'https://vk.com/video' + video[0] + '_' + video[1];
console.log(link);
}I wrote this js for community videos page (https://vk.com/videos-***?section=all) |
Hello,
I would like to extract all urls of Rumour Balbal. I run the following command it returns only 12 video urls. But there are 278 videos on his proile.
youtube-dl http://vk.com/videos233941067\?section\=all --username blabla@blabla.com --password blabla -gHow can I extract all 278 urls?