All Products’ Step-by-Step Video Tutorial Compilation

Tutorials for LCD Screen Eyes, Protogen LED Mask, Nail Painting, & More

SCLMRO 3rd-Gen LCD Eye Module File Conversion

AVI File Format Conversion for Windows & macOS

Date:2025-10-27

For Windows Systems

Please follow the instructions included in the package. Download our file format conversion tool, then convert your file to an AVI format recognizable by the system.

Operation Steps:

  1. Prepare your MP4 file with a resolution of 360 (note: specify 360p/360×240 etc. if needed for clarity).
  2. Use our CODETOOL (click the link to download) to convert the MP4 file to AVI.

For the 3rd-Gen LCD version notes, please check this video. Click here to watch. Kindly note the setup method for the shortcut buttons.

 

 

For MacOS

I can confirm it can convert mp4 this way...

ffmpeg -i input.mpg -vcodec mjpeg -qscale 1 -an output.avi.

It works with Mac if you can tell Mac users this. The directions are for English speakers with minimal computer knowledge

___________________________

MacOS:
install homebrew:
1. Open Terminal application
2. Paste the following and press enter
/bin/bash -c "$(curl -fsSL raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)";
4. Enter computer password if needed
5. Paste the following and press enter
echo >> /Users/benja/.zprofile
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/benja/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"

Install ffmpeg with brew:
6. Paste the following and press enter
brew install ffmpeg
7. Locate the file you want to convert. You need to point the input.mp4 (or whatever file you want to convert to mjpeg avi) to the name and directory of your file. It will autocomplete the filename when you press tab if it is the correct file and location. Example: ~/Downloads/input.mp4

Convert the file:
8.Paste and enter the following:
ffmpeg -i ~/Downloads/asdf1234.mp4 -vcodec mjpeg -qscale 1 -an output.avi