Browse Source

mpv no longer spams stderr while playing

master
mortie 7 years ago
parent
commit
f6b8e18deb
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      js/play/player.js

+ 1
- 1
js/play/player.js View File

@@ -98,7 +98,7 @@ exports.play = function(path, subFile, cb) {
args.push(subFile);
}

var lchild = spawn("mpv", args, { stdio: "inherit" });
var lchild = spawn("mpv", args, { stdio: ["inherit", "inherit", "ignore"] });
child = lchild;

lchild.running = true;

Loading…
Cancel
Save