aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authori6t <62123048+i6t@users.noreply.github.com>2021-09-26 07:39:45 +0900
committerGitHub <noreply@github.com>2021-09-26 04:09:45 +0530
commit2333ea102986f5ae792d3f297aac04cf8065d9f3 (patch)
tree6be3faf98bfae6867866a7ccbb0f775309c63249
parent9a1334543976b3044be88b5bc2a35f43a5d021e1 (diff)
downloadhypervideo-pre-2333ea102986f5ae792d3f297aac04cf8065d9f3.tar.lz
hypervideo-pre-2333ea102986f5ae792d3f297aac04cf8065d9f3.tar.xz
hypervideo-pre-2333ea102986f5ae792d3f297aac04cf8065d9f3.zip
[Veo] Add extractor (#1084)
Fixes: https://github.com/ytdl-org/youtube-dl/issues/29445 Authored by: i6t
-rw-r--r--yt_dlp/extractor/extractors.py1
-rw-r--r--yt_dlp/extractor/veo.py74
2 files changed, 75 insertions, 0 deletions
diff --git a/yt_dlp/extractor/extractors.py b/yt_dlp/extractor/extractors.py
index 4b1559886..59d5dae40 100644
--- a/yt_dlp/extractor/extractors.py
+++ b/yt_dlp/extractor/extractors.py
@@ -1600,6 +1600,7 @@ from .utreon import UtreonIE
from .varzesh3 import Varzesh3IE
from .vbox7 import Vbox7IE
from .veehd import VeeHDIE
+from .veo import VeoIE
from .veoh import VeohIE
from .vesti import VestiIE
from .vevo import (
diff --git a/yt_dlp/extractor/veo.py b/yt_dlp/extractor/veo.py
new file mode 100644
index 000000000..4e57a52d1
--- /dev/null
+++ b/yt_dlp/extractor/veo.py
@@ -0,0 +1,74 @@
+# coding: utf-8
+from __future__ import unicode_literals
+
+from .common import InfoExtractor
+
+from ..utils import (
+ int_or_none,
+ mimetype2ext,
+ unified_timestamp,
+ url_or_none,
+)
+
+
+class VeoIE(InfoExtractor):
+ _VALID_URL = r'https?://app\.veo\.co/matches/(?P<id>[0-9A-Za-z-]+)'
+
+ _TESTS = [{
+ 'url': 'https://app.veo.co/matches/20201027-last-period/',
+ 'info_dict': {
+ 'id': '20201027-last-period',
+ 'ext': 'mp4',
+ 'title': 'Akidemy u11s v Bradford Boys u11s (Game 3)',
+ 'thumbnail': 're:https://c.veocdn.com/.+/thumbnail.jpg',
+ 'upload_date': '20201028',
+ 'timestamp': 1603847208,
+ 'duration': 1916,
+ }
+ }]
+
+ def _real_extract(self, url):
+ video_id = self._match_id(url)
+
+ metadata = self._download_json(
+ 'https://app.veo.co/api/app/matches/%s' % video_id, video_id)
+
+ video_data = self._download_json(
+ 'https://app.veo.co/api/app/matches/%s/videos' % video_id, video_id, 'Downloading video data')
+
+ title = metadata.get('title')
+ thumbnail = url_or_none(metadata.get('thumbnail'))
+
+ timestamp = unified_timestamp(metadata.get('created'))
+ duration = int_or_none(metadata.get('duration'))
+ view_count = int_or_none(metadata.get('view_count'))
+
+ formats = []
+ for fmt in video_data:
+ mimetype = fmt.get('mime_type')
+ # skip configuration file for panoramic video
+ if mimetype == 'video/mp2t':
+ continue
+ height = int_or_none(fmt.get('height'))
+ bitrate = int_or_none(fmt.get('bit_rate'), scale=1000)
+ render_type = fmt.get('render_type')
+ formats.append({
+ 'url': url_or_none(fmt.get('url')),
+ 'format_id': '%s-%sp' % (render_type, height),
+ 'ext': mimetype2ext(mimetype),
+ 'width': int_or_none(fmt.get('width')),
+ 'height': height,
+ 'vbr': bitrate
+ })
+
+ self._sort_formats(formats)
+
+ return {
+ 'id': video_id,
+ 'title': title,
+ 'formats': formats,
+ 'thumbnail': thumbnail,
+ 'timestamp': timestamp,
+ 'view_count': view_count,
+ 'duration': duration
+ }