James Taylor

Results 86 comments of James Taylor

Temporary workaround before I can make a proper fix: change line 354 in `./youtube/watch.py` ```if info['age_restricted'] or info['player_urls_missing']:``` to ```if True:``` Let me know if it works This will make...

You can remove line 373 to make the workaround work with non-embeddable videos such as [this one](https://www.youtube.com/watch?v=sFQYVl_rL58)

Disable the "Prefer integrated sources" setting.See https://github.com/user234683/youtube-local/issues/129 On Mon, 2022-05-02 at 22:44 -0700, leimath wrote: > When trying to load this video Wendigoon's The American > Broadcaster.... It does not...

I suspect this is a problem with portable mode not working properly, rather than a dependency issue. If it was a missing dependency, you would likely get an ImportError, but...

Try a fresh installation, with a settings.txt file created to make it portable. Before running it, insert this between lines 31 and 32 in `./youtube/subscriptions.py` (right before the sqlite3 connection...

Are you sure you saved the file after adding the line, and are you running the installation where you added the line (rather than a different one)? Because the stack...

The "show more"/"show less" is preferable to details so that the beginning of the description is viewable (rather than entire description hidden by default). I looked into trying to get...

Looks like the video is age restricted. The age restriction bypass was broken because Youtube disabled `get_video_info`. The latest method was implemented [here](https://github.com/user234683/youtube-local/commit/b47f3687967a940e2ed699f44364ff786c534f16)

A regular expression is failing to match, so the match object is None. Two ways I would debug this: Insert a print statement to print the string that is supposed...

Awesome, this looks exactly like what we need. I'll get around to integrating this