I'm trying to re size a video that's not in the same directory of PHP exec code, this is my ffmpeg code:
ffmpeg.exe -i ../Gotten Movies/test.mp4 -s hd480 -c:v libx264 -crf 23 -c:a aac -strict -2 ../Gotten Movies/test2o.mp4The error which I'm getting is:
../Gotten: Invalid data found when processing input
I think the problem is because of choosing previous directory with ../ I've tried to cd Gotten Movies; ffmpeg.exe -i ../Gotten Movies/test.mp4 -s hd480 -c:v libx264 -crf 23 -c:a aac -strict -2 ../Gotten Movies/test2o.mp4But it didn't work too what can shall I do to fix the issue thanks.
..\Gotten: Invalid data found when processing input
now :( – 7al7ol