🌐
Thefurrow
thefurrow.tv › project › asciixgpt
ASCII×GPT - The Furrow
We created ASCII animation art using tools that we built with AI.
🌐
AIDesigner
aidesigner.ai › ascii-generator
Free ASCII Animation Generator | AI Designer
A complete toolkit for creating ASCII art animations from any video source. Upload your own video or describe what you want and let AI create it.
Discussions

How and where to learn ASCII animation?
If your goal is to just create an animation you can make normal animation as a gif and use an online converter to generate it into an ASCII representation. How you would program it is that you would take each pixel of each frame and assign them some character. That way you would get a series of ASCII "images" representing each frame. If you then want to play that back in video format you have to take those ASCII "images" and turn them into actual images and then play them in roughly the same framerate as the original source animation. That is at least how I would approach the problem. More on reddit.com
🌐 r/learnprogramming
6
6
October 31, 2021
Asciimation - Create animated ASCII art for your terminal
I wanted to make my Dad an animated birthday card that he could view in his terminal, so I ended up making this project to interpret the ascii based animation file. Lately, I've been having some fun making small animations and running them off to the side within a pane in tmux. Let me know of any feedback or questions you may have! More on reddit.com
🌐 r/programming
12
93
April 4, 2018
People also ask

What is ASCII animation?
ASCII animation is a form of digital art that uses text characters to create moving images. Each frame of a video is converted into a grid of ASCII characters where different characters represent different brightness levels, creating a retro, text-based visual effect.
🌐
aidesigner.ai
aidesigner.ai › ascii-generator
Free ASCII Animation Generator | AI Designer
What determines the quality of the ASCII output?
The quality depends on your source video's contrast and subject clarity. Videos with distinct shapes and high contrast between light and dark areas produce the best ASCII art. The conversion uses 95 ASCII characters mapped by visual density for detailed output.
🌐
aidesigner.ai
aidesigner.ai › ascii-generator
Free ASCII Animation Generator | AI Designer
Can I download the animation?
Yes! You can download your ASCII animation as a standalone HTML file that plays in any browser. Just open the file to see your animation - no internet connection required.
🌐
aidesigner.ai
aidesigner.ai › ascii-generator
Free ASCII Animation Generator | AI Designer
🌐
Ascii-motion
ascii-motion.app
ASCII Motion
A modern web app for crafting and animating ASCII and ANSI art with a timeline, palette system, and rich export options. Convert images or videos to ASCII, or draw your own by hand.
🌐
ASCII Art Archive
asciiart.eu › animations
ASCII Animations – Moving Art in Text Mode
Welcome to our collection of ASCII animations, where text characters form moving patterns and simple visual stories. Here you can explore looping scenes, retro-style effects, and creative text-based motion. All built entirely with ASCII art.
🌐
GitHub
github.com › cameronfoxly › Ascii-Motion
GitHub - CameronFoxly/Ascii-Motion: A modern web application for creating and animating ASCII art · GitHub
3 weeks ago - MCP Server (ascii-motion-mcp) for AI-assisted animation creation
Starred by 750 users
Forked by 47 users
Languages   TypeScript 75.0% | Go 24.3% | JavaScript 0.3% | CSS 0.2% | HTML 0.1% | Shell 0.1%
🌐
Ascii
ascii.life
ASCII.life - AI-Powered ASCII Art Animation Generator
ASCII.life transforms your text prompts into stunning ASCII art animations. Create retro terminal-style animations that can be embedded anywhere on the web.
🌐
GitHub
github.com › topics › ascii-animation
ascii-animation · GitHub Topics · GitHub
This program takes an image (png, jpg, jpeg) and turns it into ascii art. it can produce still images, animations and loops.
Find elsewhere
🌐
ReelMind
reelmind.ai › blog › automated-video-ascii-art-ai-that-creates-text-based-animation
Automated Video ASCII Art: AI That Creates Text-Based Animation | ReelMind
May 12, 2025 - Today, AI models analyze video frames, convert them into high-fidelity text representations, and stitch them together into seamless animations. Reelmind.ai leverages this technology, allowing users to generate ASCII art videos effortlessly while ...
🌐
GitHub
github.com › a-side-project › ASCII-Motion
GitHub - a-side-project/ASCII-Motion: 💗 Professional ASCII animation design tool - a fascinating AI-human collaboration project with 100% AI-generated 🤖 code
ASCII Motion is a powerful, browser-based ASCII animation design tool that brings retro art to life. Created through a unique collaboration between human creativity and AI development, this project represents 100% AI-generated code guided by ...
Author   a-side-project
🌐
ASCIICraft
asciicraft.com › home › video to ascii converter › professional tools
AsciiCraft — Free ASCII Art Generator | Video, GIF & Image to Text Art
Convert images, videos & GIFs to ASCII art instantly. No upload — runs entirely in your browser. 72 character sets, real-time preview, export MP4/GIF/PNG. Free.
Published   December 17, 2025
🌐
ASCII
ascii.co.uk › animated
ASCII ANIMATED
aidy-bryant-influencer-by-saturday-night-live · art-love-by-dualvoidanima3 · angry-adele · arrested-development-reaction2 · animated-ascii-art-by-moodman3 · animated-ascii-art-by-golden-globes30 · air-bud · ask-the-storybots-ride-by-storybots · audio-hey-arnold ·
🌐
Ascii-animator
ascii-animator.com
ASCII Animator
Welcome to the ASCII Animator, an open-source tool for creating plain text animations in the style of ASCII art.
🌐
Reddit
reddit.com › r/learnprogramming › how and where to learn ascii animation?
r/learnprogramming on Reddit: How and where to learn ASCII animation?
October 31, 2021 -

