From 2408253ff15796b1ce88bfb9fcb38b84856c9bf0 Mon Sep 17 00:00:00 2001 From: Rushi Gandhi Date: Tue, 24 Dec 2024 00:39:29 +0530 Subject: [PATCH] fix typo in codec_name --- MediaProcessor/src/Engine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MediaProcessor/src/Engine.cpp b/MediaProcessor/src/Engine.cpp index ad72708..71eae82 100644 --- a/MediaProcessor/src/Engine.cpp +++ b/MediaProcessor/src/Engine.cpp @@ -78,7 +78,7 @@ MediaType Engine::getMediaType() const { if (result.find("video") != std::string_view::npos) { // Check if the video is real video stream, not static image which is treated as video const std::string command = - "ffprobe -v error -show_entries stream=code7c_name " + "ffprobe -v error -show_entries stream=codec_name " "-of default=noprint_wrappers=1:nokey=1 \"" + m_mediaPath.string() + "\"";