ikeboy / pluralsight-scraper

Pluralsight video downloader
https://www.knyz.org/blog/post/pluralsight-scraper-released/
GNU General Public License v2.0
141 stars 49 forks source link

Error: Protocol "blob:" not supported. #9

Closed Om4ar closed 4 years ago

Om4ar commented 4 years ago

scrapper return error Error: Protocol "blob:" not supported. Expected "https:" and crash after

vezaynk commented 4 years ago

Can anybody confirm this issue?

bahinapster commented 4 years ago

Hello, I confirm the issue

bahinapster commented 4 years ago

quick fix, line 93 course.src = result.replace('blob:', '');

bahinapster commented 4 years ago

files are empty btw :/

vezaynk commented 4 years ago

course.src = result.replace('blob:', ''); files are empty btw :/

As one would expect. blob:// is referring to some form of client-side storage, its not an actual url.

I was surprised it wasn't like this before, but it does significantly complicate matters now that it is.

vezaynk commented 4 years ago

This is now fixed with the new version.