-
Notifications
You must be signed in to change notification settings - Fork 242
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sending live Youtube videos to Kodi doesn't work #966
Comments
I was able to send the same video to Kodi by doing the following:
|
It seems that this format of URLs is simply not supported: ShareOpenActivity.java -> toPluginUrl(): In the block of |
You are probably right, the url parser only supports a limited number of variations, and the /live/ isn't one of them. |
The percentage of live videos these days is significant. And after the live translation is complete, the video remains with this URL. This is really annoying that so many videos can't be sent to Kodi. |
YouTube now use the new format for live streams and shorts. The pattern is https://www.youtube.com/{live,shorts}/<video id>. But other than pattern change, the video ID is otherwise completely compatible with the old format. Since this pattern is similar to https://youtu.be/ format, re-use that code by re-shuffle the conditions a bit. The change is applied to both default and Invidious plugins. Fixes: xbmc#966
Bug report
Sample video: https://www.youtube.com/live/scyY2bmL7gE
The text was updated successfully, but these errors were encountered: