VideoFFmpegComponent is now the default video player and no longer marked as experimental.

This commit is contained in:
Leon Styhre 2021-05-14 10:53:50 +02:00
parent 3a82249163
commit 1d0d5326a8
2 changed files with 2 additions and 2 deletions

View file

@ -759,8 +759,8 @@ void GuiMenu::openOtherSettings()
auto video_player = std::make_shared<OptionListComponent<std::string>>
(mWindow, getHelpStyle(), "FULLSCREEN MODE", false);
std::string selectedPlayer = Settings::getInstance()->getString("VideoPlayer");
video_player->add("FFmpeg", "ffmpeg", selectedPlayer == "ffmpeg");
video_player->add("VLC", "vlc", selectedPlayer == "vlc");
video_player->add("FFmpeg (experimental)", "ffmpeg", selectedPlayer == "ffmpeg");
// If there are no objects returned, then there must be a manually modified entry in the
// configuration file. Simply set the video player to VLC in this case.
if (video_player->getSelectedObjects().size() == 0)

View file

@ -205,7 +205,7 @@ void Settings::setDefaults()
#if defined (__unix__)
mStringMap["FullscreenMode"] = { "normal", "normal" };
#endif
mStringMap["VideoPlayer"] = { "vlc", "vlc" };
mStringMap["VideoPlayer"] = { "ffmpeg", "ffmpeg" };
#if defined(_RPI_)
mBoolMap["VideoOmxPlayer"] = { false, false };
// We're defaulting to OMX Player for full screen video on the Pi.