Skip to content

Scanly is a media file organizer that monitors directories for new files and creates an organized library using symbolic links.

Notifications You must be signed in to change notification settings

amcgready/Scanly

Repository files navigation

Project Banner

Join us on Discord GitHub all releases

Scanly

Scanly is a media file organizer that monitors directories for new files and creates an organized library using symbolic or hard links.

Features

  • Monitor directories for new media files
  • Extract show or movie information from filenames
  • Extract season and episode numbers for TV shows
  • Integration with TMDB for accurate metadata
  • Create organized library using symbolic links or hard links
  • Resume interrupted scans
  • Track skipped items

Installation

Standard Installation

  1. Clone the repository:
git clone https://github.com/amcgready/scanly.git
cd scanly
  1. Install dependencies:
pip install -r requirements.txt
  1. Create a .env file based on the example:
cp .env.template .env
  1. Edit the .env file and set your TMDB API key and other settings.

Docker Installation

  1. Clone the repository:
git clone https://github.com/amcgready/scanly.git
cd scanly
  1. Create a .env file for Docker:
cp .env.example .env
  1. Edit the .env file to set your TMDB API key and (optionally) other settings.

  2. Set environment variables for your media directories:

export MEDIA_SOURCE_DIR=/path/to/your/media
export MEDIA_LIBRARY_DIR=/path/to/your/library
  1. Build and run the Docker container:
docker-compose up -d

Usage

Standard Usage

Run Scanly from the project directory:

python src/main.py

Docker Usage

Interactive Mode

To use Scanly in interactive mode with Docker:

docker-compose exec -it scanly python src/main.py

Process a Specific Path

To process a specific path inside the container:

docker-compose exec scanly python src/main.py --movie /media/source/movies
# or
docker-compose exec scanly python src/main.py --tv /media/source/tv_shows

View Logs

To view the logs:

docker-compose logs -f scanly

Configuration

Scanly can be configured using the .env file or through the Settings menu. Key configuration options include:

  • TMDB_API_KEY: Your TMDB API key (required)
  • ORIGIN_DIRECTORY: Default directory to monitor for media files
  • DESTINATION_DIRECTORY: Destination directory for the organized library
  • LINK_TYPE: Type of links to create - 'symlink' (default) or 'hardlink'
  • RELATIVE_SYMLINK: Use relative paths for symlinks ('true' or 'false')
  • LOG_LEVEL: Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL)
  • AUTO_EXTRACT_EPISODES: Automatically extract episode numbers without prompting

Docker Environment Variables

When using Docker, you can set these environment variables either in the .env file or in docker-compose.yml:

  • TMDB_API_KEY: Your TMDB API key
  • MEDIA_SOURCE_DIR: Host path to your media files (read-only mount)
  • MEDIA_LIBRARY_DIR: Host path where the organized library will be created
  • LOG_LEVEL: Logging level
  • AUTO_EXTRACT_EPISODES: Whether to extract episode numbers automatically

Donate GitHub Sponsors