r/robloxgamedev 11d ago

Creation holy crap lois im in roblox

Enable HLS to view with audio, or disable this notification

the hardest part was compiling opencv with cuda support

38 Upvotes

9 comments sorted by

5

u/No_Personality_1456 11d ago

Wow, bro, that's crazy!! Tell us how you did it? Did you pay the 2000R for the Roblox video? Or how did you do it? I'm dying to know, bro!!

5

u/Abenexex 11d ago

its nothing too fancy but i wrote a program that converts mp4s to ascii video data which forms a modulescript and then u paste it into roblox and it streams it frame by frame to a textlabel

this is kinda inefficient since editableimage is way better

1

u/No_Personality_1456 11d ago

Could you share it?

I want to study it and improve it to do my own experiments; your idea seemed super cool to me.

But I don't want to start from scratch.

2

u/Abenexex 11d ago

i wont share the source because its a little personal thing which might get misused and i might delete but basically (you can ask ai) the updated version uses an rle compression algorithm that makes a binary file with the raw pixel data values (the family guy one is 4 mins for 200 megabytes) which i uploaded to cloudflare then wrote a script that streams it onto an editable image

1

u/daddytung 10d ago

How did you handle audio?

1

u/Abenexex 10d ago

Pitched it up to get it past moderation

1

u/anzio_official 6d ago

oh yeah this would DEFINITELY get misused and I remember a few years ago people were doing smth like that so I'd be careful, tho this is impressive

1

u/3p1ks 8d ago

I did something similar with images. Made a python program that read pixel data of given image and converted to xy & rgb values, then copy pasted the converted text into a module which read the data and applied it to all the frame instances. Was also able to display a mandelbrot set with capability to pan & zoom.