Pynote Studio is a Flipnote Studio recreation written in Python 3! This project allows you to create flipnotes on your computer!
- Create Flipnote animations on PC
- Export as MP4 (may be broken on Windows?)
- Save project and come back later
I - Show Info Menu
B - Switch between Red and Blue
X - Erase current Page
< Arrow Key - Navigate Page Left
> Arrow Key - Navigate Page Right
Backspace - Delete current Page
CTRL + C - Copy current Page
CTRL + V - Paste current Page
CTRL + S - Save Project (as rawflipnote.rawppm)
CTRL + O - Open Project (from rawflipnote.rawppm)
CTRL + E - Export as MP4
- Python 3.6+
- ffmpeg
- The following Python packages:
- pygame
First, clone the repository to your local machine:
git clone https://github.com/RekuNote/PynoteStudio.git
cd PynoteStudio
It's recommended to use a virtual environment to manage dependencies:
python3 -m venv venv
source venv/bin/activate # On Windows, use `venv\Scripts\activate`
Install the required packages using pip
:
pip install pygame
Ensure the directory structure is set up correctly:
PynoteStudio/
├── assets/
│ ├── font.otf
│ ├── blank.png
│ ├── blue.png
│ ├── delete.png
│ ├── erasebutton.png
│ ├── eraser.png
│ ├── frame_l.png
│ ├── frame_r.png
│ ├── pen.png
│ ├── play.png
│ ├── red.png
│ ├── splash_image.png
│ ├── stop.png
│ └── third_color_button.png
├── sound/
│ ├── BACK.wav
│ ├── BLOCK.wav
│ ├── COLOUR.wav
│ ├── COPYPAGE.wav
│ ├── DRAW.wav
│ ├── ERASE.wav
│ ├── FRAME_LEFT.wav
│ ├── FRAME_RIGHT.wav
│ ├── NEW_FRAME.wav
│ ├── OPEN.wav
│ ├── PASTEPAGE.wav
│ ├── PLAY.wav
│ ├── REMOVEPAGE.wav
│ ├── STOP.wav
│ └── TOOL.wav
└── main.py
To start Pynote Studio, simply run main.py
:
python3 main.py
This will start the application in a new window.
Pynote Studio is licensed under the GNU General Public License v3.0. You are free to use, modify, and distribute this software under the terms of the GPLv3.