Skip to main content

A cosmetic treatment for your media files: movies, TV shows and also their subtitles.

Project description

Medicure

tests codecov pre-commit.ci PyPI Version Python Versions Documentation Status

Medicure is a cosmetic treatment for your media files: movies, TV shows and also their subtitles. Medicure provides a command-line tool and also a Python package for you to properly rename, sort tracks and correct tracks info for your files.

Name

The word medicure is combination of media and the Latin word cura which means "care".

Installation

The easiest way to install is from PyPI:

pip install medicure

Alternatively, you can install directly from GitHub:

pip install git+https://github.com/alirezatheh/medicure.git

Requirements

  • TMDB API Key: Medicure uses TMDB's API to get correct info for movies and TV shows. So you need to create a TMDB account and generate an API key in order to use Medicure.
  • Mediainfo: Medicure requires Mediainfo to extract track info from video and audio files.
  • MKVToolNix: Medicure uses mkvmerge to craete new treated media files. mkvmerge is one of the MKVToolNix's command-line tools.

Simple Example

In this example we want to treat Peaky Blinders's Season 6 video files, downloaded from PSArips.

First we search for the TV show in TMDB to see season names. In this case season name starts with Series. In our TV shows directory we create Peaky Blinders/Series 6 directory and put the files there. Directory structure will look like this:

TV Shows
└── Peaky Blinders
    └── Series 6
        ├── Peaky.Blinders.S06E01.1080p.10bit.WEB-DL.x265.HEVC.PSA.AM.mkv
        ├── Peaky.Blinders.S06E02.INTERNAL.1080p.10bit.WEB-DL.x265.PSA.AM.mkv
        ├── Peaky.Blinders.S06E03.INTERNAL.1080p.10bit.WEB-DL.x265.PSA.AM.mkv
        ├── Peaky.Blinders.S06E04.1080p.10bit.WEB-DL.x265.PSA.AM.mkv
        ├── Peaky.Blinders.S06E05.INTERNAL.1080p.10bit.WEB-DL.x265.PSA.AM.mkv
        └── Peaky.Blinders.S06E06.1080p.10bit.WEB-DL.x265.PSA.AM.mkv

And each file has the following track infos:

Type Title Language Default Forced
Video Undetermined Yes No
Audio English Yes No
Subtitle English Yes No

Now we run the following python snippet:

from pathlib import Path

from medicure import Medicure, DubbingSupplier

medicure = Medicure(
    tmdb_api_key='YOUR_TMDB_API_KEY',
    tvshows_directory=Path('path/to/tvshows_directory'),
)
medicure.treat_media(
    # You can find this in url of TV show in IMDb.
    imdb_id='tt2442560',
    file_search_patterns=[
        # We have only one file for each episode that can be found by
        # this pattern.
        'PSA',
    ],
    video_language_code='eng',
    video_source='PSA',
    video_release_format='WEB-DL',
    dubbing_suppliers=[
        # In this example we only have one dubbing supplier and that's
        # which contains original audio and subtitle.
        DubbingSupplier(
            name='original',
            file_id=0,
            correct_language_code='eng',
            audio_language_code='eng',
            subtitle_language_code='eng',
        ),
    ],
    season_number=6,
)

Then directory structure will look like this:

TV Shows
└── Peaky Blinders
    ├── Series 6
       ├── Peaky.Blinders.S06E01.1080p.10bit.WEB-DL.x265.HEVC.PSA.AM.mkv
       ├── Peaky.Blinders.S06E02.INTERNAL.1080p.10bit.WEB-DL.x265.PSA.AM.mkv
       ├── Peaky.Blinders.S06E03.INTERNAL.1080p.10bit.WEB-DL.x265.PSA.AM.mkv
       ├── Peaky.Blinders.S06E04.1080p.10bit.WEB-DL.x265.PSA.AM.mkv
       ├── Peaky.Blinders.S06E05.INTERNAL.1080p.10bit.WEB-DL.x265.PSA.AM.mkv
       └── Peaky.Blinders.S06E06.1080p.10bit.WEB-DL.x265.PSA.AM.mkv
    └── Series 6 Edited
        ├── Peaky Blinders - S06E01 - Black Day.mkv
        ├── Peaky Blinders - S06E02 - Black Shirt.mkv
        ├── Peaky Blinders - S06E03 - Gold.mkv
        ├── Peaky Blinders - S06E04 - Sapphire.mkv
        ├── Peaky Blinders - S06E05 - The Road to Hell.mkv
        └── Peaky Blinders - S06E06 - Lock and Key.mkv

And each file track infos:

Type Title Language Default Forced
Video PSA WEB-DL English Yes No
Audio English Yes No
Subtitle English No No

Let's treat again, this time using Medicure's command-line interface.

Since we're using CLI for the first time, we need to save our TMDB API key and TV shows directory locally:

medicure save tmdb-info YOUR_TMDB_API_KEY
medicure save collection-info \
--tvshows-directory PATH_TO_YOUR_TVSHOWS_DIRECTORY

Now we can run:

medicure treat media \
tt2442560 \
'["PSA"]' \
eng \
PSA \
WEB-DL \
'[["original", 0, "eng", "eng", "eng"]]' \
6

If you want to learn more about Medicure with more in depth examples you can visit Medicure's documentation.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

medicure-0.3.0.tar.gz (17.0 kB view details)

Uploaded Source

Built Distribution

medicure-0.3.0-py3-none-any.whl (17.8 kB view details)

Uploaded Python 3

File details

Details for the file medicure-0.3.0.tar.gz.

File metadata

  • Download URL: medicure-0.3.0.tar.gz
  • Upload date:
  • Size: 17.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.2

File hashes

Hashes for medicure-0.3.0.tar.gz
Algorithm Hash digest
SHA256 fd122cf99838f85fc4b107e6b40ec4ba241edf1e450f88b43a15463abad8f3bd
MD5 924e96a602cac3982525bd2022f61a48
BLAKE2b-256 77d2bbc31f00dc8e0c3a2183ec54346df99b3b0c4f33db839b5a1481f2462fa6

See more details on using hashes here.

File details

Details for the file medicure-0.3.0-py3-none-any.whl.

File metadata

  • Download URL: medicure-0.3.0-py3-none-any.whl
  • Upload date:
  • Size: 17.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.2

File hashes

Hashes for medicure-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 34704ebc3185afbbf31b8ab9c4d5662ea00bff5dba3d8c11a612806ed37e263d
MD5 879eb6173628767a2233823b7d89bc85
BLAKE2b-256 7aba75e00ac748bbc38d0e8f8dc5f6799c52c91d50766fa587b7bb6ddc58afb0

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page