The posting form doesn't have support for the old home grown captcha anymore. It just has support for the discontinued version of recaptcha.
https://github.com/marlencrabapple/Glaukaba/blob/master/futaba_style.pl#L364-L394
Server-side captcha generation and checking code for the home grown captcha still exists.
https://github.com/marlencrabapple/Glaukaba/blob/master/captcha.pl
What do you want to do about this situation?
If we could somehow re-implement the built in captcha from vanilla wakaba (http://wakaba.c3.cx/releases/Wakaba/wakaba_3.0.9.zip). I believe the creator of glaukaba abandoned the wakaba captcha since he never needed it for himself.
(kopipe fom imgboard, discussion is probably more suited for here)
I'll see what I can do.
>>4
I just the list of stuff you want to do.
Let's just start with the captcha first.
s/just/just saw/
>Let's just start with the captcha first.
This is my intent. All of them at once would be ハードモード
I got the old captcha working last night. It's not a great captcha, but whatever. I'm cleaning it up so I can hand it off.
Domou arigatou
Shall we begin work on the mp4 and webm thumbnail? I can give some notes of where the things must be written, I just don't know how to make it shell out right.
>>10
Go ahead and post your notes. I tried it locally, and it made a tiny 100x100 thumbnail for me when I attached a webm to the post.
If I were to change it, I'd make it use the same size constraints as the other thumbnails as defined by MAX_W and MAX_H. I'd also make the thumbnail preserve the aspect ratio of the video.
>>10
So I tried to create a thread that attached a webm to the OP over at https://world2ch.net/imgboard and the error I got was:
>Missing JSON module
That comes from the beginning of webm_handler in wakautils.pl from this code:
eval "use JSON qw( decode_json )";
make_error('Missing JSON module.') if $@;Can you get JSON installed on your server?
https://metacpan.org/pod/JSON
>>11
I think for it to process the file right you'd have to let it be recognized as a main filetype so it doesn't refer itself to just a standard thumbnail like https://world2ch.net/imgboard/img/mp4.png
You probably already discovered it, but I believe these specifications are located at:
wakautils.pl lines 1098-1329~
wakaba.pl line 3531~
>>13
I just remembered that I commented out a few lines of webm_handler when I first installed Glaukaba locally, because a few of those lines are considered syntax errors now. They were probably legal perl back when he wrote it, but not anymore. (It worked for me on the first try, because I had commented them out and made webm_handler sufficiently functional.)
Anyway, I took the time to properly fix those lines and make them syntactically correct again. By applying the following fix, you should be able to post no-audio webms as he originally intended.
Here is a fix for the webm_handler subroutine.
https://tilde.club/~gg/4nameless/video-support/webm_handler.pl.txt
Here is a screenshot that shows that I was able to post webms locally.
https://tilde.club/~gg/4nameless/video-support/Screenshot%202026-01-17%20at%2015-18-23%20No.%2019%20-.png
I'll see what I can do about mp4s next.
Also, do you want to allow audio or not?