podtrificustotalus/public/podlove-config.json
2025-07-09 21:33:31 -04:00

144 lines
2.9 KiB
JSON

/**
* Configuration Meta Information
*/
export default {
version: 5,
// player asset base path, falls back to ./
base: "player/",
activeTab: "chapters", // default active tab, can be set to [chapters, files, share, playlist]
theme: {
/**
* Tokens
* - if defined the player defaults are dropped
* - rgba as well as hex values are allowed
* - use this generator to get a direct visual feedback:
*/
tokens: {
brand: "#87B0D4",
brandDark: "#0F2942",
brandDarkest: "#1A3A4A",
brandLightest: "#E5EAECFF",
shadeDark: "#807E7C",
shadeBase: "#807E7C",
contrast: "#000",
alt: "#fff"
},
},
/**
* Subscribe Button
* - configuration for the subsscribe button overlay
* - if not defined the subscribe button won't be rendered
*/
"subscribe-button": {
feed: "https://feeds.podlovers.org/mp3", // Rss feed
/**
* Clients
* - list of supported podcast clients on android, iOS, Windows, OSX
* - only available clients on the used os/platform are shown
* - order in list determines rendered order
*/
clients: [
{
id: "apple-podcasts",
service: "id1523714548" // https://podcasts.apple.com/podcast/[service]
},
{
id: "antenna-pod"
},
{
id: "beyond-pod"
},
// {
// id: "castbox",
// service: "castbox-id"
// },
{
id: "castro"
},
{
id: "clementine"
},
// {
// id: "deezer",
// service: "" https://www.deezer.com/en/show/[service]
// },
{
id: "downcast"
},
{
id: "google-podcasts",
service: "https://feeds.podlovers.org/mp3" // feed
},
{
id: "gpodder"
},
{
id: "itunes"
},
{
id: "i-catcher"
},
{
id: "instacast"
},
{
id: "overcast"
},
{
id: "player-fm"
},
{
id: "pocket-casts"
},
{
id: "pocket-casts",
service: "https://feeds.podlovers.org/mp3" // feed
},
{
id: "pod-grasp"
},
{
id: "podcast-addict"
},
{
id: "podcast-republic"
},
{
id: "podcat"
},
{
id: "podscout"
},
{
id: "rss-radio"
},
// {
// id: "soundcloud",
// service: "", // https://soundcloud.com/[service]
// },
// {
// id: "spotify",
// service: "", // https://open.spotify.com/show/[service]
// },
// {
// id: "stitcher",
// service: "" // https://www.stitcher.com/podcast/[service]
// },
// {
// id: "youtube",
// service: "" // https://www.youtube.com/channel/[service]
// },
{
id: "rss"
}
]
},
};