UNPKG

wavesurfer.js

Version:

Interactive navigable audio visualization using Web Audio and Canvas

134 lines (108 loc) 5.89 kB
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>wavesurfer.js | Annotation tool</title> <link href="data:image/gif;" rel="icon" type="image/x-icon" /> <!-- Bootstrap --> <link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet"> <link rel="stylesheet" href="../css/style.css" /> <link rel="stylesheet" href="../css/ribbon.css" /> <link rel="screenshot" itemprop="screenshot" href="http://katspaugh.github.io/wavesurfer.js/example/screenshot.png" /> <!-- wavesurfer.js --> <script src="../../dist/wavesurfer.min.js"></script> <!-- plugins --> <script src="../../plugin/wavesurfer.timeline.js"></script> <script src="../../plugin/wavesurfer.regions.js"></script> <script src="../../plugin/wavesurfer.minimap.js"></script> <!-- App --> <script src="../trivia.js"></script> <script src="app.js"></script> </head> <body itemscope itemtype="http://schema.org/WebApplication"> <div class="container"> <div class="header"> <ul class="nav nav-pills pull-right"> <li><a href="/"><i class="glyphicon glyphicon-home"></i></a></li> </ul> <h1 itemprop="name">wavesurfer.js Annotations Tool</h1> </div> <div id="demo"> <p id="subtitle" class="text-center text-info">&nbsp;</p> <div id="wave-timeline"></div> <div id="waveform"> <!-- Here be waveform --> </div> <div class="row" style="margin: 30px 0"> <div class="col-sm-8"> <p> Click on a region to enter an annotation.<br /> Shift-click plays a region in a loop. </p> </div> <div class="col-sm-2"> <button class="btn btn-primary btn-block" data-action="play"> <span id="play"> <i class="glyphicon glyphicon-play"></i> Play </span> <span id="pause" style="display: none"> <i class="glyphicon glyphicon-pause"></i> Pause </span> </button> </div> <div class="col-sm-2"> <button class="btn btn-info btn-block" data-action="export" title="Export annotations to JSON"> <i class="glyphicon glyphicon-file"></i> Export </button> </div> </div> </div> <form role="form" name="edit" style="opacity: 0; transition: opacity 300ms linear; margin: 30px 0;"> <div class="form-group"> <label for="start">Start</label> <input class="form-control" id="start" name="start" /> </div> <div class="form-group"> <label for="end">End</label> <input class="form-control" id="end" name="end" /> </div> <div class="form-group"> <label for="note">Note</label> <textarea id="note" class="form-control" rows="3" name="note"></textarea> </div> <button type="submit" class="btn btn-success btn-block">Save</button> <center><i>or</i></center> <button type="button" class="btn btn-danger btn-block" data-action="delete-region">Delete</button> </form> <div class="footer row"> <div class="col-sm-12"> <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by/3.0/80x15.png" /></a> </div> <div class="col-sm-8"> <span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Text" property="dct:title" rel="dct:type">wavesurfer.js</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="https://github.com/katspaugh/wavesurfer.js" property="cc:attributionName" rel="cc:attributionURL">katspaugh</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/3.0/deed.en_US">Creative Commons Attribution 3.0 Unported License</a>. </div> <div class="col-sm-4"> <p> The sound file is from <a href="https://librivox.org/librivox-multilingual-short-works-collection-001-by-various/">librivox.org</a>. </p> </div> </div> </div> <div class="github-fork-ribbon-wrapper right"> <div class="github-fork-ribbon"> <a itemprop="isBasedOnUrl" href="https://github.com/katspaugh/wavesurfer.js">Fork me on GitHub</a> </div> </div> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-50026819-1', 'wavesurfer.fm'); ga('send', 'pageview'); </script> </body> </html>