mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[sockshare] Fix ext
This commit is contained in:
parent
41c0849429
commit
798a2cad4f
1 changed files with 2 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
|||
ExtractorError,
|
||||
compat_urllib_parse,
|
||||
compat_urllib_request,
|
||||
determine_ext,
|
||||
)
|
||||
import re
|
||||
|
||||
|
@ -68,6 +69,7 @@ def _real_extract(self, url):
|
|||
formats = [{
|
||||
'format_id': 'sd',
|
||||
'url': video_url,
|
||||
'ext': determine_ext(title),
|
||||
}]
|
||||
|
||||
return {
|
||||
|
|
Loading…
Reference in a new issue