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(
|
params->setRecordFile(
|
||||||
Paths::getCapturesDirPath()
|
Paths::getCapturesDirPath()
|
||||||
.append(Utils::generateSavedFilename(QString::fromStdString(mMonitor->getToAddress()->getUsername()), ""))
|
.append(Utils::generateSavedFilename(QString::fromStdString(mMonitor->getToAddress()->getUsername()), ""))
|
||||||
.append(".mkv")
|
.append(".smff")
|
||||||
.toStdString());
|
.toStdString());
|
||||||
// Answer with local call address.
|
// Answer with local call address.
|
||||||
auto localAddress = mMonitor->getCallLog()->getLocalAddress();
|
auto localAddress = mMonitor->getCallLog()->getLocalAddress();
|
||||||
|
|
|
||||||
|
|
@ -177,7 +177,7 @@ bool ToolModel::createCall(const QString &sipAddress,
|
||||||
params->setRecordFile(
|
params->setRecordFile(
|
||||||
Paths::getCapturesDirPath()
|
Paths::getCapturesDirPath()
|
||||||
.append(Utils::generateSavedFilename(QString::fromStdString(address->getUsername()), ""))
|
.append(Utils::generateSavedFilename(QString::fromStdString(address->getUsername()), ""))
|
||||||
.append(".mkv")
|
.append(".smff")
|
||||||
.toStdString());
|
.toStdString());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue