-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Konrad Rieck
committed
Dec 11, 2015
1 parent
b8b3da3
commit b88f6ee
Showing
2 changed files
with
24 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,24 @@ | ||
|
||
Perplex | ||
|
||
# Perplex | ||
|
||
A Movie Renamer for Plex Metadata | ||
|
||
## Overview | ||
|
||
This simple Python script for renaming movie files in a Plex database. | ||
[Plex](http://plex.tv/) is a software suite for organizing videos, | ||
music and photos. It can identify movies based on their file names | ||
and retrieve corresponding metadata. In practice, however, not all | ||
file names are appropriate and thus some movies usually need to be | ||
assigned to the corresponding movie titles manually. Unfortunately, | ||
Plex is not able to rename these files and thus if the database is | ||
initialized from the scratch these files need to be manually fixed | ||
again. | ||
|
||
The Python script `perplex` solves this problem. Given an | ||
installation of Plex and the corresponding database, it lists all | ||
imported movies and renames them according to the retrieved movie | ||
metadata. To avoid breaking the current installation, the renamed | ||
files are copied to another directory. | ||
|
||
That's it. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/usr/bin/env python | ||
# Perplex - Plex-base Movie Renamer | ||
# Perplex - A Movie Renamer for Plex Metadata | ||
# Copyright (c) 2015 Konrad Rieck ([email protected]) | ||
|
||
import argparse | ||
|