Hygge Media is a command line application designed to rename and organize media files in a directory to match the format prescribed by Emby (and others). This tool simplifies the organization of your media library, ensuring that your files are named consistently and correctly.
- Renames media files in a specified directory.
- Organizes media files into season and episode folders.
- Follows the Emby naming naming conventions for media files (including subtitles).
To install Hygge Media, clone the repository and build the application:
git clone https://github.com/simonnordberg/hyggemedia.git
cd hyggemedia
make build
To use Hygge Media, run the following command in your terminal:
./hyggemedia tv \
--source-dir <source directory> \
--target-dir <target directory> \
--title "<title>"
Replace <source directory>
with the path to the directory containing the media files you want to organize, <target directory>
with the path to
the directory where you want the organized files to be placed, and <title>
with the title of the show.
Note: Files will be copied by default (rather than moved) as a non-destructive operation.
tv
: Organize TV showsmovie
: Organize movie files
--title
(required): Title of the show.--source-dir
(required): Source directory to scan for files.--target-dir
(required): Target directory to organize files into.--exec
: Execute the changes.--move
: Move files instead of copying.
./hyggemedia tv \
--source-dir /path/to/source \
--target-dir /path/to/target \
--title "Friends"
./hyggemedia tv \
--source-dir /path/to/source \
--target-dir /path/to/target \
--title "Friends" \
--exec
./hyggemedia tv \
--source-dir /path/to/source \
--target-dir /path/to/target \
--title "Friends" \
--move \
--exec
./hyggemedia movie \
--source-dir /path/to/source \
--target-dir /path/to/target \
--title "Pulp Fiction" \
--exec
Contributions are welcome! Please open an issue or submit a pull request for any enhancements or bug fixes.
This project is licensed under the MIT License. See the LICENSE file for details.