![]() |
ASCII Animations - Printable Version +- QB64 Phoenix Edition (https://qb64phoenix.com/forum) +-- Forum: QB64 Rising (https://qb64phoenix.com/forum/forumdisplay.php?fid=1) +--- Forum: Code and Stuff (https://qb64phoenix.com/forum/forumdisplay.php?fid=3) +---- Forum: Programs (https://qb64phoenix.com/forum/forumdisplay.php?fid=7) +---- Thread: ASCII Animations (/showthread.php?tid=2114) |
ASCII Animations - SpriggsySpriggs - 10-21-2023 Inspired by the thread started by mnrvovrfc (https://qb64phoenix.com/forum/showthread.php?tid=2112), I converted the whole Rick Astley - Never Gonna Give You Up music video to an ASCII animation. And the code: Code: (Select All)
Converted the video like this: 1) Download a GIF or video with plain background, preferably white. In my case, I had to get the green screen version of the music video and then use Kdenlive to make it white. 2) Use ffmpeg to convert the video/GIF into a JPEG image sequence Code: (Select All) ffmpeg -i rickroll.mkv -vsync 0 rickroll/rickroll_%d.jpg ![]() Code: (Select All) #!/bin/bash 5) ??? 6) Profit If you don't want to go through all that and just want to run it: Linux - ![]() Windows - ![]() RE: ASCII Animations - SpriggsySpriggs - 10-21-2023 Applied the same method to the Dragostea Din Tei music video. Not as clean since the background isn't removed. RE: ASCII Animations - SpriggsySpriggs - 10-21-2023 Found another tool I can run in bash to remove background from images using machine learning. Letting that run on a new video to see how well it does for the ASCII animation project ![]() RE: ASCII Animations - SpriggsySpriggs - 10-22-2023 New processing workflow is quite good and much faster than my old one. Here are a couple of videos made using the new process: RE: ASCII Animations - mnrvovrfc - 10-22-2023 The "Daishabet" has a psychedelic "feeling", don't know how else to describe it. ![]() Too bad it was limited to 20 lines of the terminal, LOL. Apparently this stuff is too much for: https://asciinema.org/ "Forget screen-recording apps and blurry video." Yeah, right! RE: ASCII Animations - SpriggsySpriggs - 10-22-2023 P.S. asciinema does work with it RE: ASCII Animations - madscijr - 10-27-2023 (10-21-2023, 07:15 AM)SpriggsySpriggs Wrote: Inspired by the thread started by mnrvovrfc (https://qb64phoenix.com/forum/showthread.php?tid=2112), I converted the whole Rick Astley - Never Gonna Give You Up music video to an ASCII animation.Thanks for sharing this - I like that you also included the ffmpeg examples! This will be fun to play with! |