Skip to content

Hygge Media is a command line application designed to organize media files

License

Notifications You must be signed in to change notification settings

simonnordberg/hyggemedia

Repository files navigation

Hygge Media

Go

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.

Features

  • 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).

Installation

To install Hygge Media, clone the repository and build the application:

git clone https://github.com/simonnordberg/hyggemedia.git
cd hyggemedia
make build

Usage

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.

Command Line Options

Commands

  • tv: Organize TV shows
  • movie: Organize movie files

Global Options

  • --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.

Examples

Organize media files for the show "Friends"

./hyggemedia tv \ 
    --source-dir /path/to/source \
    --target-dir /path/to/target \
    --title "Friends"

Execute the changes, i.e. actually copy/move (-m) the files

./hyggemedia tv \ 
    --source-dir /path/to/source \
    --target-dir /path/to/target \
    --title "Friends" \
    --exec

Move files instead of copying them

./hyggemedia tv \ 
    --source-dir /path/to/source \
    --target-dir /path/to/target \
    --title "Friends" \
    --move \
    --exec

Organize files for the movie "Pulp Fiction"

./hyggemedia movie \ 
    --source-dir /path/to/source \
    --target-dir /path/to/target \
    --title "Pulp Fiction" \
    --exec

Contributing

Contributions are welcome! Please open an issue or submit a pull request for any enhancements or bug fixes.

License

This project is licensed under the MIT License. See the LICENSE file for details.

About

Hygge Media is a command line application designed to organize media files

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published