fix ffmpeg webm support (fixes #1477)
This commit is contained in:
parent
939de46905
commit
b23cba072b
|
@ -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.",
|
||||
|
|
Loading…
Reference in New Issue