Remix of @Youtube-king excellent project Superfast videoplayer that draws FMV with 64 images the same way the jpeg image format works.
Grayscale nprguy 240x180 at 80% quality of gtoal.com/scratch/nprguy.jpg This reuses @Youtube-king DCT images but reordered eg: 001->010, 002->020... Python script in to generate DCT (discrete cosine transform) to base256 encoded list using jpeglib. Details look good but haven't figured out tile brightness yet but it displays something like the nprguy image. Encoding is to 690 item list (30*23 @ 8*8 cells) where it encodes tuples [coefficient idx 1..64, coefficient -128...128] using base256 as explained previously on wirewalk project. Eg: ...cba.ABC... are ...-3,-2-1,0,1,2,3... Todo: Need to add zigzag to encoder/decoder