mirror of
https://github.com/fergalmoran/dss.git
synced 2026-01-25 02:06:10 +00:00
26 lines
953 B
HTML
26 lines
953 B
HTML
<html>
|
|
<head>
|
|
<script src="{{ STATIC_URL }}js/libs/jquery.js"></script>
|
|
<script src="{{ STATIC_URL }}js/libs/mediaelement/mediaelement-and-player.js"></script>
|
|
<link rel="stylesheet" href="{{ STATIC_URL }}css/bootstrap.css"/>
|
|
<link rel="stylesheet" href="{{ STATIC_URL }}css/mediaelement/mediaelementplayer.css"/>
|
|
</head>
|
|
<body>
|
|
|
|
<audio id="dss-player" src="{{ audio_url }}" type="audio/mp3" controls="controls">
|
|
<source src="{{ audio_url }}" type="audio/mp3" />
|
|
</audio>
|
|
<aside>Audio provided by <a href="{{ mix_url }}">Deep South Sounds</a></aside>
|
|
|
|
<script>
|
|
jQuery(document).ready(function ($) {
|
|
// declare object for video
|
|
var player = new MediaElementPlayer('#dss-player', {
|
|
features: ['playpause', 'current', 'progress', 'duration', 'volume'],
|
|
pluginPath: '/static/bin/mediaelement/'
|
|
});
|
|
console.log(player);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |