mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 08:19:57 +01:00
[instagram:user] Truncate title to 80 characters (#5919)
This is a workaround. Currently YoutubeDL.process_info() truncates info_dict['title'] to 200 characters, but the implementation can't handle wide characters.
This commit is contained in:
parent
edb99d4c18
commit
e1ec93304d
@ -3,7 +3,10 @@
|
|||||||
import re
|
import re
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..utils import int_or_none
|
from ..utils import (
|
||||||
|
int_or_none,
|
||||||
|
limit_length,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class InstagramIE(InfoExtractor):
|
class InstagramIE(InfoExtractor):
|
||||||
@ -106,7 +109,7 @@ def _real_extract(self, url):
|
|||||||
|
|
||||||
entries.append({
|
entries.append({
|
||||||
'id': it['id'],
|
'id': it['id'],
|
||||||
'title': title,
|
'title': limit_length(title, 80),
|
||||||
'formats': formats,
|
'formats': formats,
|
||||||
'thumbnail': thumbnail,
|
'thumbnail': thumbnail,
|
||||||
'webpage_url': it.get('link'),
|
'webpage_url': it.get('link'),
|
||||||
|
Loading…
Reference in New Issue
Block a user