1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-07-18 19:28:31 +00:00

passing tests

This commit is contained in:
ocococ 2025-07-04 00:31:16 +02:00
parent 29504873a0
commit bca329b2ec
2 changed files with 28 additions and 8 deletions

View File

@ -19,10 +19,11 @@ class LCIIE(InfoExtractor):
'params': { 'params': {
'skip_download': True, 'skip_download': True,
}, },
'skip': 'This content is no longer available',
}, { }, {
'url': 'https://www.tf1info.fr/politique/election-presidentielle-2022-second-tour-j-2-marine-le-pen-et-emmanuel-macron-en-interview-de-lci-vendredi-soir-2217486.html', 'url': 'https://www.tf1info.fr/politique/election-presidentielle-2022-second-tour-j-2-marine-le-pen-et-emmanuel-macron-en-interview-de-lci-vendredi-soir-2217486.html',
'info_dict': { 'info_dict': {
'id': '13875948', 'id': 'c5647202-4549-4644-a892-1976e78fc5f8',
'ext': 'mp4', 'ext': 'mp4',
'title': 'md5:660df5481fd418bc3bbb0d070e6fdb5a', 'title': 'md5:660df5481fd418bc3bbb0d070e6fdb5a',
'thumbnail': 'https://photos.tf1.fr/1280/720/presidentielle-2022-marine-le-pen-et-emmanuel-macron-invites-de-lci-ce-vendredi-9c0e73-e1a036-0@1x.jpg', 'thumbnail': 'https://photos.tf1.fr/1280/720/presidentielle-2022-marine-le-pen-et-emmanuel-macron-invites-de-lci-ce-vendredi-9c0e73-e1a036-0@1x.jpg',
@ -32,12 +33,19 @@ class LCIIE(InfoExtractor):
'params': { 'params': {
'skip_download': True, 'skip_download': True,
}, },
}, {
'url': 'https://www.lci.fr/politique/election-presidentielle-2022-second-tour-j-2-marine-le-pen-et-emmanuel-macron-en-interview-de-lci-vendredi-soir-2217486.html',
'only_matching': True,
}, { }, {
'url': 'https://www.tf1info.fr/replay-lci/videos/video-24h-pujadas-du-mercredi-2-juillet-2025-73777-2380589.html', 'url': 'https://www.tf1info.fr/replay-lci/videos/video-24h-pujadas-du-mercredi-2-juillet-2025-73777-2380589.html',
'only_matching': True, 'info_dict': {
'id': 'f0550853-c949-4e0e-8ba4-8237cbb512af',
'ext': 'mp4',
'title': '24H Pujadas du mercredi 2 juillet 2025',
'thumbnail': 'https://photos.tf1.fr/1280/720/24h-pujadas-du-mercredi-2-juillet-2025-394752-0@1x.jpg',
'upload_date': '20250702',
'duration': 5866,
},
'params': {
'skip_download': True,
},
}] }]
def _real_extract(self, url): def _real_extract(self, url):

View File

@ -1,3 +1,5 @@
import re
from .common import InfoExtractor from .common import InfoExtractor
from ..utils import ( from ..utils import (
ExtractorError, ExtractorError,
@ -8,8 +10,6 @@
) )
from ..utils.traversal import traverse_obj from ..utils.traversal import traverse_obj
import re
class WatIE(InfoExtractor): class WatIE(InfoExtractor):
_UUID_RE = r'[\da-f]{8}-(?:[\da-f]{4}-){3}[\da-f]{12}' _UUID_RE = r'[\da-f]{8}-(?:[\da-f]{4}-){3}[\da-f]{12}'
@ -56,10 +56,22 @@ class WatIE(InfoExtractor):
'ext': 'mp4', 'ext': 'mp4',
}, },
'params': {'skip_download': 'm3u8'}, 'params': {'skip_download': 'm3u8'},
'expected_warnings': ["Ce contenu n'est pas disponible"],
'skip': 'This content is no longer available',
}, },
{ {
'url': 'wat:f0550853-c949-4e0e-8ba4-8237cbb512af', 'url': 'wat:f0550853-c949-4e0e-8ba4-8237cbb512af',
'only_matching': True, 'info_dict': {
'id': 'f0550853-c949-4e0e-8ba4-8237cbb512af',
'ext': 'mp4',
'title': '24H Pujadas du mercredi 2 juillet 2025',
'thumbnail': 'https://photos.tf1.fr/1280/720/24h-pujadas-du-mercredi-2-juillet-2025-394752-0@1x.jpg',
'upload_date': '20250702',
'duration': 5866,
},
'params': {
'skip_download': True,
},
}, },
] ]
_GEO_BYPASS = False _GEO_BYPASS = False