This page will answer your questions:
http://www.buzzmii.com/fr/myadam
It's in French but here is the translation of the part on how to convert a video:
I couldn't read an MP4. I've tried several video format encoding the video but in vain. No problem with an AVI. An AVI contains a video in XVID and an audio in AC3. A video with
640x360 pixels is displayed just fine in full screen mode.
Download videos in 16:9, if possible in HD. Videos in 1280x720 pixels encoded in MP4 give the vest result after they are converted in AVI.
The right video format for IntelliLink:
<code>Container : AVI
Video : XVID, 640x360 pixels, 1200 kbps
Audio : AC3, 44.1 kHz stereo, 192 kbps</code></pre>
To encode in AVI a video in MP4 with
FFmpeg under Linux:
<div ="geshi"><div ="bash">ffmpeg -i video.mp4 -vcodec libxvid -s:v 640x360 -b:v 1200k -q:v 3 -acodec ac3 -ar 44100 -ab 192k -ac 2 video.avi
This command converts the video stream in XVID while resizing the image to
640x360 pixels with a bitrate of
1200 kbps and the audio stream in AC3 with a frequency of
44100 Hz and a bitrate of
192 kbps.