Skip to content

Commit

Permalink
Merge branch 'pr/1089' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
chrippa committed Jan 26, 2016
2 parents fc1416d + 970dace commit 9d59cb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/livestreamer/plugins/periscope.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
STATUS_GONE = 410
STATUS_UNAVAILABLE = (STATUS_GONE,)

_url_re = re.compile(r"http(s)?://(www\.)?periscope.tv/w/(?P<token>[\w\-\=]+)")
_url_re = re.compile(r"http(s)?://(www\.)?periscope.tv/w/(?P<broadcast_id>[\w\-\=]+)")
_stream_schema = validate.Schema(
validate.any(
None,
Expand Down

1 comment on commit 9d59cb4

@TuxNuX
Copy link

@TuxNuX TuxNuX commented on 9d59cb4 May 2, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

again periscope not work

livestreamer https://www.periscope.tv/username/1ynKOmOnWYOJR
error: No plugin can handle URL: https://www.periscope.tv/username/1ynKOmOnWYOJR 

or

livestreamer https://www.periscope.tv/w/1ynKOmOnWYOJR
[cli][info] Found matching plugin periscope for URL https://www.periscope.tv/w/1ynKOmOnWYOJR                                                                                                                       
error: No streams found on this URL: https://www.periscope.tv/w/1ynKOmOnWYOJR    

I tested with many urls is the same problem

Please sign in to comment.