"Death of Pixels" is a fun tool that turns your videos, images, and live camera feeds into retro ASCII art animations. Perfect for YouTubers, artists, and anyone who loves creative experiments.
- Image to ASCII: Convert images into ASCII art.
- Video to ASCII: Watch your videos come alive in ASCII.
- Camera to ASCII: Real-time ASCII art from your webcam.
- Customizable Output: Adjust settings like brightness, contrast, and colors.
- Save Your Art: Download as text or image files.
Screen-Recording.mp4
-
Image to ASCII
- Upload an image.
- The tool maps pixel brightness to ASCII characters.
let asciiChar = chars[floor(brightness * chars.length)]; text(asciiChar, x, y);
-
Video to ASCII
- Upload a video.
- Each frame is processed into ASCII art in real-time.
video.loadPixels(); for (let i = 0; i < video.pixels.length; i += 4) { let brightness = calculateBrightness(video.pixels[i]); asciiArt += chars[floor(brightness * chars.length)]; }
-
Camera to ASCII
- Activate your webcam.
- The live feed is converted into ASCII art.
capture.loadPixels(); // Similar processing as video frames
- Clone the repository.
- Open
index.html
in your browser. - Choose a mode and start creating ASCII art!
Fork the repository and submit pull requests. Contributions are welcome!
This project is licensed under the CC BY-NC 4.0 License.
You can use, share, and change this code for free — but you must give credit and you can't use it for anything commercial.