SourMesen / Mesen

Mesen is a cross-platform (Windows & Linux) NES/Famicom emulator built in C++ and C#
https://www.mesen.ca
GNU General Public License v3.0
1.25k stars 318 forks source link

More AVI codecs selection #837

Closed Yave-Yu closed 4 years ago

Yave-Yu commented 4 years ago

In current version, we can only use 3 codecs, but I want more. CSCD is a lossless codec, but I think TSCC is better than that, it generates more small AVI size but lossless graphic. If you implement AVI codec selection like other emulators, it would be wonferful! 20200526192302

SourMesen commented 4 years ago

Thanks for the request. Unfortunately, displaying that dialog you are referring to requires Windows-specific code, which I have purposefully avoided for the AVI export feature, because I need to support Linux as well.

Adding more codecs manually is time consuming, requires a lot of testing and does not really add anything to the program, so I would prefer to use my time on more unique/useful features. I would recommend using ffmpeg to convert the AVI files Mesen creates into whatever format you need.

Yave-Yu commented 4 years ago

because I need to support Linux as well.

I get it.