media-scrapper/requirements.txt
2026-08-20 09:38:30 -04:00

40 lines
900 B
Plaintext

# plex_stats.py has ZERO external Python dependencies.
#
# This tool uses only Python standard library:
# - argparse
# - csv
# - pathlib
# - sqlite3
# - subprocess
# - typing
#
# SYSTEM REQUIREMENTS (not Python packages):
# - Python 3.10 or later
# - FFmpeg with ffprobe (install via system package manager)
# Ubuntu/Debian: sudo apt install ffmpeg
# CentOS/RHEL: sudo yum install ffmpeg
# macOS: brew install ffmpeg
#
# To install FFmpeg on various systems:
#
# Ubuntu/Debian:
# sudo apt update && sudo apt install ffmpeg
#
# CentOS/RHEL:
# sudo yum install ffmpeg
#
# Fedora:
# sudo dnf install ffmpeg
#
# macOS (Homebrew):
# brew install ffmpeg
#
# Alpine Linux:
# apk add ffmpeg
#
# Verify installation:
# ffprobe -version
#
# This file is provided for reference only.
# No Python packages need to be installed via pip.