In my post processor command I trigger FFMPEG to transcode from a TS container to a MKV container and compress the video a tad. It works fine:
/usr/bin/ffmpeg -i "%f" -f matroska -crf 22 -c:a libvorbis -vf scale=-1:720 -y "/video/%t-%p.mkv"
In my post remove command I want to call rm to delete the file I just created with ffmpeg. My command is:
rm -f "/video/%t-%p.mkv"
It doesn't work. The file remains.
I am curious that the file that was created by ffmpeg has single quotes around it: 'Blue Bloods-S01E09.mkv'
Can anyone spot my error as to why it doesn't delete this file?
Many thanks!