I have spent the better part of 2 hours trying to execute ffmpeg with no luck. I have now reduced it to a simple input and output file and execture but havent been able to get any output. Is there anyway i could actually see the command that it is executing?
runme:=Tprocess.create(nil);
runme.executable:='/usr/bin/ffmpeg';
runme.options:=runme.options+[powaitonexit];
runme.parameters.add(' -i '+opendialog1.filename);
runme.parameters.add(' /home/[name]/Desktop/output.mp4');
runme.parameters.add(' -y');
runme.execute;
I have read the previous posts but as far as i can see its identical but still no output.