Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot upload video to iTunesConnect: The frame rate of your app video preview is too high

I made an App Store preview video using QuickTime player on OS X Yosemite.
When I try to upload the video to iTunesConnect, I get an error message:

The frame rate of your app video preview is too high.

I can't see any options in the QuickTime Player to change frame rate.

Error message that I am getting

Does anybody knows what to do with it?

like image 978
Vojtech Vrbka Avatar asked Oct 10 '14 13:10

Vojtech Vrbka


2 Answers

Videos can be easily converted using ffmpeg, a handy tool that can be installed using homebrew.

ffmpeg -r 30 -i 60fpsvideo.m4v -vcodec copy -acodec copy 30fpsvideo.avi 
like image 71
Tomas Camin Avatar answered Oct 02 '22 15:10

Tomas Camin


This is what worked for me:

ffmpeg -i input.mov -qscale 0 -r 24 -y output_5.mov 

-qscale 0 made sure the length stayed the same but the frame rate dropped from 56 or so (as it was recorded from my iPhone6 by the QuickTime) to exactly 24 !!

Then managed to successfully upload to iTunes, yay!

March 28, 2019 EDIT:

There is also this option to just do it with iMovie: Creating App Previews with iMovie

like image 44
Tim Friedland Avatar answered Oct 02 '22 15:10

Tim Friedland