mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
Change mkv into smff ("Simple Media File Format" which is the Standard Matroska file format that supports video, .mkv or .mka file extension)
This commit is contained in:
parent
a4809bbde5
commit
afbf8c1fa4
2 changed files with 2 additions and 2 deletions
|
|
@ -55,7 +55,7 @@ void CallModel::accept(bool withVideo) {
|
|||
params->setRecordFile(
|
||||
Paths::getCapturesDirPath()
|
||||
.append(Utils::generateSavedFilename(QString::fromStdString(mMonitor->getToAddress()->getUsername()), ""))
|
||||
.append(".mkv")
|
||||
.append(".smff")
|
||||
.toStdString());
|
||||
// Answer with local call address.
|
||||
auto localAddress = mMonitor->getCallLog()->getLocalAddress();
|
||||
|
|
|
|||
|
|
@ -177,7 +177,7 @@ bool ToolModel::createCall(const QString &sipAddress,
|
|||
params->setRecordFile(
|
||||
Paths::getCapturesDirPath()
|
||||
.append(Utils::generateSavedFilename(QString::fromStdString(address->getUsername()), ""))
|
||||
.append(".mkv")
|
||||
.append(".smff")
|
||||
.toStdString());
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue