Setting nice level of transcode
I'm running a server with multiple services on it, one of them being Subsonic. And I don't want the transcoding process of Subsonic to take priority over any other process running.
So I added nice -n 19 before every transcode command like this:
nice -n 19 ffmpeg -i %s -ab %bk -v 0 -f mp3 -
But after this subsonic doesn't transcode anything at all. So how do I do it?
So I added nice -n 19 before every transcode command like this:
nice -n 19 ffmpeg -i %s -ab %bk -v 0 -f mp3 -
But after this subsonic doesn't transcode anything at all. So how do I do it?