kallqvist / skillshare-downloader

MIT License
312 stars 105 forks source link

Updated Readme and Fixed Error #70

Open CodingButter opened 2 years ago

CodingButter commented 2 years ago

Updated the readme to clarify how to use the cookie. Fixed Array issue from data response

rasulkireev commented 1 year ago

I tried a few things things to fix my issue which was "Failed to fetch video meta" so not entirely sure what helped but the final touch was getting the cookie from the Network Tab as opposed to document.cookie. I also did the following:

1

did this:

                if 'video_hashed_id' in s and s['video_hashed_id']:
                    video_id = s['video_hashed_id'].split(':')[1]
                elif 'video_thumbnail_url' in s and s['video_thumbnail_url']:
                    video_id = s['video_thumbnail_url'].split('/')[6]

instead of just:

                if 'video_hashed_id' in s and s['video_hashed_id']:
                    video_id = s['video_hashed_id'].split(':')[1]

2

Commented out the if not video_id block.

jayediqbalasif commented 11 months ago

i still get the same problem how can fix that