play-sound icon indicating copy to clipboard operation
play-sound copied to clipboard

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

Results 17 play-sound issues
Sort by recently updated
recently updated
newest added

With this change calls to the player that passes multiple arguments such as `trim` and `vol` will be accepted and interpreted by the player. `audio = playSound.play( filePath, { play:...

I'm not getting any audio playback on windows. I installed mplayer and set it as the player manually; it looks like it's properly loading the sound but no audio is...

Is there a way to adjust the volume for all types of players, not just a specifically named one? The example in the README says `{ afplay: ['-v', 1 ]...

player.play("http://somedomain.com/audio/demo.mp3", function(err) { if (err) throw err; });

Good afternoon and thank you for your work. I'm trying to play an audio file when I receive a value from a bluetooth characteristic on a Raspberry Pi. I'm using...

Since version 1.1.2 version you can't check if process was killed because err.killed always returns undefined (err is only a number, not an object).

Is there any way to pause/resume audio? Thanks

Does play-sound provide an option to know whether the player is running or not? As my function is runing at 3 times per second, if there are two audio files...

On Raspberry Pi 3B, using 'play' as player (which play-sound defaulted to in my case), the last second of audio output is cut off. A .wav file saying 'four thousand'...

I've run into an error when I try to run this code. ```js let player = require('play-sound')(opts = {}); player.play('Haywyre - Contagious.mp3', function (err) { if (err) throw err; });...