-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·35 lines (30 loc) · 1.96 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<html ng-app="mdWavesurferApp">
<head>
<title>galaxias</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='http://fonts.googleapis.com/css?family=Roboto:400,500' rel='stylesheet' type='text/css'>
<link href='https://cdnjs.cloudflare.com/ajax/libs/material-design-iconic-font/2.2.0/css/material-design-iconic-font.min.css'
rel='stylesheet' type='text/css'>
<link href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.9.1/styles/github.min.css" rel="stylesheet">
<link rel="stylesheet" href="main.css"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.7/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.7/angular-animate.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.7/angular-aria.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-material/1.0.0-rc3/angular-material.min.js"></script>
<script type="text/javascript" src="dist/wavesurfer.min.js"></script>
<script type="text/javascript" src="wavesurfer.directive.js"></script>
<script src="dist/plugin/wavesurfer.spectrogram.min.js"></script>
<script type="text/javascript" src="main.js"></script>
</head>
<body ng-controller="MainController" >
<!-- Long list, using previously loaded files-->
<md-wavesurfer-audio player-wave-color="black" ng-repeat="item in longList" player-progress-color="black" player-backend="MediaElement">
<md-wavesurfer-source src="{{item.url}}"
title="{{item.title}}"></md-wavesurfer-source>
</md-wavesurfer-audio>
<div>
Samples from <a href="banda.codigo.xyz">Banda Aberta</a>, by <a href="http://www.ariane.stolfi.org">Ariane Stolfi</a>, 2017, <a href="https://github.com/arianestolfi/spectrogramplayer" target="_blank">fork me on github</a>
</div>
</body>
</html>