Linux Post processing command
#1
Why doesnt my post processing command work?
It works if I manually execute the command.

avconv -i "%f" -vcodec libx264 -filter:v yadif -preset slow -threads 4 "%b"
Reply
#2
try using the full path to avconv
Reply
#3
Ok i'll try m8, and report back
Reply
#4
Hmm Unfortunately it didnt work either;
It now said;

/usr/bin/avconv -i "%f" -vcodec libx264 -filter:v yadif -preset slow -threads 4 "%b"


Any log I could check? Any rights issue?
Reply
#5
Not sure about logs for this - you could switch debugging on in the webUI and see what tvheadend logs to syslog.

Thinking about it, you'll need a path on the %b as well as likely as not, as I've no idea where avconv will be trying to write the file otherwise. Try "/path/to/%b".

I'm also not certain about the filename itself... if you %f is "/home/user/recordings/recording.ts", I presume %b is "recording.ts"? Or is it "recording" (I think that's %t?)? I guess you've already sorted this while testing the command in a shell, though.
Reply

Logout Mark Read Team Forum Stats Members Help
Post processing command0