/sound-play

An audio player for NodeJS.

Primary LanguageJavaScript

sound-play

🎵 Dead simple sound player for Node -- because it should be simple. 🤘

const sound = require('sound-play')

sound.play('C:\\file.mp3')
  • Support .wav, .mp3 and other extensions.

  • Work on Window and MacOS

Install

npm install sound-play
yarn add sound-play

Examples

Absolute path

sound.play('C:\\file.mp3')

Relative path

const path = require('path')
const filePath = path.join(__dirname, 'file.mp3')
sound.play(filePath)

Promise

sound.play('C:\\file.mp3').then(response => console.log('done'))

Async/await

try {
  await sound.play('C:\\file.mp3')
  console.log('done')
} catch (error) {
  console.error(error)
}

License

MIT