Sebastian Meyer
Sebastian Meyer
> `https://rfe-ingest.akamaized.net/dash/live/2033030/tvmc05/init_video_3311kbps.m4s` Looks like the `Representation`'s `BaseURL` gets ignored. The URL of the initialization should be `https://rfe-ingest.akamaized.net/dash/live/2033030/tvmc05/RFE-TVMC05_0240/12wxxnb2/init_video_238kbps.m4s` ```xml ... https://rfe-ingest.akamaized.net/dash/live/2033030/tvmc05/ RFE-TVMC05_0240/12wxxnb2/ ... ```
This has nothing to do with the [`functools.lru_cache` decorator](https://docs.python.org/3/library/functools.html#functools.lru_cache). The decorator returns a wrapper with two additional methods added to it, `cache_info` and `cache_clear`, which lets you analyze the cache....
Btw, I have no idea why the `Plugin.bind` classmethod was implemented (via 2e27f21a3eee8bfbc86135993c642853d6a37264 back in the Livestreamer days in 2013). It's not a particularly nice solution for storing the session...
ALHLS hasn't been implemented yet, because it's not part of the official HLS standard from 2017 (RFC 8216 - based on Apple's initial HLS documents). On top of that, lots...
> So, adding them is not a problem. ALHLS adds new tags with special logic, and all of this needs to be implemented. This doesn't come for free, because the...
> --hls-audio-select > Available languages for DASH audio streams DASH streams are not HLS streams. You should be able to select the language via `--locale`. https://github.com/streamlink/streamlink/blob/3.1.1/src/streamlink/stream/dash.py#L210-L218 https://streamlink.github.io/cli.html#cmdoption-locale
The DASHStream implementation only outputs audio streams of a single language when --locale is set. And this requires a valid locale string, as shown in the linked code. If no...
This is completely off-topic of this thread.
> I'm trying to get the start and end time in the original livestream which streamlink has downloaded from the log file You are looking for the [`EXT-X-PROGRAM-DATE-TIME`](https://tools.ietf.org/html/rfc8216#section-4.3.2.6) metadata of...
I said it would be useful as an addition. I didn't say that it's currently implemented.