How to use the scribbletune.clip function in scribbletune

To help you get started, weā€™ve selected a few scribbletune examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github silvia-odwyer / Onyx / discordBot.js View on Github external
// Playback samples.
    else if (music_cmds.includes(cmd)) {
        console.log("playing")
        playSound(msg, `${cmd}.wav`, cmd);
        msg.channel.send(`${cmd} sample free here: ${link}`)
        msg.reply("Now try combining the sample with another sample by typing `-fx build" + ` ${cmd}` + "`");



    }


    // ScribbleTune use
    else if (cmd === "music") {
        const scribble = require('scribbletune');
        var clip = scribble.clip({
            notes: 'c4'
        });
        scribble.midi(clip);

        // const broadcast = client.createVoiceBroadcast();
        // broadcast.playFile('fx.wav');

        // for (const connection of client.voiceConnections.values()) {
        //     connection.playBroadcast(broadcast);
        //     console.log("Playing")
        // }
    }

    // YouTube Integration
    else if (cmd === "yt") {
        var search_query = msg.content.slice(4, msg.content.length);
github wbkd / from-data-to-sound / index.js View on Github external
const scribble = require('scribbletune');

// example data
const data = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1];

const min = Math.min(...data);
const octaves = [...Array(5)].map((d, i) => i + 1); // [1, 2, 3, 4, 5]

// creates array of notes like 'c1', 'd1', 'e1', 'gb1', 'ab1', 'bb1', 'c2', ...
const notes = octaves.reduce((res, octave) =>
  res.concat(scribble.scale('c', 'whole tone', octave, false))
, []);

const midiData = scribble.clip({
  notes: data.map(value => notes[value - min]),
  pattern: 'x',
  noteLength: '1/16',
});

// write the MIDI file šŸŽµšŸŽµšŸŽµ
scribble.midi(midiData, 'data-sonification.mid');

scribbletune

Create music with JavaScript and Node.js!

MIT
Latest version published 2 years ago

Package Health Score

53 / 100
Full package analysis