mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-09-04 00:55:15 +00:00
@ -6,9 +6,10 @@ from ..compat import compat_str
|
||||
from ..utils import (
|
||||
ExtractorError,
|
||||
smuggle_url,
|
||||
str_or_none,
|
||||
traverse_obj,
|
||||
unsmuggle_url,
|
||||
unified_strdate,
|
||||
unsmuggle_url,
|
||||
)
|
||||
|
||||
import itertools
|
||||
@ -25,9 +26,9 @@ class VoicyBaseIE(InfoExtractor):
|
||||
'id': voice_id,
|
||||
'title': compat_str(value.get('PlaylistName')),
|
||||
'uploader': value.get('SpeakerName'),
|
||||
'uploader_id': compat_str(value.get('SpeakerId')),
|
||||
'uploader_id': str_or_none(value.get('SpeakerId')),
|
||||
'channel': value.get('ChannelName'),
|
||||
'channel_id': compat_str(value.get('ChannelId')),
|
||||
'channel_id': str_or_none(value.get('ChannelId')),
|
||||
'upload_date': upload_date,
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user