Skip to content

Commit

Permalink
Merge pull request #524 from chhe/gaming-live-no-plugin-fix
Browse files Browse the repository at this point in the history
plugins.gaminglive: fix "No plugin can handle URL" issue
  • Loading branch information
chrippa committed Sep 1, 2014
2 parents 7896740 + 5eec423 commit 73d9bc0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/livestreamer/plugins/gaminglive.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from livestreamer.plugin.api import http, validate
from livestreamer.stream import RTMPStream

SWF_URL = "http://alpha.gaminglive.tv/lib/flowplayer/flash/flowplayer.commercial-3.2.18.swf"
SWF_URL = "http://www.gaminglive.tv/lib/flowplayer/flash/flowplayer.commercial-3.2.18.swf"
CHANNELS_API_URL = "http://api.gaminglive.tv/channels/{0}"
QUALITY_WEIGHTS = {
"live": 3,
Expand All @@ -13,7 +13,7 @@
}

_url_re = re.compile("""
http(s)?://(staging|alpha)\.gaminglive\.tv
http(s)?://www\.gaminglive\.tv
/\#/channels/(?P<channel>[^/]+)
""", re.VERBOSE)
_quality_re = re.compile("[^/]+-(?P<quality>[^/]+)")
Expand Down

0 comments on commit 73d9bc0

Please sign in to comment.