view src/track/constants.cc @ 93:d5efb81540b3

statistics: add graph! also now we have a VERY VERY simple graph widget that probably sucks and doesn't work half the time :)
author Paper <mrpapersonic@gmail.com>
date Wed, 01 Nov 2023 13:52:34 -0400
parents d02fdf1d6708
children 18979b066284
line wrap: on
line source

#include "track/constants.h"

// clang-format off
// https://github.com/llvm/llvm-project/issues/62676
const std::vector<std::string> media_extensions = {
    "avi",
    "asf",
    "mp4",
    "mkv",
    "wmv"
};

const std::vector<std::string> media_players = {
#ifdef MACOSX
    "VLC"
#elif WIN32
    "vlc.exe", "mpc-hc.exe", "mpc-hc64.exe", "wmplayer.exe", "mpv.exe"
#else // linux, unix, whatevs
    "vlc", "mpv", "mpc-qt"
#endif
};
// clang-format on