aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/livestreamer/stream/__init__.py
diff options
context:
space:
mode:
authorGravatar Christopher Rosell <chrippa@tanuki.se>2012-10-04 14:11:17 +0200
committerGravatar Christopher Rosell <chrippa@tanuki.se>2012-10-04 14:14:20 +0200
commit1af7ca5f01989565fefe3bbfb4e5a387f0558602 (patch)
tree2d6a6085a4b10342df99969f9d26c1bcdd05c191 /src/livestreamer/stream/__init__.py
parent9bf96226fd76e1e318cc111a308b4289d91858e5 (diff)
Add support for AkamaiHD's HTTP streaming protocol.
Diffstat (limited to 'src/livestreamer/stream/__init__.py')
-rw-r--r--src/livestreamer/stream/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/livestreamer/stream/__init__.py b/src/livestreamer/stream/__init__.py
index 24eaa7b..3342661 100644
--- a/src/livestreamer/stream/__init__.py
+++ b/src/livestreamer/stream/__init__.py
@@ -58,9 +58,10 @@ class StreamProcess(Stream):
return stream.process.stdout
+from .akamaihd import AkamaiHDStream
from .hls import HLSStream
from .http import HTTPStream
from .rtmpdump import RTMPStream
__all__ = ["StreamError", "Stream", "StreamProcess",
- "RTMPStream", "HTTPStream"]
+ "AkamaiHDStream", "HLSStream", "HTTPStream", "RTMPStream"]