diff options
author | bashonly <88596187+bashonly@users.noreply.github.com> | 2023-04-13 14:36:06 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-13 19:36:06 +0000 |
commit | 93e7c6995e07dafb9dcc06c0d06acf6c5bdfecc5 (patch) | |
tree | 9e72dc3841bd3db8d2fa14d0c55c7daf939cdbf3 /README.md | |
parent | 3f7e2bd80e3c5d8a1682f20a1b245fcd974f295d (diff) |
[extractor/generic] Attempt to detect live HLS (#6775)
* Extract duration for non-live generic HLS videos
* Add extractor-arg `is_live` to bypass live HLS check
Closes #6705
Authored by: bashonly
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1800,6 +1800,7 @@ The following extractors use this feature: * `fragment_query`: Passthrough any query in mpd/m3u8 manifest URLs to their fragments if no value is provided, or else apply the query string given as `fragment_query=VALUE`. Does not apply to ffmpeg * `variant_query`: Passthrough the master m3u8 URL query to its variant playlist URLs if no value is provided, or else apply the query string given as `variant_query=VALUE` * `hls_key`: An HLS AES-128 key URI *or* key (as hex), and optionally the IV (as hex), in the form of `(URI|KEY)[,IV]`; e.g. `generic:hls_key=ABCDEF1234567980,0xFEDCBA0987654321`. Passing any of these values will force usage of the native HLS downloader and override the corresponding values found in the m3u8 playlist +* `is_live`: Bypass live HLS detection and manually set `live_status` - a value of `false` will set `not_live`, any other value (or no value) will set `is_live` #### funimation * `language`: Audio languages to extract, e.g. `funimation:language=english,japanese` |