This commit is contained in:
Markus Heiser 2024-04-27 20:29:30 +02:00 committed by GitHub
commit 7e8055d8dd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -35,8 +35,13 @@ def response(resp):
publishedDate = parser.parse(item['date'])
iframe_src = None
if len(item['recordings']) > 0:
iframe_src = item['recordings'][0]['recording_url']
for rec in item['recordings']:
if rec['mime_type'].startswith('video'):
if not iframe_src:
iframe_src = rec['recording_url']
elif rec['mime_type'] == 'video/mp4':
# prefer mp4 (minimal data rates)
iframe_src = rec['recording_url']
results.append(
{