diff options
| author | tassaron | 2017-06-15 15:09:45 -0400 |
|---|---|---|
| committer | tassaron | 2017-06-15 15:09:45 -0400 |
| commit | 8603fa12e3d63705e3cbc202bd0635e5ac977225 (patch) | |
| tree | 3cf59a3b3f31caded5c70c151039f1e54be19cb8 /mainwindow.py | |
| parent | cb639e5c7ccf42e654f1dda1b75b082478cf73d9 (diff) | |
video scaling, position and distortion
Diffstat (limited to 'mainwindow.py')
| -rw-r--r-- | mainwindow.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mainwindow.py b/mainwindow.py index 5004bf6..ad1df10 100644 --- a/mainwindow.py +++ b/mainwindow.py @@ -321,7 +321,8 @@ class MainWindow(QtCore.QObject): fileName = QtGui.QFileDialog.getSaveFileName( self.window, "Set Output Video File", - outputDir, "Video Files (*.mp4 *.mov *.mkv *.avi *.webm *.flv)") + outputDir, + "Video Files (*.mp4 *.mov *.mkv *.avi *.webm *.flv);; All Files (*)") if not fileName == "": self.settings.setValue("outputDir", os.path.dirname(fileName)) |
