I have a .mp4 (h264) file on my ubuntu and try to rotate it using avconv (or ffmpeg, the result is the same). Actually, whatever action I'm trying to do with the file I get the "filename: invalid data found when processing input"
The interesting thing is when I try to rotate the same file using ffmpeg library on windows, it runs smoothly. Below is the actual command that runs on windows, but doesn't run on ubuntu
ffmpeg -i inputFile.mp4 -vf transpose=1 outputFile.mp4
Any help is appreciated,
Thank you
Ilija
avconv -i inputVideo.mp4 -c:v libx264 -c:a copy -vf "vflip" outputVideo.mp4andavconv -i inputVideo.mp4 -dir cclock outputVideo.mp4- user3453357-vf transpose=1. - Camille Goudeseune