Metadata-Version: 2.1
Name: subtidal
Version: 1.1.0
Summary: Subtidal, for batch downloading subtitles for all movies in a central media folder.
Home-page: https://github.com/athena15/subtidal
Author: Brenner Heintz
Author-email: brennerhdata@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: Click (>=7.0)
Requires-Dist: pytest (>=4.4.1)
Requires-Dist: subliminal (>=2.0.5)

# subtidal

![GitHub](https://img.shields.io/github/license/athena15/subtidal.svg)
[![python3](https://img.shields.io/badge/built%20with-Python%203-red.svg)](https://www.python.org/)

A command line utility for **batch downloading subtitles for all movies organized in a central media folder.**

Walks the file tree, visiting subfolders and downloading subtitles for each movie if they do not already exist.

Changes subtitle names so that they are automatically recognized by Roku Media Player, VLC, and others.

Makes quick work of central media folders and entire hard drives alike. Ideally, your central media folder will be organized as a repository of folders, with one movie or TV show each, but subtidal will still work if they're not quite that tidy.

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install subtidal. From the command line:

```bash
pip install subtidal
```

## Quickstart
***Option 1:** From the command line*

```bash
cd /path/to/Your-Movie-Folder
download-subtitles
```
or, call `download-subtitles` and specify the path directly:
```bash
download-subtitles /path/to/your-movie-folder
```

***Option 2:** From Python*

```python
from subtidal.download import download

download("./path/to/Your Movie Folder")

# you can also add optional parameters
download(directory="./path/to/Your Movie Folder", verbose=True)
```

![subtidal-demo](https://drive.google.com/uc?export=view&id=1MlJQrVGaocV80jZX5W7kYpjjH2xPWxDP)

## Motivation

I hope this project is of use to you. I got frustrated (or rather, was very mildly inconvenienced) because some of the movies I downloaded online didn't come included with subtitles, and I often found myself having to pause the movie I was watching to manually download them from sites like opensubtitles.org](https://opensubtitles.org).

Furthermore, even when subtitles *were* included with a movie, if the filename differed at all from the name of the movie, they weren't recognized by the Roku Media Player, so I set about to rectify that.

I have a huge, network-attached-storage media folder that acts as the central repository for all of the movies I download online, and I wanted to create a package that could download missing subtitles for every movie in it in one fell swoop.

I imagined that as I downloaded new movies and TV shows into this central repository, I'd be able to run the package periodically via a cron job on my Raspberry Pi, so I'd never have to suffer the loathsome indignity of watching a show without having subtitles available ever again. This package is my attempt to make that vision a reality (or to make some fun out of laziness, depending on how you look at it), and in so doing, make a package available to the public on PyPI, which I had never done before.

### Additional function & parameter info in the docstring

```python
def download_subtitles(directory, verbose=False):
    """
    Takes in a directory path, walks through the file tree, and downloads subtitles for any video files found.
    Renames the subtitle file to match the video's name (in order to make it compatible with Roku Media Player.)

    :param (str) directory: Directory where video files or folders are located.
    :param (str) language : [optional] Desired language for subtitles, expressed as a 3-letter ISO-639-3 code. Visit https://bit.ly/29fjNpm for a list of language codes.
    :param (str) country : [optional] Country code (needed in addition to language code for certain languages).
    :param (bool) verbose : [optional] Prints more output to the console.

    Examples:
    1. download_subtitles('./Users/Laura/Movies')
    2. download_subtitles(directory='./Users/Tim/TV Shows', verbose=True)
    """
```


## Contributing
Pull requests are welcome!

## License
[MIT](https://choosealicense.com/licenses/mit/)

