Browse Source

Limit titles to 200 characters (Closes #789)

rtmp_test
Philipp Hagemeister 12 years ago
parent
commit
0599ef8c08
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      youtube_dl/FileDownloader.py

+ 4
- 0
youtube_dl/FileDownloader.py View File

@ -426,6 +426,10 @@ class FileDownloader(object):
def process_info(self, info_dict):
"""Process a single dictionary returned by an InfoExtractor."""
info_dict['fulltitle'] = info_dict['title']
if len(info_dict['title']) > 200:
info_dict['title'] = info_dict['title'][:197] + u'...'
# Keep for backwards compatibility
info_dict['stitle'] = info_dict['title']


Loading…
Cancel
Save