Here is an example of what I want to do https://youtu.be/xWzXNo5uQMI

Not in that level because it is far beyond what I know now

🌐
Collidingscopes
collidingscopes.github.io › ascii
Video-to-ASCII-Art
Turn videos into ASCII pixel art! Use your webcam feed or upload a video, then use the controls to adjust the colors, resolution, text style, etc... You can create a video export to save and/or share your animation afterwards.
Top answer
1 of 5
12

I just ported my example with the animated gif to ASCII animation from my answer here to python. You will need to install the pyglet library from here, as python unfortunately has no built-in animated-gif support. Hope you like it :)

import pyglet, sys, os, time

def animgif_to_ASCII_animation(animated_gif_path):
    # map greyscale to characters
    chars = ('#', '#', '@', '%', '=', '+', '*', ':', '-', '.', ' ')
    clear_console = 'clear' if os.name == 'posix' else 'CLS'

    # load image
    anim = pyglet.image.load_animation(animated_gif_path)

    # Step through forever, frame by frame
    while True:
        for frame in anim.frames:

            # Gets a list of luminance ('L') values of the current frame
            data = frame.image.get_data('L', frame.image.width)

            # Built up the string, by translating luminance values to characters
            outstr = ''
            for (i, pixel) in enumerate(data):
                outstr += chars[(ord(pixel) * (len(chars) - 1)) / 255] + \
                          ('\n' if (i + 1) % frame.image.width == 0 else '')

            # Clear the console
            os.system(clear_console)

            # Write the current frame on stdout and sleep
            sys.stdout.write(outstr)
            sys.stdout.flush()
            time.sleep(0.1)

# run the animation based on some animated gif
animgif_to_ASCII_animation(u'C:\\some_animated_gif.gif')
2 of 5
10

This is precisely the sort of application that I created asciimatics for.

It is a cross-platform console API with support for generating animated scenes from a rich set of text effects. It has been proved to work on various flavours of CentOS and Windows and OSX.

Samples of what is possible are available from the gallery. Here's a sample similar to the animated GIF code provided in other answers.

I assume you're just looking for a way to do any animation, but if you really wanted to replicate the steam train, you could convert it to a Sprite and give it a Path that just runs it across the Screen, then play it as part of a Scene. Full explanations of the objects can be found in the docs.

🌐
Melobytes
melobytes.com › en › app › ai_text2ascii
Text to ASCII Art (ΑΙ) [Melobytes.com]
This app creates an ASCII art text from a given description using artificial intelligence (AI) technology
🌐
GitHub
github.com › thatcherclough › AsciiAnimator
GitHub - thatcherclough/AsciiAnimator: A stop motion ASCII art animator.
AsciiAnimator uses plain text files and stop motion to animate ASCII art frame by frame.
Starred by 30 users
Forked by 6 users
Languages   Java 100.0% | Java 100.0%
🌐
Reddit
reddit.com › r/programming › asciimation - create animated ascii art for your terminal
r/programming on Reddit: Asciimation - Create animated ASCII art for your terminal
April 4, 2018 - AKA A.I.B.S - AI Being Stupid | Where stupidity in the world of AI happens! ... Making ascii “animation” look smoother.
🌐
Melobytes
melobytes.com › en › app › video2ascii
Video to ASCII Art [Melobytes.com]
Image to ASCII Art · Invert colors · Kaleidoscope · Lens Distortion · Metallic / Chrome Effect · Mirror Image · Mosaic Effect · Negative Space Extractor · Neon Outline · Object Labeler · Oil Paint Effect · Old Newspaper Effect · Pencil Sketch (Non-AI) Photo collage · Photo Outline for Coloring Books · Pixelate Effect · Poor-Man's AI Style Transfer · Posterization + Outline (Anime Filter) Posterize Effect ·