1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-01 09:50:05 +02:00

[ie/neteasemusic] return none for vcodec field

Co-authored-by: bashonly <88596187+bashonly@users.noreply.github.com>
This commit is contained in:
hafeoz 2024-06-25 10:07:19 +00:00 committed by GitHub
parent 05242fb17e
commit 225b44afc0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -82,6 +82,7 @@ def extract_formats(self, info):
formats.append({
'url': song_url,
'format_id': song_level,
'vcodec': 'none',
**traverse_obj(song, {
'ext': ('type', {str}),
'abr': ('br', {self.kilo_or_none}),