Skip to content
/ mtn Public

mirror repository for movie thumbnailer

License

Notifications You must be signed in to change notification settings

wahibre/mtn

Repository files navigation

Description

Movie Thumbnailer (mtn) saves thumbnails (screenshots) of video files to image files (jpg, png, webp, avif). It uses FFmpeg's libavcodec as its engine, so it supports all popular codecs, e.g. h.265/hevc, h.264, mpeg1, mpeg2, mp4, vc1, wmv, xvid, divx...
mtn was originaly developed by tuit (tuitfun); though most of its magic is actually done by FFmpeg libraries. For documents, please see in the doc directory and wiki at https://gitlab.com/movie_thumbnailer/mtn/wikis/home .

Dependency

  • ffmpeg (>=3.1)
  • gd (>=2.0.33)

Getting source

git clone https://gitlab.com/movie_thumbnailer/mtn.git

Installation

From source

cd src
# USER_CFLAGS is optional
make USER_CFLAGS=-DGB_F_FONTNAME=\\\"DefaultFont.ttf\\\"
make install

From community repository

See wiki page

Getting build dependencies

Fedora

dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm
dnf install ffmpeg-devel gd-devel make gcc-c++  

Debian 9+, Ubuntu 18.04+, LinuxMint 19+, MX Linux 18+, ...

sudo apt-get install libgd-dev libavutil-dev libavcodec-dev libavformat-dev libavfilter-dev libswscale-dev make  

Archlinux, Manjaro

sudo pacman -Sy ffmpeg gd

OpenSUSE 15

zypper install ffmpeg-4-libavcodec-devel ffmpeg-4-libavdevice-devel ffmpeg-4-libavfilter-devel ffmpeg-4-libavformat-devel ffmpeg-4-libswscale-devel gd-devel freetype2-devel libjpeg62-devel make gcc 

RHEL 8+

dnf install https://mirrors.rpmfusion.org/free/el/rpmfusion-free-release-$(rpm -E %rhel).noarch.rpm
dnf install ffmpeg-devel gd-devel make gcc-c++    

RHEL 7

yum localinstall https://mirrors.rpmfusion.org/free/el/rpmfusion-free-release-$(rpm -E %rhel).noarch.rpm
yum install ffmpeg-devel gd-devel make gcc-c++    

FreeBSD

pkg install gmake ffmpeg libgd
gmake

Windows

Install msys2 and open a MinGW64 terminal:

# update package database
pacman -Sy
# install dependencies
pacman -S mingw-w64-x86_64-make mingw-w64-x86_64-gcc mingw-w64-x86_64-ffmpeg mingw-w64-x86_64-libgd
# build mtn
mingw32-make.exe

(more information in wiki)

macOS (brew)

If you don't want to contribute please refer to the installation guide here instead.

brew install ffmpeg libgd
make
sudo make install

Links