Welcome to Monopedilos
Sunday, September 05 2010 @ 01:33 AM CDT
This shows you the differences between two versions of the page.
|
thumbnailer [2009/02/11 17:26] theophile created |
thumbnailer [2009/02/11 17:31] (current) theophile |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== thumbnailer.sh ====== | ||
| + | The following script will process all movie files (.wmv, .avi, .mkv, .ogm, .mpg) in the directory. It will create a jpeg still image at the 5-second mark and save it in the same directory as the movie with the same filename as the movie, except it will have a .tbn extension. This is the format used by XBMC to insert thumbnails in the video library. | ||
| <code bash>#!/bin/bash | <code bash>#!/bin/bash | ||
| Line 4: | Line 6: | ||
| ffmpeg -itsoffset -5 -i $file -vcodec mjpeg -vframes 1 -an -f rawvideo ${file:0:${#file}-3}tbn </dev/null | ffmpeg -itsoffset -5 -i $file -vcodec mjpeg -vframes 1 -an -f rawvideo ${file:0:${#file}-3}tbn </dev/null | ||
| done</code> | done</code> | ||
| + | |||
| + | The script is pretty simple. You can add mime types to line 1 but it has to be one with a three-character extension for the script to work properly. | ||