index.html 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  5. <title>wavesurfer.js | ELAN player</title>
  6. <link href="data:image/gif;" rel="icon" type="image/x-icon" />
  7. <!-- Bootstrap -->
  8. <link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet">
  9. <link rel="stylesheet" href="../css/style.css" />
  10. <link rel="stylesheet" href="../css/ribbon.css" />
  11. <link rel="stylesheet" href="css/elan.css" />
  12. <link rel="screenshot" itemprop="screenshot" href="https://katspaugh.github.io/wavesurfer.js/example/screenshot.png" />
  13. <!-- wavesurfer.js -->
  14. <script src="../../dist/wavesurfer.js"></script>
  15. <!-- regions plugin -->
  16. <script src="../../dist/plugin/wavesurfer.regions.js"></script>
  17. <!-- ELAN format renderer -->
  18. <script src="../../dist/plugin/wavesurfer.elan.js"></script>
  19. <!-- App -->
  20. <script src="app.js"></script>
  21. <script src="../trivia.js"></script>
  22. </head>
  23. <body itemscope itemtype="http://schema.org/WebApplication">
  24. <div class="container">
  25. <div class="header">
  26. <noindex>
  27. <ul class="nav nav-pills pull-right">
  28. <li><a href="?fill">Fill</a></li>
  29. <li><a href="?scroll">Scroll</a></li>
  30. </ul>
  31. </noindex>
  32. <h1 itemprop="name"><a href="http://wavesurfer-js.org">wavesurfer.js</a><noindex> + <a rel="nofollow" href="http://spokencorpora.ru/showelan.py">ELAN</a></noindex></h1>
  33. </div>
  34. <div id="demo">
  35. <div id="waveform">
  36. <div class="progress progress-striped active" id="progress-bar">
  37. <div class="progress-bar progress-bar-info"></div>
  38. </div>
  39. <!-- Here be waveform -->
  40. </div>
  41. <div class="controls">
  42. <button class="btn btn-primary" data-action="play">
  43. <i class="glyphicon glyphicon-play"></i>
  44. Play
  45. /
  46. <i class="glyphicon glyphicon-pause"></i>
  47. Pause
  48. </button>
  49. </div>
  50. </div>
  51. <div id="annotations" class="table-responsive">
  52. <!-- Here be transcript -->
  53. </div>
  54. <div class="footer row">
  55. <div class="col-sm-12">
  56. <a rel="license" href="https://opensource.org/licenses/BSD-3-Clause"><img alt="BSD-3-Clause License" style="border-width:0" src="https://img.shields.io/badge/License-BSD%203--Clause-blue.svg" /></a>
  57. </div>
  58. <div class="col-sm-8">
  59. <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 href="https://github.com/katspaugh/wavesurfer.js">katspaugh</a> is licensed under a <a rel="license" href="https://opensource.org/licenses/BSD-3-Clause">BSD-3-Clause License</a>.
  60. </div>
  61. <div class="col-sm-4">
  62. <p>
  63. The ELAN program and format were developed by <a href="http://tla.mpi.nl/tools/tla-tools/elan/">Max Planck Institute</a>.
  64. </p>
  65. <p>
  66. The sample ELAN file and audio are from <a rel="nofollow" href="http://spokencorpora.ru/">spokencorpora.ru</a>, used with permission.
  67. </p>
  68. </div>
  69. </div>
  70. </div>
  71. <div class="github-fork-ribbon-wrapper right">
  72. <div class="github-fork-ribbon">
  73. <a itemprop="isBasedOnUrl" href="https://github.com/katspaugh/wavesurfer.js">Fork me on GitHub</a>
  74. </div>
  75. </div>
  76. <script>
  77. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  78. (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  79. m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  80. })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
  81. ga('create', 'UA-50026819-1', 'wavesurfer.fm');
  82. ga('send', 'pageview');
  83. </script>
  84. </body>
  85. </html>