diff options
author | dec05eba <dec05eba@protonmail.com> | 2025-03-04 23:28:19 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2025-03-04 23:28:19 +0100 |
commit | cf9955dbc35e8e3bb9ac8febbec76cfecd7e739b (patch) | |
tree | b2e0b2237c63f4aea27d2e23d61fbbbcd76d1b47 /src/AsyncImageLoader.cpp | |
parent | 3003cf04c015a3a847a5d598e3a3b0521ff6bdf9 (diff) |
Convert to meson project
Diffstat (limited to 'src/AsyncImageLoader.cpp')
-rw-r--r-- | src/AsyncImageLoader.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/AsyncImageLoader.cpp b/src/AsyncImageLoader.cpp index 14cfe6a..a6706f5 100644 --- a/src/AsyncImageLoader.cpp +++ b/src/AsyncImageLoader.cpp @@ -27,6 +27,7 @@ namespace QuickMedia { bool ffmpeg_convert_image_format(const Path &thumbnail_path, const Path &destination_path) { + // TODO: Dont output as jpg, ffmpeg jpg is very slow const char *args[] = { "ffmpeg", "-y", "-v", "quiet", "-i", thumbnail_path.data.c_str(), "--", destination_path.data.c_str(), nullptr}; return exec_program(args, nullptr, nullptr) == 0; } |