Last night I got a short Planetarium video from Scott Sumner at the Noble Planetarium in Fort Worth. It is called "Monsters of the Cosmos" and it runs less than 4 minutes. It is an M2V video clip with a 2048X2048 frame size and a separate audio track that is a .wav file. Here is the text stream I typed to try to create a usable video for our MGIII system:
ffmpeg.exe -i <input video> -vcodec mpeg2video -qmin 1 -qmax 3 -s 1536x1536 -i <input audio> -acodec libmp3lame -ab 256k Monsters.avi
I get the following error message from ffmpeg:
Option video_size not found.
I have tried several different sequences, but nothing seems to work. What am I doing wrong?
I appreciate your help.