Wendell said not to, but hey I found an excuse for my cyber law class.
Status right now is it can encode and upload (given secrets.json) files encoded as YouTube videos. Data density hasn’t yet been optimized, but more importantly I can’t seem to get frame decoding working. Unfortunately, #ffmpeg has no interest in code problems right now.
The issue is in decode.cpp:decodeVideoToFrames().
Once this is done, I’m hoping there’s an easy way to treat these videos as arrays of disks and throw proper file systems on them.
Oh cool. So, it sounds like it's having issues with the downloads?
I'm not familiar with this sort of software, I'm more web-based, but I hope it all turns out well for you.
Once this is done, I'm hoping there's an easy way to treat these videos as arrays of disks and throw proper file systems on them.
Theoretically, it is possible, but not recommended. It's best practice and more efficient for your software to be an implementation of FUSE, from what I've read.
FUSE can operate of an array of disk without problem and is actually separate from filesystems. FUSE just loads them in userspace through an appropriate software layer, Like sshfs.