use mkv format instead of smff (not readable for most people)

This commit is contained in:
Gaelle Braud 2025-10-27 09:56:32 +01:00
parent ad7a599794
commit ece0957cbc
2 changed files with 2 additions and 2 deletions

View file

@ -56,7 +56,7 @@ void CallModel::accept(bool withVideo) {
params->setRecordFile(
Paths::getCapturesDirPath()
.append(Utils::generateSavedFilename(QString::fromStdString(mMonitor->getToAddress()->getUsername()), ""))
.append(".smff")
.append(".mkv")
.toStdString());
// Answer with local call address.
auto localAddress = mMonitor->getCallLog()->getLocalAddress();

View file

@ -214,7 +214,7 @@ bool ToolModel::createCall(const QString &sipAddress,
params->setRecordFile(
Paths::getCapturesDirPath()
.append(Utils::generateSavedFilename(QString::fromStdString(address->getUsername()), ""))
.append(".smff")
.append(".mkv")
.toStdString());
}