Last active
July 29, 2025 12:48
-
-
Save jfqd/100ec8cd7e7544c22958c1f167bc3c1e to your computer and use it in GitHub Desktop.
Podlove Podcast-Player Snippet für RadiantMagic CMS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <r:if_assets> | |
| <div id="podlove_player"></div> | |
| <script src="/libs/podlove/4.2.4/embed.js"></script> | |
| <script> | |
| podlovePlayer('#podlove_player', { | |
| theme: { | |
| main: '#efefef', | |
| highlight: '#444' | |
| }, | |
| title: '<r:title />', | |
| summary: '<r:content part="summary" />', | |
| poster: '<r:parent><r:assets:first><r:assets:image size="250px" /></r:assets:first></r:parent>', | |
| show: { | |
| title: '<r:parent><r:title /></r:parent>', | |
| summary: '<r:parent><r:content part="podcast-summary" /></r:parent>', | |
| poster: '<r:assets:url id="13918" size="250px" />', | |
| url: '<r:parent><r:url /></r:parent>' | |
| }, | |
| reference: { | |
| base: '/libs/podlove/4.2.4/', | |
| }, | |
| audio: [{ | |
| url: '<r:assets:first><r:assets:url /></r:assets:first>', | |
| mimeType: 'audio/mpeg', | |
| title: 'Audio MP3' | |
| }], | |
| visibleComponents: [ | |
| 'poster', | |
| 'showTitle', | |
| 'episodeTitle', | |
| 'subtitle', | |
| 'progressbar', | |
| 'tabAudio', | |
| 'tabInfo' | |
| ], | |
| }); | |
| </script> | |
| <noscript> | |
| <r:assets:first><r:assets:audio /></r:assets:first> | |
| </noscript> | |
| </r:if_assets> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment