Skip to content

Instantly share code, notes, and snippets.

View moritzebeling's full-sized avatar
🌍
Home on earth

moritzebeling moritzebeling

🌍
Home on earth
View GitHub Profile
@moritzebeling
moritzebeling / mixcloud-player.html
Last active March 7, 2025 02:14
Mixcloud Widget API Custom Player
<script src="//widget.mixcloud.com/media/js/widgetApi.js" type="text/javascript"></script>
<iframe width="100%" height="60" src="https://www.mixcloud.com/widget/iframe/?hide_cover=1&mini=1&light=1&hide_artwork=1&autoplay=1&feed=%2Fradioraheem_milano%2Fblack-sugar-puntata-01%2F" frameborder="0" allow="autoplay"></iframe>
<div class="controls">
<button id="play">Play</button>
<button id="pause">Pause</button>
<button id="next">Next</button>
<button id="load0">Load Track 1</button>
<button id="load1">Load Track 2</button>
@moritzebeling
moritzebeling / Player.svelte
Last active December 31, 2021 17:14
Vimeo Svelte Player
<script context="module">
const allPlayers = new Set();
</script>
<script>
import Player from "@vimeo/player";
import Progress from "./Progress.svelte";
import { onDestroy } from "svelte";
import { renderTime, renderPercent, errorHandler } from "./helpers.js";