Skip to main content

media-dlp

Automated media downloader that uses Playwright (browser automation) to load streaming sites, detect video streams via network interception, and download them with yt-dlp.

Why?

Streaming sites load video players that fetch HLS/DASH manifests from CDNs. media-dlp:

  1. Opens the site in a real Firefox window (cookies, referrer, fingerprint – the whole deal)
  2. Watches all network traffic to find the video stream URL
  3. Hands that URL to yt-dlp for the actual download (progress bars, resume support, quality selection)

No sneaky DOM scraping, no brittle CSS selectors against popups – just raw network-level video detection.

Features

  • Network-level detection – catches HLS, MP4, DASH, WebM streams
  • TMDB integration – provide a TMDB movie ID instead of a full URL
  • Source chaining – tries multiple providers (mapple → cineby → …)
  • yt-dlp download – progress output, quality selection, resume
  • Tab muting – no audio from the automated browser window
  • CLI + Python API – use from the terminal or import as a library
  • Browser cookies – passes session cookies to yt-dlp for authenticated streams

Installation

pip install media-dlp

You also need the Playwright Firefox browser:

playwright install firefox

TMDB API Key (for --tmdb-id)

Set the environment variable:

export TMDB_API_KEY="your_key_here"

Get a free key at themoviedb.org/settings/api.


CLI Usage

media-dlp --url https://mapple.club/watch/movie/1034716

media-dlp --tmdb-id 1034716 --quality 1080p --output ~/Movies

media-dlp --tmdb-id 1034716 --providers mapple,cineby --filename "Dune 2"

Options

Argument Short Default Description
--url -u Direct movie page URL
--tmdb-id --tmdb TMDB movie ID
--quality -q 1080p best, 2160p, 1080p, 720p, …
--output -o ./downloads Download directory
--filename -f auto Custom output filename
--providers mapple,cineby Comma-separated source providers to try
--timeout -t 600 Max seconds for the operation
--mute / --no-mute True Mute browser tab
--verbose -v Detailed logs

Python API

from media_dlp import download_movie, list_providers

# List available source providers
print(list_providers())

# Download by URL
result = download_movie(
    url="https://mapple.club/watch/movie/1034716",
    quality="1080p",
    output_dir="./movies",
    mute=True,
    verbose=True,
)
print(result)  # e.g. ./movies/movie_12345.mp4

# Download by TMDB ID
result = download_movie(
    tmdb_id=1034716,
    quality="best",
    providers="mapple,cineby",
    filename="Dune Part Two",
)

How It Works

┌─────────────────────────────────────────────────────┐
│  1. Playwright launches Firefox (persistent profile)│
│  2. Navigate to movie URL / resolve via TMDB        │
│  3. Click play button if needed                     │
│  4. Intercept ALL network requests/responses        │
│  5. Filter for HLS manifests, MP4 URLs, DASH MPDs   │
│  6. Pick best matching quality                      │
│  7. Spawn yt-dlp with: detected URL, cookies,       │
│     referrer, user-agent, origin headers             │
│  8. Stream progress to console                      │
│  9. File appears in output directory                │
└─────────────────────────────────────────────────────┘

The detection works at the network level, not the DOM level. This means it doesn't matter how the video player constructs its URLs – if a HTTP response carries video content, media-dlp sees it.

Source Providers

Providers are configured in media_dlp/sources.py. Each maps a TMDB ID to a streaming-site URL:

Provider URL pattern Priority
mapple https://mapple.club/watch/movie/{tmdb_id} 1
cineby https://cineby.at/movie/{tmdb_id} 2

When you pass --providers mapple,cineby, it tries mapple first; if that fails to produce a video it moves to cineby (future enhancement – currently it takes the first working URL).


Development

git clone https://github.com/jeevan/media-dlp
cd media-dlp
pip install -e .
playwright install firefox

Testing

media-dlp --url https://mapple.club/watch/movie/1034716 --verbose

FAQ

Q: Does this work with DRM-protected content?
A: No. Widevine-level DRM cannot be bypassed. The tool relies on plain HLS/DASH/HTTP streams.

Q: The download is slow
A: Increase the --timeout value. Feature-length movies can take 10-30 minutes.

Q: Can I run this headless?
A: Not currently – most streaming sites require a visible browser to serve video.

Q: The browser opens but no video is detected
A: Run with --verbose to see network traffic. The video player may need manual interaction (e.g. a "Play" click) which the tool attempts automatically via several common CSS selectors.


License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

media_dlp-1.0.0.tar.gz (14.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

media_dlp-1.0.0-py3-none-any.whl (14.2 kB view details)

Uploaded Python 3

File details

Details for the file media_dlp-1.0.0.tar.gz.

File metadata

  • Download URL: media_dlp-1.0.0.tar.gz
  • Upload date:
  • Size: 14.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.13

File hashes

Hashes for media_dlp-1.0.0.tar.gz
Algorithm Hash digest
SHA256 fb54439fb28ae78b5cd1229c17defd193ad28d87467388c58fd91955fdba2a86
MD5 274fd047575a36d26629870cdd13d840
BLAKE2b-256 d0d012416ea9ed20cfe27b35f2222b07741b69451d15367721b2953af8c6c7a1

See more details on using hashes here.

File details

Details for the file media_dlp-1.0.0-py3-none-any.whl.

File metadata

  • Download URL: media_dlp-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 14.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.13

File hashes

Hashes for media_dlp-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 76045fe0208ab8f8dc53508e0f1a4b41788fc295507b4f9ef4f4aa077784f5ab
MD5 ed258ae2c61751a7340f95bfe295936f
BLAKE2b-256 31f4735ec70d3e407772dd6a30afe2e67cf041c273387af7e2ba810818fdf715

See more details on using hashes here.

Release history Release notifications | RSS feed

1.4.1

2 files

1.4.0

2 files

1.3.5

2 files

1.3.4

2 files

1.3.3

2 files

1.3.2

2 files

1.3.1

2 files

1.3.0

2 files

1.2.0

2 files

1.1.0

2 files

This release

1.0.0 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page