onefootball.py 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. from .common import InfoExtractor
  2. class OneFootballIE(InfoExtractor):
  3. _VALID_URL = r'https?://(?:www\.)?onefootball\.com/[a-z]{2}/video/[^/&?#]+-(?P<id>\d+)'
  4. _TESTS = [{
  5. 'url': 'https://onefootball.com/en/video/highlights-fc-zuerich-3-3-fc-basel-34012334',
  6. 'info_dict': {
  7. 'id': '34012334',
  8. 'ext': 'mp4',
  9. 'title': 'Highlights: FC Zürich 3-3 FC Basel',
  10. 'description': 'md5:33d9855cb790702c4fe42a513700aba8',
  11. 'thumbnail': 'https://photobooth-api.onefootball.com/api/screenshot/https:%2F%2Fperegrine-api.onefootball.com%2Fv2%2Fphotobooth%2Fcms%2Fen%2F34012334',
  12. 'timestamp': 1635874604,
  13. 'upload_date': '20211102'
  14. },
  15. 'params': {'skip_download': True}
  16. }, {
  17. 'url': 'https://onefootball.com/en/video/klopp-fumes-at-var-decisions-in-west-ham-defeat-34041020',
  18. 'info_dict': {
  19. 'id': '34041020',
  20. 'ext': 'mp4',
  21. 'title': 'Klopp fumes at VAR decisions in West Ham defeat',
  22. 'description': 'md5:9c50371095a01ad3f63311c73d8f51a5',
  23. 'thumbnail': 'https://photobooth-api.onefootball.com/api/screenshot/https:%2F%2Fperegrine-api.onefootball.com%2Fv2%2Fphotobooth%2Fcms%2Fen%2F34041020',
  24. 'timestamp': 1636314103,
  25. 'upload_date': '20211107'
  26. },
  27. 'params': {'skip_download': True}
  28. }]
  29. def _real_extract(self, url):
  30. id = self._match_id(url)
  31. webpage = self._download_webpage(url, id)
  32. data_json = self._search_json_ld(webpage, id)
  33. m3u8_url = self._html_search_regex(r'(https://cdn\.jwplayer\.com/manifests/.+\.m3u8)', webpage, 'm3u8_url')
  34. formats, subtitles = self._extract_m3u8_formats_and_subtitles(m3u8_url, id)
  35. return {
  36. 'id': id,
  37. 'title': data_json.get('title'),
  38. 'description': data_json.get('description'),
  39. 'thumbnail': data_json.get('thumbnail'),
  40. 'timestamp': data_json.get('timestamp'),
  41. 'formats': formats,
  42. 'subtitles': subtitles,
  43. }