From 4ea8ddfd4d89ca96e81ddf07ec3c7d0abfc8de70 Mon Sep 17 00:00:00 2001 From: Christopher Rosell Date: Wed, 21 Mar 2012 12:11:53 +0100 Subject: livestreamer.plugins.ownedtv: Use two regexes. It seems both regexes are needed for different URLs. Should now work on both /live/id and /channelname URLs. --- src/livestreamer/plugins/ownedtv.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') diff --git a/src/livestreamer/plugins/ownedtv.py b/src/livestreamer/plugins/ownedtv.py index 4ddeb2f..87df3ad 100644 --- a/src/livestreamer/plugins/ownedtv.py +++ b/src/livestreamer/plugins/ownedtv.py @@ -37,6 +37,10 @@ class OwnedTV(Plugin): data = fd.read() fd.close() + match = re.search(b"document.location.hash='/live/(\d+)'", data) + if match: + return int(match.group(1)) + match = re.search(b"xajax_load_live_config\((\d+),", data) if match: return int(match.group(1)) -- cgit v1.2.3