__main__.py
12.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
# -*- coding: utf-8 -*-
"""
This module implements the core developer interface for pytube.
The problem domain of the :class:`YouTube <YouTube> class focuses almost
exclusively on the developer interface. Pytube offloads the heavy lifting to
smaller peripheral modules and functions.
"""
import json
import logging
from typing import Dict
from typing import List
from typing import Optional
from urllib.parse import parse_qsl
from pytube import Caption
from pytube import CaptionQuery
from pytube import extract
from pytube import request
from pytube import Stream
from pytube import StreamQuery
from pytube.exceptions import RecordingUnavailable
from pytube.exceptions import VideoUnavailable
from pytube.exceptions import VideoPrivate
from pytube.extract import apply_descrambler
from pytube.extract import apply_signature
from pytube.extract import get_ytplayer_config
from pytube.helpers import install_proxy
from pytube.metadata import YouTubeMetadata
from pytube.monostate import Monostate
from pytube.monostate import OnComplete
from pytube.monostate import OnProgress
logger = logging.getLogger(__name__)
class YouTube:
"""Core developer interface for pytube."""
def __init__(
self,
url: str,
defer_prefetch_init: bool = False,
on_progress_callback: Optional[OnProgress] = None,
on_complete_callback: Optional[OnComplete] = None,
proxies: Dict[str, str] = None,
):
"""Construct a :class:`YouTube <YouTube>`.
:param str url:
A valid YouTube watch URL.
:param bool defer_prefetch_init:
Defers executing any network requests.
:param func on_progress_callback:
(Optional) User defined callback function for stream download
progress events.
:param func on_complete_callback:
(Optional) User defined callback function for stream download
complete events.
"""
self.js: Optional[str] = None # js fetched by js_url
self.js_url: Optional[str] = None # the url to the js, parsed from watch html
# note: vid_info may eventually be removed. It sounds like it once had
# additional formats, but that doesn't appear to still be the case.
# the url to vid info, parsed from watch html
self.vid_info_url: Optional[str] = None
self.vid_info_raw: Optional[str] = None # content fetched by vid_info_url
self.vid_info: Optional[Dict] = None # parsed content of vid_info_raw
self.watch_html: Optional[str] = None # the html of /watch?v=<video_id>
self.embed_html: Optional[str] = None
self.player_config_args: Dict = {} # inline js in the html containing
self.player_response: Dict = {}
# streams
self.age_restricted: Optional[bool] = None
self.fmt_streams: List[Stream] = []
self.initial_data_raw = None
self.initial_data = {}
self._metadata: Optional[YouTubeMetadata] = None
# video_id part of /watch?v=<video_id>
self.video_id = extract.video_id(url)
self.watch_url = f"https://youtube.com/watch?v={self.video_id}"
self.embed_url = f"https://www.youtube.com/embed/{self.video_id}"
# Shared between all instances of `Stream` (Borg pattern).
self.stream_monostate = Monostate(
on_progress=on_progress_callback, on_complete=on_complete_callback
)
if proxies:
install_proxy(proxies)
if not defer_prefetch_init:
self.prefetch()
self.descramble()
def descramble(self) -> None:
"""Descramble the stream data and build Stream instances.
The initialization process takes advantage of Python's
"call-by-reference evaluation," which allows dictionary transforms to
be applied in-place, instead of holding references to mutations at each
interstitial step.
:rtype: None
"""
self.vid_info = dict(parse_qsl(self.vid_info_raw))
self.player_config_args = self.vid_info
self.player_response = json.loads(self.vid_info['player_response'])
# On pre-signed videos, we need to use get_ytplayer_config to fix
# the player_response item
if 'streamingData' not in self.player_config_args['player_response']:
config_response = get_ytplayer_config(self.watch_html)
if 'args' in config_response:
self.player_config_args['player_response'] = config_response['args']['player_response'] # noqa: E501
else:
self.player_config_args['player_response'] = config_response
# https://github.com/nficano/pytube/issues/165
stream_maps = ["url_encoded_fmt_stream_map"]
if "adaptive_fmts" in self.player_config_args:
stream_maps.append("adaptive_fmts")
# unscramble the progressive and adaptive stream manifests.
for fmt in stream_maps:
if not self.age_restricted and fmt in self.vid_info:
apply_descrambler(self.vid_info, fmt)
apply_descrambler(self.player_config_args, fmt)
if not self.js:
if not self.embed_html:
self.embed_html = request.get(url=self.embed_url)
self.js_url = extract.js_url(self.embed_html)
self.js = request.get(self.js_url)
apply_signature(self.player_config_args, fmt, self.js)
# build instances of :class:`Stream <Stream>`
self.initialize_stream_objects(fmt)
# load the player_response object (contains subtitle information)
if isinstance(self.player_config_args["player_response"], str):
self.player_response = json.loads(
self.player_config_args["player_response"]
)
else:
self.player_response = self.player_config_args["player_response"]
del self.player_config_args["player_response"]
self.stream_monostate.title = self.title
self.stream_monostate.duration = self.length
def prefetch(self) -> None:
"""Eagerly download all necessary data.
Eagerly executes all necessary network requests so all other
operations don't does need to make calls outside of the interpreter
which blocks for long periods of time.
:rtype: None
"""
self.watch_html = request.get(url=self.watch_url)
if self.watch_html is None:
raise VideoUnavailable(video_id=self.video_id)
self.age_restricted = extract.is_age_restricted(self.watch_html)
if extract.is_private(self.watch_html):
raise VideoPrivate(video_id=self.video_id)
if not extract.recording_available(self.watch_html):
raise RecordingUnavailable(video_id=self.video_id)
if self.age_restricted:
if not self.embed_html:
self.embed_html = request.get(url=self.embed_url)
self.vid_info_url = extract.video_info_url_age_restricted(
self.video_id, self.watch_url
)
else:
self.vid_info_url = extract.video_info_url(
video_id=self.video_id, watch_url=self.watch_url
)
self.initial_data_raw = extract.initial_data(self.watch_html)
self.initial_data = json.loads(self.initial_data_raw)
self.vid_info_raw = request.get(self.vid_info_url)
if not self.age_restricted:
self.js_url = extract.js_url(self.watch_html)
self.js = request.get(self.js_url)
def initialize_stream_objects(self, fmt: str) -> None:
"""Convert manifest data to instances of :class:`Stream <Stream>`.
Take the unscrambled stream data and uses it to initialize
instances of :class:`Stream <Stream>` for each media stream.
:param str fmt:
Key in stream manifest (``ytplayer_config``) containing progressive
download or adaptive streams (e.g.: ``url_encoded_fmt_stream_map``
or ``adaptive_fmts``).
:rtype: None
"""
stream_manifest = self.player_config_args[fmt]
for stream in stream_manifest:
video = Stream(
stream=stream,
player_config_args=self.player_config_args,
monostate=self.stream_monostate,
)
self.fmt_streams.append(video)
@property
def caption_tracks(self) -> List[Caption]:
"""Get a list of :class:`Caption <Caption>`.
:rtype: List[Caption]
"""
raw_tracks = (
self.player_response.get("captions", {})
.get("playerCaptionsTracklistRenderer", {})
.get("captionTracks", [])
)
return [Caption(track) for track in raw_tracks]
@property
def captions(self) -> CaptionQuery:
"""Interface to query caption tracks.
:rtype: :class:`CaptionQuery <CaptionQuery>`.
"""
return CaptionQuery(self.caption_tracks)
@property
def streams(self) -> StreamQuery:
"""Interface to query both adaptive (DASH) and progressive streams.
:rtype: :class:`StreamQuery <StreamQuery>`.
"""
return StreamQuery(self.fmt_streams)
@property
def thumbnail_url(self) -> str:
"""Get the thumbnail url image.
:rtype: str
"""
thumbnail_details = (
self.player_response.get("videoDetails", {})
.get("thumbnail", {})
.get("thumbnails")
)
if thumbnail_details:
thumbnail_details = thumbnail_details[-1] # last item has max size
return thumbnail_details["url"]
return f"https://img.youtube.com/vi/{self.video_id}/maxresdefault.jpg"
@property
def publish_date(self):
"""Get the publish date.
:rtype: datetime
"""
return extract.publish_date(self.watch_html)
@property
def title(self) -> str:
"""Get the video title.
:rtype: str
"""
return self.player_response['videoDetails']['title']
@property
def description(self) -> str:
"""Get the video description.
:rtype: str
"""
return self.player_response.get("videoDetails", {}).get("shortDescription")
@property
def rating(self) -> float:
"""Get the video average rating.
:rtype: float
"""
return self.player_response.get("videoDetails", {}).get("averageRating")
@property
def length(self) -> int:
"""Get the video length in seconds.
:rtype: str
"""
return int(
self.player_config_args.get("length_seconds")
or (
self.player_response.get("videoDetails", {}).get(
"lengthSeconds"
)
)
)
@property
def views(self) -> int:
"""Get the number of the times the video has been viewed.
:rtype: str
"""
return int(
self.player_response.get("videoDetails", {}).get("viewCount")
)
@property
def author(self) -> str:
"""Get the video author.
:rtype: str
"""
return self.player_response.get("videoDetails", {}).get(
"author", "unknown"
)
@property
def keywords(self) -> List[str]:
"""Get the video keywords.
:rtype: List[str]
"""
return self.player_response.get('videoDetails', {}).get('keywords', [])
@property
def metadata(self) -> Optional[YouTubeMetadata]:
"""Get the metadata for the video.
:rtype: YouTubeMetadata
"""
if self._metadata:
return self._metadata
else:
self._metadata = extract.metadata(self.initial_data)
return self._metadata
def register_on_progress_callback(self, func: OnProgress):
"""Register a download progress callback function post initialization.
:param callable func:
A callback function that takes ``stream``, ``chunk``,
and ``bytes_remaining`` as parameters.
:rtype: None
"""
self.stream_monostate.on_progress = func
def register_on_complete_callback(self, func: OnComplete):
"""Register a download complete callback function post initialization.
:param callable func:
A callback function that takes ``stream`` and ``file_path``.
:rtype: None
"""
self.stream_monostate.on_complete = func