Skip to content

Commit

Permalink
Lowered the priority of the transcoder
Browse files Browse the repository at this point in the history
  • Loading branch information
manast committed Feb 27, 2014
1 parent 08d7dd5 commit bb80129
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/avconv.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ function AVConv(infiles, outfiles, options, cb) {
args.push('-strict', 'experimental', filename);
});

var avconv = child.spawn('avconv', args);
// args.unshift('--adjustment=15', 'avconv') // '-n 15'
args.unshift('avconv')
var avconv = child.spawn('nice', args);

avconv.stdout.on('data', function (data) {
//console.log('stdout: ' + data);
Expand Down

0 comments on commit bb80129

Please sign in to comment.