From a47061017c1debe476bbfbc5334573f6d596ab50 Mon Sep 17 00:00:00 2001 From: JDierkse Date: Fri, 8 May 2020 16:38:57 +0200 Subject: [PATCH] Remove 8kbit limitation on VStarCam audio --- Recorder/VStarCamRecorder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Recorder/VStarCamRecorder.cpp b/Recorder/VStarCamRecorder.cpp index f2c85b5..5249c21 100644 --- a/Recorder/VStarCamRecorder.cpp +++ b/Recorder/VStarCamRecorder.cpp @@ -61,7 +61,7 @@ std::string VStarCamRecorder::Video(ctpl::thread_pool* pThreadPool, const std::s fileName << m_settings.Path << "/" << m_settings.IpAddress << "/VSTA000000XXXXX_0_" << GetDateTimeString(true) << ".mp4"; std::stringstream command; - command << ffmpeg << " -i \"" << url.str() << "\" -t 30 -c:v copy -c:a aac -b:a 8k -strict experimental " << fileName.str() << " > /dev/null 2>&1"; + command << ffmpeg << " -i \"" << url.str() << "\" -t 30 -c:v copy -c:a aac -strict experimental " << fileName.str() << " > /dev/null 2>&1"; std::string cmd(command.str()); Logging::Log(Logging::Severity::Debug, cmd);