Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 385 Bytes

File metadata and controls

18 lines (16 loc) · 385 Bytes

v2a

Video to ascii-art style video

Run with

mvn compile exec:java -Dexec.mainClass="main.Main"

Swap coloring

In Video.java, fg function, you can swap 38 with 48 to color background instead

return String.format("\u001b[38;2;%d;%d;%dm", r, g, b);

with

return String.format("\u001b[48;2;%d;%d;%dm", r, g, b);

Improves clarity for some videos