# m3u8-extractor example URL list
# Place this file at ./urls.txt or ~/.config/m3u8-extractor/urls.txt

# ── Basic: just a URL (uses the page title as filename) ─────────────────────

# https://example.com/video1
# https://example.com/video2

# ── With a custom title or output path ──────────────────────────────────────

# https://example.com/video3 My Custom Title
# https://example.com/video4 downloads/Lecture 01

# ── With per-URL option flags ───────────────────────────────────────────────

# https://example.com/video5 --audio-only -o "music/song"
# https://example.com/video6 --captions -q "bestvideo+bestaudio"
# https://example.com/video7 -o "clips/" --thumbnail --transcode mkv
# https://example.com/video8 --referrer "https://example.com" --adblock
# https://example.com/video9 --m3u8-select all --ignore-ssl-errors
# https://example.com/video10 --generic-impersonate

# ── Group directives ────────────────────────────────────────────────────────
# Use --- to set options for all URLs that follow, until the next ---

# --- --audio-only -q "bestaudio"
# https://example.com/song1
# https://example.com/song2
# https://example.com/song3

# --- --captions --transcode mkv
# https://example.com/lecture1
# https://example.com/lecture2

# --- (reset to global defaults)
# https://example.com/normal-video
