1
0
Fork 0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-01-18 23:03:05 +01:00

fix quotes

This commit is contained in:
Mozi 2025-01-14 07:43:42 +00:00
parent 251ed26068
commit f2ef15539a

View file

@ -49,7 +49,7 @@ class ShowupTvIE(InfoExtractor):
'title': self._html_extract_title(webpage),
'uploader_id': uploader_id,
'uploader_url': f'https://showup.tv/profile/{uploader_id}',
'url': f'rtmp://{self._extract_player_var('transcoderAddr', webpage)}/webrtc/{stream_id}_aac',
'url': f'rtmp://{self._extract_player_var("transcoderAddr", webpage)}/webrtc/{stream_id}_aac',
'ext': 'flv',
'is_live': True,
}