UNPKG

@extractors/pyin

Version:

pYIN Monophonic pitch and note tracking Vamp plugin, wrapped as piper service

16 lines 377 B
<html> <head> <title>Bundle Test</title> </head> <body> <div id="results"></div> </body> <script src="pyin.umd.js"></script> <script> const service = pYIN.createService(); service.list({}).then(res => { document.getElementById('results').innerHTML = `Expected ${3} extractors, got ${res.available.length}`; }); </script> </html>