A DatoCMS plugin to embed Ausha podcast players. Paste an Ausha embed code and get a live preview with configurable display options (color, playlist, layout).

Install the plugin from the DatoCMS Plugin Marketplace.
<iframe ...></iframe>)Customisation options are available per record, directly in the field editor toolbar that appears above the player preview:
#751CBF). Leave empty to use the embed default.The field stores a JSON object with everything you need to render the player:
{ "src": "https://player.ausha.co/...", "title": "My Podcast", "height": 220, "rawEmbed": "<iframe ...></iframe>", "color": "#751CBF", "playlist": "true", "layout": "horizontal"}color, playlist, and layout are optional — absent or empty means the embed default is used.
// In React/Next.js<iframe src={record.aushaPlayer.src} title={record.aushaPlayer.title} height={record.aushaPlayer.height} style={{ width: "100%", border: "none" }} allow="autoplay"/>This plugin uses pnpm v10 as the package manager.
# Install dependenciespnpm install
# Start development serverpnpm dev
# Build for productionpnpm buildMade by Breaking Web
MIT