rohmanhm / new-egghead-downloader

New Egghead Downloader
MIT License
78 stars 5 forks source link

No videos found! #14

Closed a-eid closed 6 years ago

a-eid commented 6 years ago

I getting the following error

screen shot 2017-11-22 at 21 49 20

mateuszzw commented 6 years ago

Same here - no videos found on every course UPDATE: it's only for courses (playlists) - for single videos it's working fine

rohmanhm commented 6 years ago

Hi guys, I'm sorry for late reply. I think it causes by egghead update their HTML structure again.

Any PR welcome for the update

mateuszzw commented 6 years ago

Hi @rohmanhm In the meantime, I wrote a very simple snippet for retrieving links of single lessons from full course page e.g. https://egghead.io/courses/start-learning-react

jQuery.each(jQuery('.mb4.br2-ns.overflow-hidden-ns').find('.mb2.mb0-ns.base.no-underline.db.pl0.tl.f4.fw5.avenir.pointer.lh-title.lh-copy-ns.relative'), function(index, video){
  console.log('ehd -e email -p password ' + video.href + ' -f');
});

I managed to download all course's lessons separately using this snippet. I hope this helps.