We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently livestreamer only supports
https://picarto.tv/live/channel.php?watch=<channel>
However the following are also acceptible:
https://picarto.tv/live/channelhd.php?watch=<channel> https://picarto.tv/live/multistream.php?watch=<channel>
I belive the following regex should fix picarto.py:
_url_re = re.compile(""" http(s)?://(\w+\.)?picarto.tv/ live/(channel|channelhd|multistream).php .+watch=(?P<channel>[^&?/]+) """, re.VERBOSE)
I would create a merge request but I know very little about Python or compiling/testing it.
The text was updated successfully, but these errors were encountered:
8b6e914
No branches or pull requests
Currently livestreamer only supports
However the following are also acceptible:
I belive the following regex should fix picarto.py:
I would create a merge request but I know very little about Python or compiling/testing it.
The text was updated successfully, but these errors were encountered: