diff options
author | dec05eba <dec05eba@protonmail.com> | 2021-05-11 14:57:45 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2021-05-11 14:57:45 +0200 |
commit | 8d08b8f3d4a627c3190c485bf43690e414862d83 (patch) | |
tree | 0cc2ec792fe5fcf80051f7cd6f9dffc868e0eb0c /include | |
parent | 93484ecf081fcb57313fa5d161cd90dccee0dc9e (diff) |
Youtube-dl cant properly extract remote file name, use our own extraction code when not using mpv. Fix close button not working for download menu
Diffstat (limited to 'include')
-rw-r--r-- | include/DownloadUtils.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/DownloadUtils.hpp b/include/DownloadUtils.hpp index 964e74b..620b936 100644 --- a/include/DownloadUtils.hpp +++ b/include/DownloadUtils.hpp @@ -22,6 +22,8 @@ namespace QuickMedia { using DownloadErrorHandler = std::function<bool(std::string&)>; DownloadResult download_head_to_string(const std::string &url, std::string &result, bool use_browser_useragent = false, bool fail_on_error = true); + // Returns the remote name from the content-disposition header or tries to extract the file name from url. Can return empty name + DownloadResult url_get_remote_name(const std::string &url, std::string &result, bool use_browser_useragent); DownloadResult download_to_string(const std::string &url, std::string &result, const std::vector<CommandArg> &additional_args, bool use_browser_useragent = false, bool fail_on_error = true); // Note: This function saves the content to the file atomically DownloadResult download_to_string_cache(const std::string &url, std::string &result, const std::vector<CommandArg> &additional_args, bool use_browser_useragent = false, DownloadErrorHandler error_handler = nullptr, Path cache_path = ""); |