Use the browser Audio api to play mp3 files in node
npm install node-mp3-player


Use the browser Audio api to play mp3 files in node.
Browser api brought to you by electron (specifically electron-spawn)
The motivation being this should be more cross-platform friendly.
API is still early stages and supports the basic stuff, we're open to new functionality being requested and/or contributed.
Require the createAudio method and use it to get the Audio constructor.
The Audio constructor has more or less the same API as the browser Audio global. See the API section for specific quircks.
Please note that the createAudio method instantiates an electron child_process in order to access the the browser API.
Calling it multiple times will instantiate multiple electron processes. This is probably not what you want.
You probably want to create multiple files using the Audio pseudo constructor. Though if multiple electron instances is your thing, knock your socks off.
``javascript
const { createAudio } = require('node-mp3-player')
const Audio = createAudio();
(async () => {
const myFile = await Audio(${__dirname}/mp3/foo.mp3)
await myFile.volume(0.5)
const currentVolume = await myFile.volume() // 0.5
await myFile.loop()
await myFile.stop()
})()
`
javascript
const myFile = await Audio('/path/to/my/file')
`$3
`javascript
const myFile = await Audio('/path/to/my/file')
await myFile.play() // plays the file
await myFile.stop() // stops the file
`$3
`javascript
const myFile = await Audio('/path/to/my/file')
await myFile.volume(0.5) // changes the volume, similar to the browser myFile.volume = 0.5
`$3
`javascript
const myFile = await Audio('/path/to/my/file')
await myFile.loop(true) // loops the file similar to the browser myFile.loop = true
await myFile.loop(false) // unloops the file similar to the browser myFile.loop = false
``