When i try to upload videos captured from my iPhone in my app, the server performs a conversion from .mov to .mp4 so that it can be played in other platforms. However the problem is that when i shoot the video(in portrait orientation) and is converted(using ffmpeg) and then played back from the server, it appears to be rotated. Any idea?

link|improve this question
feedback

2 Answers

up vote 0 down vote accepted

Depending on which version of ffmpeg you have and how it's compiled, one of the following should work...

ffmpeg -vfilters "rotate=90" -i input.mov output.mp4

...or...

ffmpeg -vf "transpose=1" -i input.mov output.mp4
link|improve this answer
Thanks, it worked – aqs Feb 23 at 11:25
feedback

For sake of completeness, the reason this is happening is that iPhones only actually capture video in one fixed orientation. The measured orientation is then recorded in Apple-specific metadata.

The effect is that Quicktime Player reads the metadata and rotates the video to the correct orientation during playback, but other software (e.g., VLC) does not and shows it as oriented in the actual codec data.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.