play-sound
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/play-sound package

1.1.6 • Public • Published

play-sound

Downloads

Play sounds by shelling out to one of the available audio players.

Installation

npm install play-sound

Examples

var player = require('play-sound')(opts = {})

// $ mplayer foo.mp3 
player.play('foo.mp3', function(err){
  if (err) throw err
})

// { timeout: 300 } will be passed to child process
player.play('foo.mp3', { timeout: 300 }, function(err){
  if (err) throw err
})

// configure arguments for executable if any
player.play('foo.mp3', { afplay: ['-v', 1 ] /* lower volume for afplay on OSX */ }, function(err){
  if (err) throw err
})

// access the node child_process in case you need to kill it on demand
var audio = player.play('foo.mp3', function(err){
  if (err && !err.killed) throw err
})
audio.kill()

Options

Prior art

  • play.js - play sound files from node.js to your speakers

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i play-sound

Weekly Downloads

3,243

Version

1.1.6

License

MIT

Unpacked Size

5.49 kB

Total Files

4

Last publish

Collaborators

  • justinjmoses
  • shime