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
For Windows Systems
Operation Steps:
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
