fix ffmpeg webm support (fixes #1477)

This commit is contained in:
zeromus 2019-02-05 15:29:40 -05:00
parent 939de46905
commit b23cba072b
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ namespace BizHawk.Client.EmuHawk
new FormatPreset("MP4", "AVC video and AAC audio in an MP4 container.",
"-c:a aac -c:v libx264 -f mp4", false, "mp4"),
new FormatPreset("WebM", "VP8 video and Vorbis audio in a WebM container.",
"-c:a libvorbis -c:v libvpx -f webm", false, "webm"),
"-c:a libvorbis -c:v libvpx -auto-alt-ref 0 -f webm", false, "webm"),
new FormatPreset("Ogg", "Theora video and Vorbis audio in an Ogg contrainer.",
"-c:a libvorbis -c:v libtheora -f ogg", false, "ogg"),
new FormatPreset("Xvid", "Xvid video and MP3 audio in an AVI container.",