Error: Audio is not two-channel stereo
App Store Connect rejection
Apple requires all App Store preview videos to have AAC stereo (2-channel) audio at a 48 kHz sample rate. If your video's audio track doesn't match these exact requirements, App Store Connect will reject the upload with this error. Even if the video looks perfect, a single audio mismatch is enough to block your submission.
You can fix the audio channel layout using FFmpeg from the command line:
ffmpeg -i input.mp4 -c:v copy -c:a aac -b:a 256k -ac 2 -ar 48000 output.mp4
This works, but you also need to verify the video codec, resolution, frame rate, and duration all match Apple's specs — one wrong parameter and App Store Connect rejects the upload.
LaunchSpec handles audio encoding automatically — upload your recording and get a file with AAC stereo 48 kHz, correct resolution, frame rate, and duration. Every spec, first try.
Upload your screen recording and get a compliant App Store preview video. No command line required.
Convert Now