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

前端 未结 11 1542
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-24 12:13

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:

<
11条回答
  •  情深已故
    2020-12-24 12:57

    1. Create the file resize_video.sh, with the code below
    2. Open the terminal, run the command: sh resize_video.sh

    This script, will convert videos as needed by the AppStore.

    INPUT_VIDEO=app_preview.mov
    
    mkdir -p 6.5
    mkdir -p 5.5
    mkdir -p 12.9
    
    WIDTH=886
    HEIGHT=1920
    OUTPUT_VIDEO=6.5/app_preview.mov
    rm -f $OUTPUT_VIDEO
    ffmpeg -i $INPUT_VIDEO -qscale 0 -r 24 -y -vf scale=$WIDTH:$HEIGHT,setsar=1:1 $OUTPUT_VIDEO
    
    WIDTH=1080
    HEIGHT=1920
    OUTPUT_VIDEO=5.5/app_preview.mov
    
    rm -f $OUTPUT_VIDEO
    ffmpeg -i $INPUT_VIDEO -qscale 0 -r 24 -y -vf scale=$WIDTH:$HEIGHT,setsar=1:1 $OUTPUT_VIDEO
    
    WIDTH=1200
    HEIGHT=1600
    OUTPUT_VIDEO=12.9/app_preview.mov
    
    rm -f $OUTPUT_VIDEO
    ffmpeg -i $INPUT_VIDEO -qscale 0 -r 24 -y -vf scale=$WIDTH:$HEIGHT,setsar=1:1 $OUTPUT_VIDEO
    

    https://gist.github.com/5lineofcode/ba6fc90ed7628c3acf11a735437c7944

提交回复
热议问题