🌐
Thefurrow
thefurrow.tv › project › asciixgpt
ASCII×GPT - The Furrow
This exploration has cast some ... of AI as it relates to creative pipelines. As we navigate the merging paths of man and machine, it's vital that we use these advancements thoughtfully, safeguarding the domain of human artistic expression. ... This archive includes a few of the ASCII art animations generated by this tool in HTML format.⬇︎ DOWNLOAD...
🌐
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.
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
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
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
🌐
AIDesigner
aidesigner.ai › ascii-generator
Free ASCII Animation Generator | AI Designer
Upload a video file or describe what you want and AI generates it for you. .--. .--. .--. / \/ \/ \ | () | () | () | \ /\ /\ / '--' '--' '--' ... Each frame is analyzed and mapped to ASCII characters based on brightness and shape. @@##%%&&**++==--.. ..--==++**&&%%##@@ @@##%%&&**++==--.. ..--==++**&&%%##@@ ..--==++**&&%%##@@##%%&&**++==--.. ..--==++**&&%%##@@##%%&&**++==--.. ... Watch your ASCII animation in the browser and download as a standalone HTML file.
🌐
ASCII Motion
ascii-motion.com
ASCII Motion - Create ASCII Art Animations in the browser
An open source tool for creating and animating ASCII art.
🌐
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.
🌐
ASCII
ascii.co.uk › animated
ASCII ANIMATED
animated-design · 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 ·
🌐
Qqpr
qqpr.com
ASCII Animator Download - Animated ASCII Art Converter
ASCII Animator is a unique, funny ... and encodes the ASCII art into a new animated ASCII art GIF image. What's New · Click the button to download ASCII Animator 2.0....
🌐
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
🌐
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 › 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
Experience ASCII Motion online at: http://ascii-motion.xiaoa.name/ # Build for production npm run build # Start production server npm start · Start Drawing: Select the brush tool and choose your character from the character panel · Add Colors: ...
Author   a-side-project
🌐
GitHub
github.com › cameronfoxly › Ascii-Motion
GitHub - CameronFoxly/Ascii-Motion: A modern web application for creating and animating ASCII art · GitHub
1 week ago - Ascii-Motion/ # Main repository (public) ├── packages/ │ ├── core/ # Open source (MIT) - You work here!
Starred by 756 users
Forked by 48 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 › 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%
🌐
IconScout
iconscout.com › lottie-animations › ascii
Ascii Animations - Free Download in GIF, Lottie JSON
Free Download Ascii Animations in GIF, static SVG, JSON for Lottie, AEP or MP4 formats. Bring motion to your designs or projects in Canva, Figma, Adobe XD, After Effects, Sketch & more.
🌐
GitHub
github.com › doctorfree › Asciiville
GitHub - doctorfree/Asciiville: ASCII Art, Animation, and Utilities · GitHub
The Asciiville project provides ... Art, animations, and text based utilities to perform common operations in a text-only environment. Asciiville includes nearly 1,000 works of ASCII and ANSI Art! NEWS! Asciiville is now available as a Kasm Workspace by adding https://doctorfree.github.io/kasm-registry/ as a Kasm 3rd party registry and installing the Asciiville workspace in your Kasm instance. ... Asciiville integrations and extensions are aimed at the character ...
Starred by 195 users
Forked by 7 users
Languages   Shell 87.0% | Python 7.0% | Perl 3.1% | Ruby 2.0%
🌐
Qqpr
qqpr.com › animated-ascii-art.html
Animated ASCII art gallery
Are you also interested in traditional static ASCII art? Check the ASCII art collection. Animated ASCII art - a dancing rabbit.
🌐
ASCII Art Generator
asciigif.com
ASCII Art Generator - Convert GIFs to ASCII Animation | Free Online Tool
Free ASCII art generator - No sign up required! Convert GIFs to ASCII animations instantly. Features real-time preview, zoom controls, and multiple export formats. Create, customize, and download your ASCII art now.
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.