Explorar el Código

mpv no longer spams stderr while playing

master
mortie hace 7 años
padre
commit
f6b8e18deb
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      js/play/player.js

+ 1
- 1
js/play/player.js Ver fichero

@@ -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;

Cargando…
Cancelar
Guardar