/autotag

Auto Tag movies.

Primary LanguageC++MIT LicenseMIT

AutoTag

Application that wait for an inotify event on a folder and then for MP4 and MKV movie files it automatic attach cover art in the files. In order to find the cover art it uses the TMDB API.

Usage

AutoTag can be run manually or as a daemon in a systemd compatible system. To run it manually use

$ autotag "/mnt/Movies"

Prerequisites

The development headers for the following libraries should be installed:

  • libcurl
  • zlib
sudo apt install libcurl4-openssl-dev zlib1g-dev

Build

In order to build give the following commands

$ git clone https://github.com/panosdim/autotag
$ cd autotag
$ cmake -DCMAKE_BUILD_TYPE=Release -B cmake-build-release .
$ cd cmake-build-release
$ make

Installation

In order to install it run $ ./install.sh after you build it. If you are on a Linux machine with systemd, installer will ask you if you want to run it as a daemon. Also the installer will ask you to enter the TMBD API Key.

Libraries Used