From c713223367640b93882fbbe9f44c9a5608ff7895 Mon Sep 17 00:00:00 2001 From: Clint Herron Date: Tue, 17 Sep 2024 17:04:25 -0400 Subject: [PATCH] Updating warning message to explicitly include reference to LLAMA_FFMPEG=1 to help users know exactly how to recompile with video support. Suggestion by @Galunid. --- examples/llava/minicpmv-cli.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/llava/minicpmv-cli.cpp b/examples/llava/minicpmv-cli.cpp index 2c4cdb035..d5dda228e 100644 --- a/examples/llava/minicpmv-cli.cpp +++ b/examples/llava/minicpmv-cli.cpp @@ -163,7 +163,7 @@ static std::vector extract_frames(const std::string& video_path #else static std::vector extract_frames(const std::string& video_path, const int frame_num) { - LOG_TEE("%s: llama.cpp built without ffmpeg, processing video files is not supported.\n", __func__); + LOG_TEE("%s: llama.cpp built without ffmpeg, processing video files is not supported. Please recompile with LLAMA_FFMPEG=1 to add video support.\n", __func__); return {}; }