Skip to content

Commit

Permalink
Add .webm and .mkv to GUI render dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
nyanpasu64 committed Jun 30, 2021
1 parent 27e5194 commit 771d09b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -8,6 +8,7 @@
- Fix issue where foobar2000 WAV files fail with message "ValueError: Incomplete wav chunk." (#379)
- Build Win32 binaries as well as Win64 (#381)
- Build official Win32/Win64 binaries on Python 3.8 (the last release to support Windows 7) (#381)
- Add .mkv/.webm extensions to "Render to Video" dialog (#???)

## 0.7.0

Expand Down
7 changes: 6 additions & 1 deletion corrscope/gui/__init__.py
Expand Up @@ -525,7 +525,12 @@ def on_action_render(self):

# Name and extension (no folder).
video_filename = self.get_save_filename(cli.VIDEO_NAME)
filters = ["MP4 files (*.mp4)", "All files (*)"]
filters = [
"MP4 files (*.mp4)",
"Matroska files (*.mkv)",
"WebM files (*.webm)",
"All files (*)",
]

# Points to either `file_dir` or `render_dir`.
# Folder is obtained from `dir_ref`.
Expand Down

0 comments on commit 771d09b

Please sign in to comment.