diff options
author | dec05eba <dec05eba@protonmail.com> | 2021-06-11 07:36:13 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2021-06-11 07:36:13 +0200 |
commit | 26b593b1eac483f700c72b4195e372f4b92acc7f (patch) | |
tree | e66ca03441f7ea98765b241cb29615dccf3657ae /src/plugins | |
parent | 63ceee7552487a6111f9bef460448f0bc3958607 (diff) |
Do not auto pause for seconds when buffering
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/Youtube.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/Youtube.cpp b/src/plugins/Youtube.cpp index 8575d07..ce359d4 100644 --- a/src/plugins/Youtube.cpp +++ b/src/plugins/Youtube.cpp @@ -1904,7 +1904,7 @@ namespace QuickMedia { if(!streaming_data_json.isObject()) return PluginResult::ERR; - // TODO: Verify if this always works (what about copyrighted live streams?), also what about choosing video quality for live stream? + // TODO: Verify if this always works (what about copyrighted live streams?), also what about choosing video quality for live stream? Maybe use mpv --hls-bitrate option? const Json::Value &hls_manifest_url_json = streaming_data_json["hlsManifestUrl"]; if(hls_manifest_url_json.isString()) { hls_manifest_url = hls_manifest_url_json.asString(); |