aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Christopher Rosell <chrippa@tanuki.se>2012-04-19 22:20:29 +0200
committerGravatar Christopher Rosell <chrippa@tanuki.se>2012-04-19 22:20:29 +0200
commit818c0570b6869fd3d0c3b1167ae668919f465cc1 (patch)
tree14d6c5527a1f38562b3cacd418da33c232404df8 /src
parent9663e667296278153ddb43c182d17be6eccc3e92 (diff)
livestreamer.plugins.ustreamtv: Fix AMF parsing.
Diffstat (limited to 'src')
-rw-r--r--src/livestreamer/plugins/ustreamtv.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/livestreamer/plugins/ustreamtv.py b/src/livestreamer/plugins/ustreamtv.py
index a30e695..01ae837 100644
--- a/src/livestreamer/plugins/ustreamtv.py
+++ b/src/livestreamer/plugins/ustreamtv.py
@@ -25,7 +25,7 @@ class UStreamTV(Plugin):
def _get_streams(self):
def get_amf_value(data, key):
- pattern = ("{0}\W\W\W(.+?)\x00").format(key)
+ pattern = ("{0}\x02\x00.(.+?)\x00").format(key)
match = re.search(bytes(pattern, "ascii"), data)
if match:
return str(match.group(1), "ascii")