Kodi Community Forum
[Tool] Thumber - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Meta-Data provider and Artwork Packs (https://forum.kodi.tv/forumdisplay.php?fid=71)
+--- Thread: [Tool] Thumber (/showthread.php?tid=115016)



[Tool] Thumber - NeXrom - 2011-11-20

Hello!!!

I've found a very nice and simple program to create thumbnails.

Quote:Extrathumbs creating via a batch

For those who want to read the other thread:
Extrathumbs are small images (film clips), which are a couple of skins (Aeon, Carmichael, etc.) are supported.
Place the images \ movie folder \ Extrathumbs \ thumb1 .... X. ..

Luckily you will find a small tool (Linux, Windows, Mac OS) via a batch Extrathumbs to create at will:

http://www.megaupload.com/?d=BUR5G8OP

Note: thumber-h is actually the most essential information ...
thumber.config can be opened with an editor to change settings such as Thumbgsize existing overwriting, etc. set.

Tip: I would not set the path to be scanned in the thumber.config that was neat for me problems!

ATTENTION: Thumber only works if there are films that are in one file, so FilmCD1 & FilmCD2 can create the While Thumber XBMC but it can not represent.

Source:

http://www.xbmcnerds.com/index.php?page=Thread&threadID=2368

Image

Image


- mad-max - 2011-11-20

To be fair, original source:
http://forum.xbmc.org/showthread.php?tid=50535

mad-max


- dzan - 2011-12-27

Hi,

Using this script together with:
ffmpeg version FFmpeg version 0.6-4:0.6-2ubuntu6.2
mediainfo version MediaInfoLib - v0.7.43

I often get this kind of results:
http://www.imghost.nl/download/thumb7.jpg

( Headless ubuntu server )

Any ideas?


- dzan - 2011-12-27

Hi,

For those who have the same problem, I used this:
http://moviethumbnail.sourceforge.net/

Together with this self-written ( good enough ) script to get my thumbnails:
Code:
#! /bin/bash

find ./ -name "*" -size +500000 2> /dev/null | while read FILE
do
    DIR=`dirname "${FILE}"`
    FILENAME=`basename "${FILE}"`

    if [[ ! $FILENAME =~ .*[cd,dvd,CD,DVD]\.?[2,3].* ]]; then
        sudo mtn -I -i -t -r 1 -c 9 -j 100 -o _delete.jpg -w 8640 -D 4 -O "${DIR}/extrathumbs" "${FILE}"
        sudo chmod 777 -R "$DIR/extrathumbs"
        rm "$DIR/extrathumbs/${FILENAME%\.*}_delete.jpg"
    else
    echo "Ignored: $FILENAME"
    fi
done

I know it's nto configurable ( for those who can't script ) or perfect but it does the trick for now.

Greets