Skip to content

Commit 8677248

Browse files
authored
Merge pull request #16 from MTG/dev
update CDN links in web examples
2 parents a0c352a + 08b85e5 commit 8677248

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

examples/audio-worklets/essentia-worklet-processor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// import Module from 'https://unpkg.com/essentia.js@0.0.8/dist/essentia-module.js';
2-
import { EssentiaModule } from "../../dist/essentia-wasm-module.js";
2+
import { EssentiaModule } from "https://unpkg.com/essentia.js@0.0.9-dev/dist/essentia-wasm.module.js";
33
// import Essentia JS API interface
4-
import Essentia from "../../dist/essentia.js-core-module.js";
4+
import Essentia from "https://unpkg.com/essentia.js@0.0.9-dev/dist/essentia.js-core.es.js";
55
// Tools for sending audio interleaved audio frames between threads, wait-free from the ringbuf.js package
66
// import { RingBuffer, AudioReader, ParameterReader } from "https://unpkg.com/browse/ringbuf.js@0.1.0/dist/index.es.js";
77

examples/script-node-processor/example.html

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
<body style="background-color: #000000!important;"">
1010
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
1111
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.js"></script>
12-
<!-- <script src="https://unpkg.com/essentia.js@0.0.8/dist/essentia.js"></script> -->
13-
<script src="../../dist/essentia-wasm-web.js"></script>
14-
<script src="../../dist/essentia.js-core.js"></script>
15-
<script src="../../dist/essentia.js-plot.js"></script>
12+
<script src="https://unpkg.com/essentia.js@0.0.9-dev/dist/essentia-wasm.web.js"></script>
13+
<script src="https://unpkg.com/essentia.js@0.0.9-dev/dist/essentia.js-core.js"></script>
14+
<script src="https://unpkg.com/essentia.js@0.0.9-dev/dist/essentia.js-plot.js"></script>
1615
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
1716

1817
<div class="ui main_wrapper landing-image">

0 commit comments

Comments
 (0)