aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/livestreamer/plugins/ownedtv.py4
1 files changed, 4 insertions, 0 deletions
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))