mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[generic] Get a better ID
This commit is contained in:
parent
f55a1f0a88
commit
8012bd2424
1 changed files with 1 additions and 1 deletions
|
@ -223,7 +223,7 @@ def _real_extract(self, url):
|
|||
else:
|
||||
assert ':' in default_search
|
||||
return self.url_result(default_search + url)
|
||||
video_id = os.path.splitext(url.split('/')[-1])[0]
|
||||
video_id = os.path.splitext(url.rstrip('/').split('/')[-1])[0]
|
||||
|
||||
self.to_screen('%s: Requesting header' % video_id)
|
||||
|
||||
|
|
Loading…
Reference in a new issue