How To Scrape & Export Video Information from YouTube Videos

Поделиться
HTML-код
  • Опубликовано: 9 ноя 2024

Комментарии • 27

  • @SaifulIslam-hj3jz
    @SaifulIslam-hj3jz 2 года назад +1

    Just awesome brother. I just searching for something like this. Because my client wants me to scrape the thousands of data. I felt like I'm dying....

  • @ScrubLordCasual
    @ScrubLordCasual Год назад +1

    Perfect, I was needing a way to transfer my playlist to excel and this did the trick! Thank you

  • @cenevspeed_CARS
    @cenevspeed_CARS 3 года назад +3

    Wow Sir!! You are a true coding master and inspect element master!! This would be useful to store the links, so that if anyone wants it you can easily share it. Please make more such videos which are related to tech and all but not coding. But still make coding videos Sir, they are very helpful!!

  • @rhea2811
    @rhea2811 Год назад

    hi may i have question? If i want to get total like, total comment, and tittle of all video from a channel what would the parameter would be? Also thanks for the video

  • @flynntime-bs7194
    @flynntime-bs7194 3 года назад +1

    underrated channel

  • @BytesAndBros
    @BytesAndBros 2 года назад +1

    Command doesn't work for me any longer to get massive list of urls. Just says undefined

  • @DrivetoSuccess987
    @DrivetoSuccess987 Год назад

    Very good Broth Q?do u know how to clone a video and and remove copyright so i can upload it to YTB pls and thanks

  • @haikumagician4363
    @haikumagician4363 Год назад

    Hello Sir. Could you make a video or a comment explaining how to also get the view count or rating of a video with this technique. I would like to get them all in a string so i can make a recommender system.

  • @BeWorded
    @BeWorded 2 года назад

    Please can you write a code that will allow one to specify the period he wants to scrap? If the date the exported videos were uploaded is displayed that would really be great too.

  • @Remmy112
    @Remmy112 2 года назад

    Fantastic job friend.. Q? How do I get the video thumbnail image in that list? Is this possible?

  • @vigneshwaransr2286
    @vigneshwaransr2286 2 года назад +1

    The first line of code was working. But the second line did not. It just cleared the console and displays undefined. Can you please update your code please. Looking for your reply.

    • @johnnyo619
      @johnnyo619 Год назад +1

      I don't know if this will work for you, but it worked for me. When I looked at his 2nd command, if you look more toward the end of the command, it looks like there is a double == (where it says, "v.vid=="video-title". I removed one = and the command worked. Here's the command I used. Cheers
      window.clearInterval(scroll); console.clear(); urls = $$('a'); urls.forEach(function(v,i,a){if (v.id="video-title"){console.log('\t'+v.title+'\t'+v.href+'\t')}});

  • @haydarjomaa7477
    @haydarjomaa7477 2 года назад

    what about taking the number of views and published date?

  • @coolteacher692
    @coolteacher692 3 года назад +1

    Best

  • @coolteacher692
    @coolteacher692 3 года назад +1

    Sir plz make videos on video editing.

  • @sharuchannelrelaxingmusic8957
    @sharuchannelrelaxingmusic8957 3 года назад +1

    Nice

  • @mzhcrypto6808
    @mzhcrypto6808 Год назад

    PLEASE CPROVIDE A CODE FOR RUclips SHORTS

  • @scottstirling654
    @scottstirling654 2 года назад

    I tried this and ran into this error:
    A page or script is accessing at least one of navigator.userAgent, navigator.appVersion, and navigator.platform. Starting in Chrome 101, the amount of information available in the User Agent string will be reduced.
    To fix this issue, replace the usage of navigator.userAgent, navigator.appVersion, and navigator.platform with feature detection, progressive enhancement, or migrate to navigator.userAgentData.
    Note that for performance reasons, only the first access to one of the properties is shown.
    Any thoughts as to why?