mirror of
https://github.com/ihabunek/twitch-dl
synced 2024-08-30 18:32:25 +00:00
Compare commits
22 Commits
Author | SHA1 | Date | |
---|---|---|---|
125bc693f8 | |||
8a7fdad22f | |||
c00a9c3597 | |||
0f17d92a8c | |||
ee1e0ce853 | |||
1c878bbca8 | |||
941440de41 | |||
c0eae623a4 | |||
f4d0643b07 | |||
ea4b714343 | |||
f815934e15 | |||
5aa323e3e5 | |||
3d03658850 | |||
69b848d341 | |||
2422871d70 | |||
44890b4101 | |||
9aa108acbf | |||
3fa8bcef73 | |||
3c0f8a8ece | |||
7845cf6f72 | |||
6ed98fa4ef | |||
d777f0e98a |
27
.github/workflows/test.yml
vendored
Normal file
27
.github/workflows/test.yml
vendored
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
name: Run tests
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-22.04
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Set up Python ${{ matrix.python-version }}
|
||||||
|
uses: actions/setup-python@v5
|
||||||
|
with:
|
||||||
|
python-version: ${{ matrix.python-version }}
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install -e ".[test]"
|
||||||
|
- name: Run tests
|
||||||
|
run: |
|
||||||
|
pytest
|
||||||
|
- name: Validate minimum required version
|
||||||
|
run: |
|
||||||
|
vermin --no-tips twitchdl
|
@ -3,6 +3,15 @@ twitch-dl changelog
|
|||||||
|
|
||||||
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
|
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
|
||||||
|
|
||||||
|
### [2.2.4 (2024-04-25)](https://github.com/ihabunek/twitch-dl/releases/tag/2.2.4)
|
||||||
|
|
||||||
|
* Add m dot url support to video and clip regexes (thanks @localnerve)
|
||||||
|
|
||||||
|
### [2.2.3 (2024-04-24)](https://github.com/ihabunek/twitch-dl/releases/tag/2.2.3)
|
||||||
|
|
||||||
|
* Respect --dry-run option when downloading videos
|
||||||
|
* Add automated tests on github actions
|
||||||
|
|
||||||
### [2.2.2 (2024-04-23)](https://github.com/ihabunek/twitch-dl/releases/tag/2.2.2)
|
### [2.2.2 (2024-04-23)](https://github.com/ihabunek/twitch-dl/releases/tag/2.2.2)
|
||||||
|
|
||||||
* Fix more compat issues Python < 3.10 (#152)
|
* Fix more compat issues Python < 3.10 (#152)
|
||||||
|
2
Makefile
2
Makefile
@ -24,7 +24,7 @@ publish :
|
|||||||
twine upload dist/*.tar.gz dist/*.whl
|
twine upload dist/*.tar.gz dist/*.whl
|
||||||
|
|
||||||
coverage:
|
coverage:
|
||||||
py.test --cov=toot --cov-report html tests/
|
pytest --cov=twitchdl --cov-report html tests/
|
||||||
|
|
||||||
man:
|
man:
|
||||||
scdoc < twitch-dl.1.scd > twitch-dl.1.man
|
scdoc < twitch-dl.1.scd > twitch-dl.1.man
|
||||||
|
@ -1,3 +1,14 @@
|
|||||||
|
2.2.4:
|
||||||
|
date: 2024-04-25
|
||||||
|
changes:
|
||||||
|
- "Add m dot url support to video and clip regexes (thanks @localnerve)"
|
||||||
|
|
||||||
|
2.2.3:
|
||||||
|
date: 2024-04-24
|
||||||
|
changes:
|
||||||
|
- "Respect --dry-run option when downloading videos"
|
||||||
|
- "Add automated tests on github actions"
|
||||||
|
|
||||||
2.2.2:
|
2.2.2:
|
||||||
date: 2024-04-23
|
date: 2024-04-23
|
||||||
changes:
|
changes:
|
||||||
|
@ -3,6 +3,15 @@ twitch-dl changelog
|
|||||||
|
|
||||||
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
|
<!-- Do not edit. This file is automatically generated from changelog.yaml.-->
|
||||||
|
|
||||||
|
### [2.2.4 (2024-04-25)](https://github.com/ihabunek/twitch-dl/releases/tag/2.2.4)
|
||||||
|
|
||||||
|
* Add m dot url support to video and clip regexes (thanks @localnerve)
|
||||||
|
|
||||||
|
### [2.2.3 (2024-04-24)](https://github.com/ihabunek/twitch-dl/releases/tag/2.2.3)
|
||||||
|
|
||||||
|
* Respect --dry-run option when downloading videos
|
||||||
|
* Add automated tests on github actions
|
||||||
|
|
||||||
### [2.2.2 (2024-04-23)](https://github.com/ihabunek/twitch-dl/releases/tag/2.2.2)
|
### [2.2.2 (2024-04-23)](https://github.com/ihabunek/twitch-dl/releases/tag/2.2.2)
|
||||||
|
|
||||||
* Fix more compat issues Python < 3.10 (#152)
|
* Fix more compat issues Python < 3.10 (#152)
|
||||||
|
@ -43,6 +43,11 @@ dev = [
|
|||||||
"vermin",
|
"vermin",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
test = [
|
||||||
|
"pytest",
|
||||||
|
"vermin",
|
||||||
|
]
|
||||||
|
|
||||||
[project.urls]
|
[project.urls]
|
||||||
"Homepage" = "https://twitch-dl.bezdomni.net/"
|
"Homepage" = "https://twitch-dl.bezdomni.net/"
|
||||||
"Source" = "https://github.com/ihabunek/twitch-dl"
|
"Source" = "https://github.com/ihabunek/twitch-dl"
|
||||||
@ -51,7 +56,6 @@ dev = [
|
|||||||
twitch-dl = "twitchdl.cli:cli"
|
twitch-dl = "twitchdl.cli:cli"
|
||||||
|
|
||||||
[tool.pyright]
|
[tool.pyright]
|
||||||
include = ["twitchdl"]
|
|
||||||
typeCheckingMode = "strict"
|
typeCheckingMode = "strict"
|
||||||
pythonVersion = "3.8"
|
pythonVersion = "3.8"
|
||||||
|
|
||||||
|
@ -3,9 +3,12 @@ These tests depend on the channel having some videos and clips published.
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
import httpx
|
import httpx
|
||||||
|
import pytest
|
||||||
|
|
||||||
from twitchdl import twitch
|
from twitchdl import twitch
|
||||||
from twitchdl.commands.download import get_clip_authenticated_url
|
from twitchdl.commands.download import get_clip_authenticated_url
|
||||||
|
from twitchdl.commands.videos import get_game_ids
|
||||||
|
from twitchdl.exceptions import ConsoleError
|
||||||
from twitchdl.playlists import enumerate_vods, load_m3u8, parse_playlists
|
from twitchdl.playlists import enumerate_vods, load_m3u8, parse_playlists
|
||||||
|
|
||||||
TEST_CHANNEL = "bananasaurus_rex"
|
TEST_CHANNEL = "bananasaurus_rex"
|
||||||
@ -53,3 +56,15 @@ def test_get_clips():
|
|||||||
assert clip["slug"] == slug
|
assert clip["slug"] == slug
|
||||||
|
|
||||||
assert get_clip_authenticated_url(slug, "source")
|
assert get_clip_authenticated_url(slug, "source")
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_games():
|
||||||
|
assert get_game_ids([]) == []
|
||||||
|
assert get_game_ids(["Bioshock"]) == ["15866"]
|
||||||
|
assert get_game_ids(["Bioshock", "Portal"]) == ["15866", "6187"]
|
||||||
|
|
||||||
|
|
||||||
|
def test_get_games_not_found():
|
||||||
|
with pytest.raises(ConsoleError) as ex:
|
||||||
|
get_game_ids(["the game which does not exist"])
|
||||||
|
assert str(ex.value) == "Game 'the game which does not exist' not found"
|
||||||
|
156
tests/test_cli.py
Normal file
156
tests/test_cli.py
Normal file
@ -0,0 +1,156 @@
|
|||||||
|
import json
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
from click.testing import CliRunner, Result
|
||||||
|
|
||||||
|
from twitchdl import cli
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture(scope="session")
|
||||||
|
def runner():
|
||||||
|
return CliRunner(mix_stderr=False)
|
||||||
|
|
||||||
|
|
||||||
|
def assert_ok(result: Result):
|
||||||
|
if result.exit_code != 0:
|
||||||
|
raise AssertionError(
|
||||||
|
f"Command failed with exit code {result.exit_code}\nStderr: {result.stderr}"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def test_info_video(runner: CliRunner):
|
||||||
|
result = runner.invoke(cli.info, ["2090131595"])
|
||||||
|
assert_ok(result)
|
||||||
|
|
||||||
|
assert "Frost Fatales 2024 Day 1" in result.stdout
|
||||||
|
assert "frozenflygone playing Tomb Raider" in result.stdout
|
||||||
|
|
||||||
|
|
||||||
|
def test_info_video_json(runner: CliRunner):
|
||||||
|
result = runner.invoke(cli.info, ["2090131595", "--json"])
|
||||||
|
assert_ok(result)
|
||||||
|
|
||||||
|
video = json.loads(result.stdout)
|
||||||
|
assert video["title"] == "Frost Fatales 2024 Day 1"
|
||||||
|
assert video["game"] == {"id": "2770", "name": "Tomb Raider"}
|
||||||
|
assert video["creator"] == {"login": "frozenflygone", "displayName": "frozenflygone"}
|
||||||
|
|
||||||
|
|
||||||
|
def test_info_clip(runner: CliRunner):
|
||||||
|
result = runner.invoke(cli.info, ["PoisedTalentedPuddingChefFrank"])
|
||||||
|
assert_ok(result)
|
||||||
|
|
||||||
|
assert "AGDQ Crashes during Bioshock run" in result.stdout
|
||||||
|
assert "GamesDoneQuick playing BioShock" in result.stdout
|
||||||
|
|
||||||
|
|
||||||
|
def test_info_clip_json(runner: CliRunner):
|
||||||
|
result = runner.invoke(cli.info, ["PoisedTalentedPuddingChefFrank", "--json"])
|
||||||
|
assert_ok(result)
|
||||||
|
|
||||||
|
clip = json.loads(result.stdout)
|
||||||
|
assert clip["slug"] == "PoisedTalentedPuddingChefFrank"
|
||||||
|
assert clip["title"] == "AGDQ Crashes during Bioshock run"
|
||||||
|
assert clip["game"] == {"id": "15866", "name": "BioShock"}
|
||||||
|
assert clip["broadcaster"] == {"displayName": "GamesDoneQuick", "login": "gamesdonequick"}
|
||||||
|
|
||||||
|
|
||||||
|
def test_info_not_found(runner: CliRunner):
|
||||||
|
result = runner.invoke(cli.info, ["banana"])
|
||||||
|
assert result.exit_code == 1
|
||||||
|
assert "Clip banana not found" in result.stderr
|
||||||
|
|
||||||
|
result = runner.invoke(cli.info, ["12345"])
|
||||||
|
assert result.exit_code == 1
|
||||||
|
assert "Video 12345 not found" in result.stderr
|
||||||
|
|
||||||
|
result = runner.invoke(cli.info, [""])
|
||||||
|
assert result.exit_code == 1
|
||||||
|
assert "Invalid input" in result.stderr
|
||||||
|
|
||||||
|
|
||||||
|
def test_download_clip(runner: CliRunner):
|
||||||
|
result = runner.invoke(
|
||||||
|
cli.download,
|
||||||
|
[
|
||||||
|
"PoisedTalentedPuddingChefFrank",
|
||||||
|
"-q",
|
||||||
|
"source",
|
||||||
|
"--dry-run",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
assert_ok(result)
|
||||||
|
assert (
|
||||||
|
"Found: AGDQ Crashes during Bioshock run by GamesDoneQuick, playing BioShock (30 sec)"
|
||||||
|
in result.stdout
|
||||||
|
)
|
||||||
|
assert (
|
||||||
|
"Target: 2020-01-10_3099545841_gamesdonequick_agdq_crashes_during_bioshock_run.mp4"
|
||||||
|
in result.stdout
|
||||||
|
)
|
||||||
|
assert "Dry run, clip not downloaded." in result.stdout
|
||||||
|
|
||||||
|
|
||||||
|
def test_download_video(runner: CliRunner):
|
||||||
|
result = runner.invoke(
|
||||||
|
cli.download,
|
||||||
|
[
|
||||||
|
"2090131595",
|
||||||
|
"-q",
|
||||||
|
"source",
|
||||||
|
"--dry-run",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
assert_ok(result)
|
||||||
|
assert "Found: Frost Fatales 2024 Day 1 by frozenflygone" in result.stdout
|
||||||
|
assert (
|
||||||
|
"Output: 2024-03-14_2090131595_frozenflygone_frost_fatales_2024_day_1.mkv" in result.stdout
|
||||||
|
)
|
||||||
|
assert "Dry run, video not downloaded." in result.stdout
|
||||||
|
|
||||||
|
|
||||||
|
def test_videos(runner: CliRunner):
|
||||||
|
result = runner.invoke(cli.videos, ["gamesdonequick", "--json"])
|
||||||
|
assert_ok(result)
|
||||||
|
videos = json.loads(result.stdout)
|
||||||
|
|
||||||
|
assert videos["count"] == 10
|
||||||
|
assert videos["totalCount"] > 0
|
||||||
|
video = videos["videos"][0]
|
||||||
|
|
||||||
|
result = runner.invoke(cli.videos, "gamesdonequick")
|
||||||
|
assert_ok(result)
|
||||||
|
|
||||||
|
assert f"Video {video['id']}" in result.stdout
|
||||||
|
assert video["title"] in result.stdout
|
||||||
|
|
||||||
|
result = runner.invoke(cli.videos, ["gamesdonequick", "--compact"])
|
||||||
|
assert_ok(result)
|
||||||
|
|
||||||
|
assert video["id"] in result.stdout
|
||||||
|
assert video["title"][:60] in result.stdout
|
||||||
|
|
||||||
|
|
||||||
|
def test_videos_channel_not_found(runner: CliRunner):
|
||||||
|
result = runner.invoke(cli.videos, ["doesnotexisthopefully"])
|
||||||
|
assert result.exit_code == 1
|
||||||
|
assert result.stderr.strip() == "Error: Channel doesnotexisthopefully not found"
|
||||||
|
|
||||||
|
|
||||||
|
def test_clips(runner: CliRunner):
|
||||||
|
result = runner.invoke(cli.clips, ["gamesdonequick", "--json"])
|
||||||
|
assert_ok(result)
|
||||||
|
clips = json.loads(result.stdout)
|
||||||
|
clip = clips[0]
|
||||||
|
|
||||||
|
result = runner.invoke(cli.clips, "gamesdonequick")
|
||||||
|
assert_ok(result)
|
||||||
|
|
||||||
|
assert f"Clip {clip['slug']}" in result.stdout
|
||||||
|
assert clip["title"] in result.stdout
|
||||||
|
|
||||||
|
result = runner.invoke(cli.clips, ["gamesdonequick", "--compact"])
|
||||||
|
assert_ok(result)
|
||||||
|
|
||||||
|
assert clip["slug"] in result.stdout
|
||||||
|
assert clip["title"][:60] in result.stdout
|
@ -1,35 +1,38 @@
|
|||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from twitchdl.utils import parse_video_identifier, parse_clip_identifier
|
from twitchdl.utils import parse_clip_identifier, parse_video_identifier
|
||||||
|
|
||||||
|
|
||||||
TEST_VIDEO_PATTERNS = [
|
TEST_VIDEO_PATTERNS = [
|
||||||
("702689313", "702689313"),
|
("702689313", "702689313"),
|
||||||
("702689313", "https://twitch.tv/videos/702689313"),
|
("702689313", "https://twitch.tv/videos/702689313"),
|
||||||
("702689313", "https://www.twitch.tv/videos/702689313"),
|
("702689313", "https://www.twitch.tv/videos/702689313"),
|
||||||
|
("702689313", "https://m.twitch.tv/videos/702689313"),
|
||||||
]
|
]
|
||||||
|
|
||||||
TEST_CLIP_PATTERNS = {
|
TEST_CLIP_PATTERNS = {
|
||||||
("AbrasivePlayfulMangoMau5", "AbrasivePlayfulMangoMau5"),
|
("AbrasivePlayfulMangoMau5", "AbrasivePlayfulMangoMau5"),
|
||||||
("AbrasivePlayfulMangoMau5", "https://clips.twitch.tv/AbrasivePlayfulMangoMau5"),
|
("AbrasivePlayfulMangoMau5", "https://clips.twitch.tv/AbrasivePlayfulMangoMau5"),
|
||||||
("AbrasivePlayfulMangoMau5", "https://www.twitch.tv/dracul1nx/clip/AbrasivePlayfulMangoMau5"),
|
("AbrasivePlayfulMangoMau5", "https://www.twitch.tv/dracul1nx/clip/AbrasivePlayfulMangoMau5"),
|
||||||
|
("AbrasivePlayfulMangoMau5", "https://m.twitch.tv/dracul1nx/clip/AbrasivePlayfulMangoMau5"),
|
||||||
("AbrasivePlayfulMangoMau5", "https://twitch.tv/dracul1nx/clip/AbrasivePlayfulMangoMau5"),
|
("AbrasivePlayfulMangoMau5", "https://twitch.tv/dracul1nx/clip/AbrasivePlayfulMangoMau5"),
|
||||||
("HungryProudRadicchioDoggo", "HungryProudRadicchioDoggo"),
|
("HungryProudRadicchioDoggo", "HungryProudRadicchioDoggo"),
|
||||||
("HungryProudRadicchioDoggo", "https://clips.twitch.tv/HungryProudRadicchioDoggo"),
|
("HungryProudRadicchioDoggo", "https://clips.twitch.tv/HungryProudRadicchioDoggo"),
|
||||||
("HungryProudRadicchioDoggo", "https://www.twitch.tv/bananasaurus_rex/clip/HungryProudRadicchioDoggo?filter=clips&range=7d&sort=time"),
|
("HungryProudRadicchioDoggo", "https://www.twitch.tv/bananasaurus_rex/clip/HungryProudRadicchioDoggo?filter=clips&range=7d&sort=time"),
|
||||||
|
("HungryProudRadicchioDoggo", "https://m.twitch.tv/bananasaurus_rex/clip/HungryProudRadicchioDoggo?filter=clips&range=7d&sort=time"),
|
||||||
("HungryProudRadicchioDoggo", "https://twitch.tv/bananasaurus_rex/clip/HungryProudRadicchioDoggo?filter=clips&range=7d&sort=time"),
|
("HungryProudRadicchioDoggo", "https://twitch.tv/bananasaurus_rex/clip/HungryProudRadicchioDoggo?filter=clips&range=7d&sort=time"),
|
||||||
("GloriousColdbloodedTortoiseRuleFive-E017utJ4DZmHVpfQ", "GloriousColdbloodedTortoiseRuleFive-E017utJ4DZmHVpfQ"),
|
("GloriousColdbloodedTortoiseRuleFive-E017utJ4DZmHVpfQ", "GloriousColdbloodedTortoiseRuleFive-E017utJ4DZmHVpfQ"),
|
||||||
("GloriousColdbloodedTortoiseRuleFive-E017utJ4DZmHVpfQ", "https://twitch.tv/dracul1nx/clip/GloriousColdbloodedTortoiseRuleFive-E017utJ4DZmHVpfQ"),
|
("GloriousColdbloodedTortoiseRuleFive-E017utJ4DZmHVpfQ", "https://twitch.tv/dracul1nx/clip/GloriousColdbloodedTortoiseRuleFive-E017utJ4DZmHVpfQ"),
|
||||||
("GloriousColdbloodedTortoiseRuleFive-E017utJ4DZmHVpfQ", "https://twitch.tv/dracul1nx/clip/GloriousColdbloodedTortoiseRuleFive-E017utJ4DZmHVpfQ?filter=clips&range=7d&sort=time"),
|
("GloriousColdbloodedTortoiseRuleFive-E017utJ4DZmHVpfQ", "https://twitch.tv/dracul1nx/clip/GloriousColdbloodedTortoiseRuleFive-E017utJ4DZmHVpfQ?filter=clips&range=7d&sort=time"),
|
||||||
("GloriousColdbloodedTortoiseRuleFive-E017utJ4DZmHVpfQ", "https://www.twitch.tv/dracul1nx/clip/GloriousColdbloodedTortoiseRuleFive-E017utJ4DZmHVpfQ?filter=clips&range=7d&sort=time"),
|
("GloriousColdbloodedTortoiseRuleFive-E017utJ4DZmHVpfQ", "https://www.twitch.tv/dracul1nx/clip/GloriousColdbloodedTortoiseRuleFive-E017utJ4DZmHVpfQ?filter=clips&range=7d&sort=time"),
|
||||||
|
("GloriousColdbloodedTortoiseRuleFive-E017utJ4DZmHVpfQ", "https://m.twitch.tv/dracul1nx/clip/GloriousColdbloodedTortoiseRuleFive-E017utJ4DZmHVpfQ?filter=clips&range=7d&sort=time"),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize("expected,input", TEST_VIDEO_PATTERNS)
|
@pytest.mark.parametrize("expected,input", TEST_VIDEO_PATTERNS)
|
||||||
def test_video_patterns(expected, input):
|
def test_video_patterns(expected: str, input: str):
|
||||||
assert parse_video_identifier(input) == expected
|
assert parse_video_identifier(input) == expected
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize("expected,input", TEST_CLIP_PATTERNS)
|
@pytest.mark.parametrize("expected,input", TEST_CLIP_PATTERNS)
|
||||||
def test_clip_patterns(expected, input):
|
def test_clip_patterns(expected: str, input: str):
|
||||||
assert parse_clip_identifier(input) == expected
|
assert parse_clip_identifier(input) == expected
|
||||||
|
@ -2,7 +2,7 @@ import logging
|
|||||||
import platform
|
import platform
|
||||||
import re
|
import re
|
||||||
import sys
|
import sys
|
||||||
from typing import Optional
|
from typing import Optional, Tuple
|
||||||
|
|
||||||
import click
|
import click
|
||||||
|
|
||||||
@ -91,7 +91,9 @@ def cli(ctx: click.Context, color: bool, debug: bool):
|
|||||||
ctx.color = color
|
ctx.color = color
|
||||||
|
|
||||||
if debug:
|
if debug:
|
||||||
logging.basicConfig(level=logging.INFO)
|
logging.basicConfig(level=logging.DEBUG)
|
||||||
|
logging.getLogger("httpx").setLevel(logging.WARN)
|
||||||
|
logging.getLogger("httpcore").setLevel(logging.WARN)
|
||||||
|
|
||||||
|
|
||||||
@cli.command()
|
@cli.command()
|
||||||
@ -255,7 +257,7 @@ def clips(
|
|||||||
default=5,
|
default=5,
|
||||||
)
|
)
|
||||||
def download(
|
def download(
|
||||||
ids: tuple[str, ...],
|
ids: Tuple[str, ...],
|
||||||
auth_token: Optional[str],
|
auth_token: Optional[str],
|
||||||
chapter: Optional[int],
|
chapter: Optional[int],
|
||||||
concat: bool,
|
concat: bool,
|
||||||
@ -374,7 +376,7 @@ def videos(
|
|||||||
channel_name: str,
|
channel_name: str,
|
||||||
all: bool,
|
all: bool,
|
||||||
compact: bool,
|
compact: bool,
|
||||||
games_tuple: tuple[str, ...],
|
games_tuple: Tuple[str, ...],
|
||||||
json: bool,
|
json: bool,
|
||||||
limit: Optional[int],
|
limit: Optional[int],
|
||||||
pager: Optional[int],
|
pager: Optional[int],
|
||||||
|
@ -273,6 +273,10 @@ def _download_video(video_id: str, args: DownloadOptions) -> None:
|
|||||||
vods_m3u8 = load_m3u8(vods_text)
|
vods_m3u8 = load_m3u8(vods_text)
|
||||||
vods = enumerate_vods(vods_m3u8, start, end)
|
vods = enumerate_vods(vods_m3u8, start, end)
|
||||||
|
|
||||||
|
if args.dry_run:
|
||||||
|
click.echo("Dry run, video not downloaded.")
|
||||||
|
return
|
||||||
|
|
||||||
base_uri = re.sub("/[^/]+$", "/", playlist.url)
|
base_uri = re.sub("/[^/]+$", "/", playlist.url)
|
||||||
target_dir = _crete_temp_dir(base_uri)
|
target_dir = _crete_temp_dir(base_uri)
|
||||||
|
|
||||||
|
@ -7,6 +7,7 @@ from twitchdl import twitch, utils
|
|||||||
from twitchdl.commands.download import get_video_placeholders
|
from twitchdl.commands.download import get_video_placeholders
|
||||||
from twitchdl.exceptions import ConsoleError
|
from twitchdl.exceptions import ConsoleError
|
||||||
from twitchdl.output import bold, print_clip, print_json, print_log, print_table, print_video
|
from twitchdl.output import bold, print_clip, print_json, print_log, print_table, print_video
|
||||||
|
from twitchdl.playlists import parse_playlists
|
||||||
from twitchdl.twitch import Chapter, Clip, Video
|
from twitchdl.twitch import Chapter, Clip, Video
|
||||||
|
|
||||||
|
|
||||||
@ -50,13 +51,13 @@ def info(id: str, *, json: bool = False):
|
|||||||
raise ConsoleError(f"Invalid input: {id}")
|
raise ConsoleError(f"Invalid input: {id}")
|
||||||
|
|
||||||
|
|
||||||
def video_info(video: Video, playlists, chapters: List[Chapter]):
|
def video_info(video: Video, playlists: str, chapters: List[Chapter]):
|
||||||
click.echo()
|
click.echo()
|
||||||
print_video(video)
|
print_video(video)
|
||||||
|
|
||||||
click.echo("Playlists:")
|
click.echo("Playlists:")
|
||||||
for p in m3u8.loads(playlists).playlists:
|
for p in parse_playlists(playlists):
|
||||||
click.echo(f"{bold(p.stream_info.video)} {p.uri}")
|
click.echo(f"{bold(p.name)} {p.url}")
|
||||||
|
|
||||||
if chapters:
|
if chapters:
|
||||||
click.echo()
|
click.echo()
|
||||||
@ -72,7 +73,7 @@ def video_info(video: Video, playlists, chapters: List[Chapter]):
|
|||||||
print_table(["Placeholder", "Value"], placeholders)
|
print_table(["Placeholder", "Value"], placeholders)
|
||||||
|
|
||||||
|
|
||||||
def video_json(video, playlists, chapters):
|
def video_json(video: Video, playlists: str, chapters: List[Chapter]):
|
||||||
playlists = m3u8.loads(playlists).playlists
|
playlists = m3u8.loads(playlists).playlists
|
||||||
|
|
||||||
video["playlists"] = [
|
video["playlists"] = [
|
||||||
|
@ -20,7 +20,7 @@ def videos(
|
|||||||
sort: twitch.VideosSort,
|
sort: twitch.VideosSort,
|
||||||
type: twitch.VideosType,
|
type: twitch.VideosType,
|
||||||
):
|
):
|
||||||
game_ids = _get_game_ids(games)
|
game_ids = get_game_ids(games)
|
||||||
|
|
||||||
# Set different defaults for limit for compact display
|
# Set different defaults for limit for compact display
|
||||||
limit = limit or (40 if compact else 10)
|
limit = limit or (40 if compact else 10)
|
||||||
@ -67,16 +67,13 @@ def videos(
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
def _get_game_ids(names: List[str]) -> List[str]:
|
def get_game_ids(names: List[str]) -> List[str]:
|
||||||
if not names:
|
return [get_game_id(name) for name in names]
|
||||||
return []
|
|
||||||
|
|
||||||
game_ids = []
|
|
||||||
for name in names:
|
|
||||||
print_log(f"Looking up game '{name}'...")
|
|
||||||
game_id = twitch.get_game_id(name)
|
|
||||||
if not game_id:
|
|
||||||
raise ConsoleError(f"Game '{name}' not found")
|
|
||||||
game_ids.append(int(game_id))
|
|
||||||
|
|
||||||
return game_ids
|
def get_game_id(name: str) -> str:
|
||||||
|
print_log(f"Looking up game '{name}'...")
|
||||||
|
game_id = twitch.get_game_id(name)
|
||||||
|
if not game_id:
|
||||||
|
raise ConsoleError(f"Game '{name}' not found")
|
||||||
|
return game_id
|
||||||
|
@ -29,7 +29,7 @@ class Vod:
|
|||||||
"""Segment duration in seconds"""
|
"""Segment duration in seconds"""
|
||||||
|
|
||||||
|
|
||||||
def parse_playlists(playlists_m3u8: str):
|
def parse_playlists(playlists_m3u8: str) -> List[Playlist]:
|
||||||
def _parse(source: str) -> Generator[Playlist, None, None]:
|
def _parse(source: str) -> Generator[Playlist, None, None]:
|
||||||
document = load_m3u8(source)
|
document = load_m3u8(source)
|
||||||
|
|
||||||
|
@ -3,7 +3,9 @@ Twitch API access.
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
import json
|
import json
|
||||||
from typing import Dict, Generator, List, Literal, Mapping, Optional, TypedDict
|
import logging
|
||||||
|
import time
|
||||||
|
from typing import Any, Dict, Generator, List, Literal, Mapping, Optional, Tuple, TypedDict, Union
|
||||||
|
|
||||||
import click
|
import click
|
||||||
import httpx
|
import httpx
|
||||||
@ -87,10 +89,22 @@ class GQLError(click.ClickException):
|
|||||||
super().__init__(message)
|
super().__init__(message)
|
||||||
|
|
||||||
|
|
||||||
def authenticated_post(url, data=None, json=None, headers={}):
|
Content = Union[str, bytes]
|
||||||
headers["Client-ID"] = CLIENT_ID
|
Headers = Dict[str, str]
|
||||||
|
|
||||||
response = httpx.post(url, data=data, json=json, headers=headers)
|
|
||||||
|
def authenticated_post(
|
||||||
|
url: str,
|
||||||
|
*,
|
||||||
|
json: Any = None,
|
||||||
|
content: Optional[Content] = None,
|
||||||
|
auth_token: Optional[str] = None,
|
||||||
|
):
|
||||||
|
headers = {"Client-ID": CLIENT_ID}
|
||||||
|
if auth_token is not None:
|
||||||
|
headers["authorization"] = f"OAuth {auth_token}"
|
||||||
|
|
||||||
|
response = request("POST", url, content=content, json=json, headers=headers)
|
||||||
if response.status_code == 400:
|
if response.status_code == 400:
|
||||||
data = response.json()
|
data = response.json()
|
||||||
raise ConsoleError(data["message"])
|
raise ConsoleError(data["message"])
|
||||||
@ -100,16 +114,50 @@ def authenticated_post(url, data=None, json=None, headers={}):
|
|||||||
return response
|
return response
|
||||||
|
|
||||||
|
|
||||||
|
def request(
|
||||||
|
method: str,
|
||||||
|
url: str,
|
||||||
|
json: Any = None,
|
||||||
|
content: Optional[Content] = None,
|
||||||
|
headers: Optional[Mapping[str, str]] = None,
|
||||||
|
):
|
||||||
|
with httpx.Client() as client:
|
||||||
|
request = client.build_request(method, url, json=json, content=content, headers=headers)
|
||||||
|
log_request(request)
|
||||||
|
start = time.time()
|
||||||
|
response = client.send(request)
|
||||||
|
duration = time.time() - start
|
||||||
|
log_response(response, duration)
|
||||||
|
return response
|
||||||
|
|
||||||
|
|
||||||
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
|
def log_request(request: httpx.Request):
|
||||||
|
logger.debug(f"--> {request.method} {request.url}")
|
||||||
|
if request.content:
|
||||||
|
logger.debug(f"--> {request.content}")
|
||||||
|
|
||||||
|
|
||||||
|
def log_response(response: httpx.Response, duration: float):
|
||||||
|
request = response.request
|
||||||
|
duration_ms = int(1000 * duration)
|
||||||
|
logger.debug(f"<-- {request.method} {request.url} HTTP {response.status_code} {duration_ms}ms")
|
||||||
|
if response.content:
|
||||||
|
logger.debug(f"<-- {response.content}")
|
||||||
|
|
||||||
|
|
||||||
def gql_post(query: str):
|
def gql_post(query: str):
|
||||||
url = "https://gql.twitch.tv/gql"
|
url = "https://gql.twitch.tv/gql"
|
||||||
response = authenticated_post(url, data=query)
|
response = authenticated_post(url, content=query)
|
||||||
gql_raise_on_error(response)
|
gql_raise_on_error(response)
|
||||||
return response.json()
|
return response.json()
|
||||||
|
|
||||||
|
|
||||||
def gql_query(query: str, headers: Dict[str, str] = {}):
|
def gql_query(query: str, auth_token: Optional[str] = None):
|
||||||
url = "https://gql.twitch.tv/gql"
|
url = "https://gql.twitch.tv/gql"
|
||||||
response = authenticated_post(url, json={"query": query}, headers=headers)
|
response = authenticated_post(url, json={"query": query}, auth_token=auth_token)
|
||||||
gql_raise_on_error(response)
|
gql_raise_on_error(response)
|
||||||
return response.json()
|
return response.json()
|
||||||
|
|
||||||
@ -303,6 +351,7 @@ def get_channel_videos(
|
|||||||
after: Optional[str] = None,
|
after: Optional[str] = None,
|
||||||
):
|
):
|
||||||
game_ids = game_ids or []
|
game_ids = game_ids or []
|
||||||
|
game_ids_str = f"[{','.join(game_ids)}]"
|
||||||
|
|
||||||
query = f"""
|
query = f"""
|
||||||
{{
|
{{
|
||||||
@ -313,7 +362,7 @@ def get_channel_videos(
|
|||||||
sort: {sort.upper()},
|
sort: {sort.upper()},
|
||||||
after: "{after or ''}",
|
after: "{after or ''}",
|
||||||
options: {{
|
options: {{
|
||||||
gameIDs: {game_ids}
|
gameIDs: {game_ids_str}
|
||||||
}}
|
}}
|
||||||
) {{
|
) {{
|
||||||
totalCount
|
totalCount
|
||||||
@ -345,7 +394,7 @@ def channel_videos_generator(
|
|||||||
sort: VideosSort,
|
sort: VideosSort,
|
||||||
type: VideosType,
|
type: VideosType,
|
||||||
game_ids: Optional[List[str]] = None,
|
game_ids: Optional[List[str]] = None,
|
||||||
) -> tuple[int, Generator[Video, None, None]]:
|
) -> Tuple[int, Generator[Video, None, None]]:
|
||||||
game_ids = game_ids or []
|
game_ids = game_ids or []
|
||||||
|
|
||||||
def _generator(videos: Data, max_videos: int) -> Generator[Video, None, None]:
|
def _generator(videos: Data, max_videos: int) -> Generator[Video, None, None]:
|
||||||
@ -386,12 +435,8 @@ def get_access_token(video_id: str, auth_token: Optional[str] = None) -> AccessT
|
|||||||
}}
|
}}
|
||||||
"""
|
"""
|
||||||
|
|
||||||
headers: Mapping[str, str] = {}
|
|
||||||
if auth_token is not None:
|
|
||||||
headers["authorization"] = f"OAuth {auth_token}"
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
response = gql_query(query, headers=headers)
|
response = gql_query(query, auth_token=auth_token)
|
||||||
return response["data"]["videoPlaybackAccessToken"]
|
return response["data"]["videoPlaybackAccessToken"]
|
||||||
except httpx.HTTPStatusError as error:
|
except httpx.HTTPStatusError as error:
|
||||||
# Provide a more useful error message when server returns HTTP 401
|
# Provide a more useful error message when server returns HTTP 401
|
||||||
|
@ -84,13 +84,13 @@ def titlify(value: str) -> str:
|
|||||||
|
|
||||||
VIDEO_PATTERNS = [
|
VIDEO_PATTERNS = [
|
||||||
r"^(?P<id>\d+)?$",
|
r"^(?P<id>\d+)?$",
|
||||||
r"^https://(www.)?twitch.tv/videos/(?P<id>\d+)(\?.+)?$",
|
r"^https://(www\.|m\.)?twitch\.tv/videos/(?P<id>\d+)(\?.+)?$",
|
||||||
]
|
]
|
||||||
|
|
||||||
CLIP_PATTERNS = [
|
CLIP_PATTERNS = [
|
||||||
r"^(?P<slug>[A-Za-z0-9]+(?:-[A-Za-z0-9_-]{16})?)$",
|
r"^(?P<slug>[A-Za-z0-9]+(?:-[A-Za-z0-9_-]{16})?)$",
|
||||||
r"^https://(www.)?twitch.tv/\w+/clip/(?P<slug>[A-Za-z0-9]+(?:-[A-Za-z0-9_-]{16})?)(\?.+)?$",
|
r"^https://(www\.|m\.)?twitch\.tv/\w+/clip/(?P<slug>[A-Za-z0-9]+(?:-[A-Za-z0-9_-]{16})?)(\?.+)?$",
|
||||||
r"^https://clips.twitch.tv/(?P<slug>[A-Za-z0-9]+(?:-[A-Za-z0-9_-]{16})?)(\?.+)?$",
|
r"^https://clips\.twitch\.tv/(?P<slug>[A-Za-z0-9]+(?:-[A-Za-z0-9_-]{16})?)(\?.+)?$",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user