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.
AutoTag can be run manually or as a daemon in a systemd compatible system. To run it manually use
$ autotag "/mnt/Movies"
The development headers for the following libraries should be installed:
- libcurl
- zlib
sudo apt install libcurl4-openssl-dev zlib1g-dev
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
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.