all repos — auto-movie-tagger @ ae3bb000b9e841b38bb185ea7aa258ce3063bf69

A Python script that auto tags and adds poster to mkv or mp4 movie files.

Eddited Lists
Prithu Goswami prithugoswami524@gmail.com
Tue, 02 May 2017 21:12:40 +0530
commit

ae3bb000b9e841b38bb185ea7aa258ce3063bf69

parent

816fd6c2478b77f9648c66550370e57227238145

1 files changed, 14 insertions(+), 14 deletions(-)

jump to
M README.mdREADME.md

@@ -7,10 +7,10 @@ ![Doctor Strange](/promo-images/strange.png)

## Requirements <ul> - <p><a href="https://ffmpeg.org/">ffmepeg</a> - A cli-tool that can encode/decode media files</p> - <p><a href="https://pypi.python.org/pypi/imdbpie">imdbpie</a> - A Python module for IMDb</p> - <p><a href="https://pypi.python.org/pypi/tmdbsimple">tmdbsimple</a> - A Python wrapper for The Movie Database API v3</p> - <p><a href="https://pypi.python.org/pypi/mutagen">mutagen</a> - Python module to handle media files' metadata + <li><a href="https://ffmpeg.org/">ffmepeg</a> - A cli-tool that can encode/decode media files</li> + <li><a href="https://pypi.python.org/pypi/imdbpie">imdbpie</a> - A Python module for IMDb</li> + <li><a href="https://pypi.python.org/pypi/tmdbsimple">tmdbsimple</a> - A Python wrapper for The Movie Database API v3</li> + <li><a href="https://pypi.python.org/pypi/mutagen">mutagen</a> - Python module to handle media files' metadata</li> </ul> ## Installing ffmpeg

@@ -19,23 +19,23 @@ Here's a (wikiHow article on how to install ffmpeg on Windows)[http://www.wikihow.com/Install-FFmpeg-on-Windows]

## Installing Python module dependencies <ul> - <p>imdbpie - <pre><code>pip install imdbpie</code></pre></p> - <p>tmdbpie - <pre><code>pip install tmdbsimple</code></pre></p> - <p>mutagen - <pre><code>pip install mutagen</code></pre></p> + <li>imdbpie <pre><code>pip install imdbpie</code></pre></li> + <li>tmdbpie <pre><code>pip install tmdbsimple</code></pre></li> + <li>mutagen <pre><code>pip install mutagen</code></pre></li> </ul> ## How to use <ol> - <p>Move all the movie files you want to be tagged into one folder</p> - <p>If you want subtitles to be embeded into the movie file(s) then add a subtitle file (srt only) in the same folder named exactly the same as the movie file(s).</p> - <p>Run the script in that directory and sit back and relax till it ends executing.</p> + <li>Move all the movie files you want to be tagged into one folder</li> + <li>If you want subtitles to be embeded into the movie file(s) then add a subtitle file (srt only) in the same folder named exactly the same as the movie file(s).</li> + <li>Run the script in that directory and sit back and relax till it ends executing.</li> </ol> ## Notes <ul> - <p>This script only works for mp4 and mkv file types.</p> - <p>Make sure if you are having an mkv file, it should not contain any type of picture based subtitles(hdmv-pgs/vobsub,etc). You can use (MKVToolNix)[https://mkvtoolnix.download/] or any other similar gui utility to quickly remove the picture based subtitles. If the file already has an srt subtitle then the script will just copy it.</p> - <p>If you would like to use your own poster image then add an image file (jpg only) in the same folder and rename it to the same as the movie file.</p> - <p>Although I have provided my own TMDb API key in the source, I would recommend you get you own from (here)[https://www.themoviedb.org/documentation/api] + <li>This script only works for mp4 and mkv file types.</li> + <li>Make sure if you are having an mkv file, it should not contain any type of picture based subtitles(hdmv-pgs/vobsub,etc). You can use (MKVToolNix)[https://mkvtoolnix.download/] or any other similar gui utility to quickly remove the picture based subtitles. If the file already has an srt subtitle then the script will just copy it.</li> + <li>If you would like to use your own poster image then add an image file (jpg only) in the same folder and rename it to the same as the movie file.</li> + <li>Although I have provided my own TMDb API key in the source, I would recommend you get you own from (here)[https://www.themoviedb.org/documentation/api]</li> </ul>