A Python library for downloading videos from UW Panopto
Project description
UW Panopto Downloader
A Python tool for downloading videos from UW Panopto and optionally converting them to audio format.
Features
- Interactive browser-based login to access your Panopto content
- Extract video links from Panopto course pages
- Concurrent downloading of multiple videos
- Video to audio conversion (MP4 to MP3)
- User-friendly command line interface with rich formatting
- Configurable settings saved between sessions
Installation
# From PyPI
pip install uw-panopto-downloader
# From source
git clone https://github.com/elimelt/uw-panopto-downloader.git
cd uw-panopto-downloader
pip install -e .
Requirements
- Python 3.11 or higher
- FFmpeg (for video downloads and conversion)
- Chrome or Chromium browser (for Selenium)
Usage
Command Line Interface
The package provides a command-line tool uw-panopto-dl with several subcommands:
# Show help
uw-panopto-dl --help
# Download videos
uw-panopto-dl download [OPTIONS]
# Convert videos to audio
uw-panopto-dl convert [INPUT] [OPTIONS]
# View or update configuration
uw-panopto-dl config [OPTIONS]
# Show version
uw-panopto-dl version
Download Command
# Start an interactive download session
uw-panopto-dl download
# Specify a starting URL
uw-panopto-dl download --url "https://panopto.uw.edu/your-course-page"
# Set output directory
uw-panopto-dl download --output "path/to/downloads"
# Set number of concurrent downloads
uw-panopto-dl download --workers 5
# Run in headless mode (no browser window)
uw-panopto-dl download --headless
Convert Command
# Convert a single video
uw-panopto-dl convert video.mp4
# Convert with output path
uw-panopto-dl convert video.mp4 --output audio.mp3
# Convert a directory of videos
uw-panopto-dl convert videos_dir/ --output audio_dir/
# Set audio bitrate
uw-panopto-dl convert video.mp4 --bitrate 320k
# Set number of FFmpeg threads
uw-panopto-dl convert video.mp4 --threads 4
Config Command
# Show current configuration
uw-panopto-dl config --show
# Update configuration
uw-panopto-dl config --download-dir "path/to/downloads" --max-workers 4
Python API
You can also use the package programmatically:
from uw_panopto_downloader.core import BrowserSession, PanoptoDownloader, VideoConverter
# Initialize a browser session
browser = BrowserSession(headless=False)
browser.manual_login("https://panopto.uw.edu/your-course-page")
# Download videos
downloader = PanoptoDownloader(browser, max_workers=3)
video_links = browser.extract_links()
downloader.download_videos(video_links, "downloads")
# Convert videos to audio
converter = VideoConverter(bitrate="192k")
converter.convert_directory("downloads", "audio")
Configuration
The configuration is stored in ~/.uw-panopto-downloader/config.json and includes:
download_dir: Default download directorymax_workers: Maximum number of concurrent downloadsheadless: Whether to run the browser in headless modeaudio_bitrate: Default audio bitrate for conversionffmpeg_threads: Default number of FFmpeg threads
License
This project is licensed under the MIT License - see the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file uw_panopto_downloader-1.0.1.tar.gz.
File metadata
- Download URL: uw_panopto_downloader-1.0.1.tar.gz
- Upload date:
- Size: 18.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ccceb11d3cf8cc71caf75f79a5fe594d1698dc71b3d8e47f6e7307ebb420367a
|
|
| MD5 |
da688a13110c66828522a3602b83a0b0
|
|
| BLAKE2b-256 |
62db40d9d97b3c5f96fec20f915a088805076aa55d5181eec55c7312369eb6dc
|
File details
Details for the file uw_panopto_downloader-1.0.1-py3-none-any.whl.
File metadata
- Download URL: uw_panopto_downloader-1.0.1-py3-none-any.whl
- Upload date:
- Size: 24.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29c2861b97f64b10aea7f3441579516159031521bbe472ccf1b168c8fd13ddfe
|
|
| MD5 |
ca765dfc98a4c4ef10410df31f1ce7fc
|
|
| BLAKE2b-256 |
217421464b51202b0b1bcc3f33290a2efb672eb7f8ceae0498909cd34c0761a4
|