Use MP4s when not on windows

Also, make it use 'veryfast' preset.  Still testing this, might have to
revise this later.
This commit is contained in:
jp9000
2014-02-27 23:14:03 -07:00
parent 7f087e95b3
commit f9809847cd
6 changed files with 17 additions and 8 deletions

View File

@@ -601,7 +601,12 @@ void OBSBasic::on_recordButton_clicked()
} else {
QString path = QFileDialog::getSaveFileName(this,
"Please enter a file name", QString(),
"Video Files (*.avi)");
#ifdef _WIN32
"AVI Files (*.avi)"
#else
"MP4 Files (*.mp4)"
#endif
);
if (path.isNull() || path.isEmpty())
return;