diff options
-rw-r--r-- | src/loop-play.js | 5 | ||||
-rw-r--r-- | todo.txt | 3 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/loop-play.js b/src/loop-play.js index 1e1a75d..7fec995 100644 --- a/src/loop-play.js +++ b/src/loop-play.js @@ -145,10 +145,7 @@ class SoXPlayer extends Player { // You don't get keyboard controls such as seeking or volume adjusting // with SoX, though. - this.process = spawn('play', [ - ...this.playOpts, - file - ]) + this.process = spawn('play', [file]) return promisifyProcess(this.process) } diff --git a/todo.txt b/todo.txt index 98ef844..b8c992d 100644 --- a/todo.txt +++ b/todo.txt @@ -275,3 +275,6 @@ TODO: Players (MPV, SoX) should be separate (sub-)classes. TODO: FIFO doesn't work on Windows. (Done! - Use mpv-nofifo player. Would like to automatically check for mkfifo command; then use nofifo if that doesn't exist.) + +TODO: It looks like the SoX player is broken? - Fix this! + (Done!) |