mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-12 11:01:45 +00:00
Implement visualizer plugin
This commit is contained in:
31
plugins/visualizer/visualizers/wave.js
Normal file
31
plugins/visualizer/visualizers/wave.js
Normal file
@ -0,0 +1,31 @@
|
||||
const { Wave } = require("@foobar404/wave");
|
||||
|
||||
class WaveVisualizer {
|
||||
constructor(
|
||||
audioContext,
|
||||
audioSource,
|
||||
visualizerContainer,
|
||||
canvas,
|
||||
audioNode,
|
||||
stream,
|
||||
options
|
||||
) {
|
||||
this.visualizer = new Wave(
|
||||
{ context: audioContext, source: audioSource },
|
||||
canvas
|
||||
);
|
||||
options.animations.forEach((animation) => {
|
||||
this.visualizer.addAnimation(
|
||||
eval(`new this.visualizer.animations.${animation.type}(
|
||||
${JSON.stringify(animation.config)}
|
||||
)`)
|
||||
);
|
||||
});
|
||||
}
|
||||
|
||||
resize(width, height) {}
|
||||
|
||||
render() {}
|
||||
}
|
||||
|
||||
module.exports = WaveVisualizer;
|
||||
Reference in New Issue
Block a user