I modified that script that animates agif thumbnails.
Click on options in the top right corner and paste this shit into your User JS.
$('document').ready(function () {
var animateGif = function () {
if ($(this).children('img.post-image').attr('src') != '/static/spoiler.png')
$(this).children('img.post-image').attr('src', $(this).attr('href'));
}
$('div.file').children('a[href*=".gif"]').each(animateGif);
$(document).on('new_post', function (e, post) {
$(post).find('div.file').children('a[href*=".gif"]').each(animateGif);
});
});
It should animate all of the apng thumbnails on this board.
mp4s and webms
So, /apng/. The other day I saw someone posting a soundless webm. Now this triggered my autism something fierce, so I went about trying to convert it to an apng. I opened up my trusty terminal emulator and converted the webm to a png image sequence using avconv (ffmpeg). I then assembled the image sequence into apng using apngasm. The result was a terrible, steppy mess. Like it lingered on each frame for too long. No matter how I adjusted the framerates, I just couldn't get it right. I tried again with a much, much shorter mp4 and the result was the same, so it's likely not the length.
/apng/, what's the best way for a humble GNU/Linux user like myself to convert a short video clip to an apng without using gif as an intermediate step? The gif format just fucks with the quality and is better left out of the process.
APNG plugin for GIMP
I'll show you how to get this old plugin running on GIMP 2.8 for Windows 7 x64.
First you need to get the required files:
http://www.mediafire.com/download/ubme5oy751zw0zh/gimp-apng-0.1.0.win32.zip
The zip contains 2 files:
>file-apng.exe
>file-apng.ui
These files need to be copied in specific folders, the following paths assume you did a default installation of GIMP. If you didn't , it shouldn't be hard to locate them.
file-apng.exe
C:\Program Files\GIMP 2\lib\gimp\2.0\plug-ins
file-apng.ui
C:\Program Files\GIMP 2\32\lib\gimp\2.0\plug-ins
IMPORTANT: Please pay attention to this last path, notice this goes into the "32" folder, this is NOT the same folder were you copied the first file.
You will need to navigate to :
C:\Program Files\GIMP 2\32\lib\gimp\2.0
THEN CREATE the "plug-ins" folder
THEN PASTE file-apng.ui inside that folder.
Next we'll see how to use it to load and export APNG files inside GIMP.
we'll continue this later tonight
APNG Tools
SO YOU WANNA MAKE APNGS?