Update common.py

This commit is contained in:
merismal34
2022-09-11 19:33:51 +00:00
committed by GitHub
parent 0b6f0e18d9
commit f835a62abe
+1 -1
View File
@@ -2275,7 +2275,7 @@ class InfoExtractor:
if media_type not in ('VIDEO', 'AUDIO'):
return
channels = media.get('CHANNELS')
if not channels is None and channels.isDigit():
if not channels is None and str(channels).isdigit():
channels = int(channels)
media_url = media.get('URI')
if media_url: