twitch-dl/twitchdl/commands/clips.py

127 lines
3.2 KiB
Python
Raw Normal View History

2021-01-07 08:34:14 +00:00
import re
from os import path
from twitchdl import twitch, utils
from twitchdl.commands.download import get_clip_authenticated_url
2021-01-07 08:34:14 +00:00
from twitchdl.download import download_file
from twitchdl.exceptions import ConsoleError
from twitchdl.output import print_out, print_clip, print_json
2021-05-18 12:25:49 +00:00
def clips(args):
if args.json:
return _clips_json(args)
if args.download:
return _clips_download(args)
return _clips_list(args)
2021-01-07 08:34:14 +00:00
def _continue():
print_out(
"\nThere are more clips. "
"Press <green><b>Enter</green> to continue, "
"<yellow><b>Ctrl+C</yellow> to break."
)
try:
input()
except KeyboardInterrupt:
return False
return True
def _get_game_ids(names):
if not names:
return []
game_ids = []
for name in names:
print_out("<dim>Looking up game '{}'...</dim>".format(name))
game_id = twitch.get_game_id(name)
if not game_id:
raise ConsoleError("Game '{}' not found".format(name))
game_ids.append(int(game_id))
return game_ids
def _clips_json(args):
clips = twitch.get_channel_clips(args.channel_name, args.period, args.limit)
nodes = list(edge["node"] for edge in clips["edges"])
print_json(nodes)
def _clip_target_filename(clip):
url = clip["videoQualities"][0]["sourceURL"]
_, ext = path.splitext(url)
ext = ext.lstrip(".")
match = re.search(r"^(\d{4})-(\d{2})-(\d{2})T", clip["createdAt"])
date = "".join(match.groups())
name = "_".join([
date,
clip["id"],
2021-01-14 20:38:56 +00:00
clip["broadcaster"]["login"],
2021-01-07 08:34:14 +00:00
utils.slugify(clip["title"]),
])
return "{}.{}".format(name, ext)
def _clips_download(args):
2021-05-18 12:23:56 +00:00
downloaded_count = 0
2021-01-07 08:34:14 +00:00
generator = twitch.channel_clips_generator(args.channel_name, args.period, 100)
2021-05-18 12:23:56 +00:00
2021-01-07 08:34:14 +00:00
for clips, _ in generator:
for clip in clips["edges"]:
clip = clip["node"]
url = get_clip_authenticated_url(clip["slug"], "source")
2021-01-07 08:34:14 +00:00
target = _clip_target_filename(clip)
2021-05-18 12:23:56 +00:00
2021-01-07 08:34:14 +00:00
if path.exists(target):
print_out("Already downloaded: <green>{}</green>".format(target))
else:
print_out("Downloading: <yellow>{}</yellow>".format(target))
download_file(url, target)
2021-05-18 12:23:56 +00:00
downloaded_count += 1
if args.limit and downloaded_count >= args.limit:
return
2021-01-07 08:34:14 +00:00
2021-05-18 12:25:49 +00:00
def _clips_list(args):
2021-01-07 08:34:14 +00:00
print_out("<dim>Loading clips...</dim>")
generator = twitch.channel_clips_generator(args.channel_name, args.period, args.limit)
first = 1
for clips, has_more in generator:
count = len(clips["edges"]) if "edges" in clips else 0
last = first + count - 1
print_out("-" * 80)
print_out("<yellow>Showing clips {}-{} of ??</yellow>".format(first, last))
for clip in clips["edges"]:
2021-01-14 20:38:56 +00:00
print_out()
2021-01-07 08:34:14 +00:00
print_clip(clip["node"])
if not args.pager:
print_out(
"\n<dim>There are more clips. "
"Increase the --limit or use --pager to see the rest.</dim>"
)
break
if not has_more or not _continue():
break
first += count
else:
print_out("<yellow>No clips found</yellow>")