Skip to content

mapstertech/audio-editing-test

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

start with

npm start

for now, you will need to edit the node_module audio as follows: path: node_modules/audio/src/core.js

// In node_modules/audio/src/core.js add this function getWav())

// return a wav file not for download
Audio.prototype.getWav = function getWav (callback) {
    try {
        let buffer = this.read({format: 'audiobuffer'})

        let wav = toWav(buffer)

        callback && callback(null, wav)

        return this
    } catch(err) {
        callback(err)
    }
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published