1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
Quickstart
----------
This API is what powers the :ref:`CLI <cli:Command-Line Interface>`, but it's also available to developers that wish
to make use of the data Streamlink can retrieve in their own application.
Extracting streams
^^^^^^^^^^^^^^^^^^
The simplest use of the Streamlink API looks like this:
.. code-block:: python
>>> import streamlink
>>> streams = streamlink.streams("hls://devstreaming-cdn.apple.com/videos/streaming/examples/bipbop_4x3/bipbop_4x3_variant.m3u8")
This simply attempts to find a plugin and use it to extract streams from
the URL. This works great in simple cases but if you want more
fine tuning you need to use a `session object`_ instead and `fetch streams <fetching streams_>`_ manually.
The returned value is a dict containing :py:class:`Stream <streamlink.stream.Stream>` objects:
.. code-block:: python
>>> streams
{'41k': <HLSStream ['hls', 'https://devstreaming-cdn.apple.com/videos/streaming/examples/bipbop_4x3/gear0/prog_index.m3u8', 'https://devstreaming-cdn.apple.com/videos/streaming/examples/bipbop_4x3/bipbop_4x3_variant.m3u8']>,
'230k': <HLSStream ['hls', 'https://devstreaming-cdn.apple.com/videos/streaming/examples/bipbop_4x3/gear1/prog_index.m3u8', 'https://devstreaming-cdn.apple.com/videos/streaming/examples/bipbop_4x3/bipbop_4x3_variant.m3u8']>,
'650k': <HLSStream ['hls', 'https://devstreaming-cdn.apple.com/videos/streaming/examples/bipbop_4x3/gear2/prog_index.m3u8', 'https://devstreaming-cdn.apple.com/videos/streaming/examples/bipbop_4x3/bipbop_4x3_variant.m3u8']>,
'990k': <HLSStream ['hls', 'https://devstreaming-cdn.apple.com/videos/streaming/examples/bipbop_4x3/gear3/prog_index.m3u8', 'https://devstreaming-cdn.apple.com/videos/streaming/examples/bipbop_4x3/bipbop_4x3_variant.m3u8']>,
'1900k': <HLSStream ['hls', 'https://devstreaming-cdn.apple.com/videos/streaming/examples/bipbop_4x3/gear4/prog_index.m3u8', 'https://devstreaming-cdn.apple.com/videos/streaming/examples/bipbop_4x3/bipbop_4x3_variant.m3u8']>,
'worst': <HLSStream ['hls', 'https://devstreaming-cdn.apple.com/videos/streaming/examples/bipbop_4x3/gear0/prog_index.m3u8', 'https://devstreaming-cdn.apple.com/videos/streaming/examples/bipbop_4x3/bipbop_4x3_variant.m3u8']>,
'best': <HLSStream ['hls', 'https://devstreaming-cdn.apple.com/videos/streaming/examples/bipbop_4x3/gear4/prog_index.m3u8', 'https://devstreaming-cdn.apple.com/videos/streaming/examples/bipbop_4x3/bipbop_4x3_variant.m3u8']>}
If no plugin for the URL is found, a :py:exc:`NoPluginError <streamlink.exceptions.NoPluginError>` will be raised.
If an error occurs while fetching streams, a :py:exc:`PluginError <streamlink.exceptions.NoPluginError>` will be raised.
Opening streams to read data
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Now that you have extracted some streams we might want to read some data from
one of them. When you call :py:meth:`open() <streamlink.stream.Stream.open>` on a stream, a file-like object will be
returned, which you can call ``.read(size)`` and ``.close()`` on.
.. code-block:: python
>>> fd = streams["best"].open()
>>> data = fd.read(1024)
>>> fd.close()
If an error occurs while opening a stream, a :py:exc:`StreamError <streamlink.exceptions.StreamError>` will be raised.
Inspecting streams
^^^^^^^^^^^^^^^^^^
It's also possible to inspect the stream's internal parameters. Go to
:ref:`Stream subclasses <api/stream:Stream>` to see which attributes are available
for inspection for each stream type.
For example, this is an :py:class:`HLSStream <streamlink.stream.HLSStream>` object which
contains a :py:attr:`url <streamlink.stream.HTTPStream.url>` attribute.
.. code-block:: python
>>> streams["best"].url
'https://devstreaming-cdn.apple.com/videos/streaming/examples/bipbop_4x3/gear4/prog_index.m3u8'
Session object
^^^^^^^^^^^^^^
The session allows you to set various options and is more efficient
when extracting streams more than once. You start by creating a
:py:class:`Streamlink <streamlink.session.Streamlink>` object:
.. code-block:: python
>>> from streamlink import Streamlink
>>> session = Streamlink({"optional-session-option": 123})
On the session instance, you can set additional options like so:
.. code-block:: python
>>> session.set_option("stream-timeout", 30)
>>> session.options.set("stream-timeout", 30)
See :py:class:`StreamlinkOptions <streamlink.session.options.StreamlinkOptions>` for all available session options.
Fetching streams
^^^^^^^^^^^^^^^^
Streams can be fetched in two different ways.
The first example will automatically try to find a matching plugin and available streams from the input URL:
.. code-block:: python
>>> streams = session.streams("URL")
See :py:meth:`Streamlink.streams() <streamlink.session.Streamlink.streams>` for more.
``Streamlink.streams()`` however doen't allow you to set any plugin options which might be necessary in order to access streams,
e.g. when authentication data is required, or plugin options which may alter the plugin's behavior.
Be aware that plugin options are distinct from the session options, and since these options depend on the plugin in use,
plugin options can't be set without resolving the matching plugin first.
Plugins can therefore be resolved and initialized manually from the input URL, so plugin options can be passed to the plugin:
.. code-block:: python
>>> plugin_name, plugin_class, resolved_url = session.resolve_url("URL")
>>> plugin = plugin_class(session, resolved_url, options={"plugin-option": 123})
>>> streams = plugin.streams()
See :py:meth:`Streamlink.resolve_url() <streamlink.session.Streamlink.resolve_url>`
and :py:class:`Plugin <streamlink.plugin.Plugin>` for more.
Alternatively, the plugin class can be imported directly from the respective module of the ``streamlink.plugins`` package.
The input URL then must match the plugin's URL matchers.
.. code-block:: python
>>> from streamlink.plugins.twitch import __plugin__ as Twitch
>>> plugin = Twitch(session, "https://twitch.tv/CHANNEL", options={"disable-ads": True, "low-latency": True})
>>> streams = plugin.streams()
Available plugin options are defined using the :py:meth:`@pluginargument <streamlink.plugin.pluginargument>`
Plugin class decorator in each plugin's module.
|