vichan-devel / vichan

Vichan is the most popular and widely used imageboard software in the world. It is a free, light-weight, fast, highly configurable and user-friendly imageboard software package.
https://vichan.info
Other
596 stars 193 forks source link

Location of video thumbnail processing in post.php? #763

Closed snarles888 closed 4 weeks ago

snarles888 commented 1 month ago

Where are the thumbnails generated for video uploads in post.php? I can access them for normal images but videos seem to have a different method since they aren't being picked up by the process I put the former through.

snarles888 commented 4 weeks ago

I was able to throw an error in ffmpeg.php for a webm after interrogating its thumbnail, but it still allowed an mp4 to go through despite the thumbnail successfully being interrogated and needing to do the same thing.

$score = score_file($thumbnail); if (!$score) { error($config['error']['spam']); }

update: it was a specific mp4 that was getting through, looking into it now update: fixed, don't worry about it

snarles888 commented 4 weeks ago

Found the value I needed, $thumbnail in /vichan/inc/lib/webm/ffmpeg.php