This is a simple video player app for the Numworks calculator.
| Rickroll | Matrix |
|---|---|
![]() |
![]() |
To install this app, you'll need to:
- Download the
VideoPlayer.nwafile, which you can download from the Releases. - Download a compatible video file in
mjpegformat. You can take them from the samples folder. Or convert your own videos using tools like ffmpeg with the instructions below. - Connect your NumWorks calculator to your computer using a USB cable.
- Head to my.numworks.com/apps to send the
nwafile on your calculator along themjpegvideo.
Keep the resolution at 320×240. Adjust -q:v, fps= and -t for quality, fps and time.
With cropping:
ffmpeg -i input.mp4 -vf "scale=320:240:force_original_aspect_ratio=increase,crop=320:240,setsar=1:1,fps=15" -t 00:00:30 -vcodec mjpeg -q:v 24 -an output.mjpegWithout cropping:
ffmpeg -i input.mp4 -vf "scale=320:240:force_original_aspect_ratio=increase,setsar=1:1,fps=15" -t 00:00:30 -vcodec mjpeg -q:v 24 -an output.mjpeg| Key | Action |
|---|---|
| Back | Quit app |
| Shift | Change FPS |
| EXE | Debug mode |
It runs around ~35 fps on n0120, and around ~15 fps on n0110 and n0115
I made tutorials here :

