Scanly is a media file organizer that monitors directories for new files and creates an organized library using symbolic or hard links.
- 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
- Clone the repository:
git clone https://github.com/amcgready/scanly.git
cd scanly
- Install dependencies:
pip install -r requirements.txt
- Create a
.env
file based on the example:
cp .env.template .env
- Edit the
.env
file and set your TMDB API key and other settings.
- Clone the repository:
git clone https://github.com/amcgready/scanly.git
cd scanly
- Create a
.env
file for Docker:
cp .env.example .env
-
Edit the
.env
file to set your TMDB API key and (optionally) other settings. -
Set environment variables for your media directories:
export MEDIA_SOURCE_DIR=/path/to/your/media
export MEDIA_LIBRARY_DIR=/path/to/your/library
- Build and run the Docker container:
docker-compose up -d
Run Scanly from the project directory:
python src/main.py
To use Scanly in interactive mode with Docker:
docker-compose exec -it scanly python src/main.py
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
To view the logs:
docker-compose logs -f scanly
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 filesDESTINATION_DIRECTORY
: Destination directory for the organized libraryLINK_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
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 keyMEDIA_SOURCE_DIR
: Host path to your media files (read-only mount)MEDIA_LIBRARY_DIR
: Host path where the organized library will be createdLOG_LEVEL
: Logging levelAUTO_EXTRACT_EPISODES
: Whether to extract episode numbers automatically