Open japzone1 opened 7 years ago
In YoutubeDL.process_info()
if len(info_dict['title']) > 200:
info_dict['title'] = info_dict['title'][:197] + '...'
Such truncation should occur in prepare_filename
. Extension replacements (e.g., in FragmentFD
) should be considered, too.
Please follow the guide below
x
into all the boxes [ ] relevant to your issue (like this:[x]
)Make sure you are using the latest version: run
youtube-dl --version
and ensure your version is 2017.10.15.1. If it's not, read this FAQ entry and update. Issues with outdated version will be rejected.Before submitting an issue make sure you have:
What is the purpose of your issue?
If the purpose of this issue is a bug report, site support request or you are not completely sure provide the full verbose output as follows:
Add the
-v
flag to your command line you run youtube-dl with (youtube-dl -v <your command line>
), copy the whole output and insert it here. It should look similar to one below (replace it with your log inserted between triple ```):Sanitized output
Description of your issue, suggested solution and other information
I was trying to download a video from an M3U8. Everything was going fine until FFMPEG suddenly quits saying "No such file or directory".
Turns out, the output filename Youtube-DL was feeding FFMPEG was bad, causing FFMPEG to quit. The simple solution is to use the
-o
flag on Youtube-DL to specify an output name. Though ideally, Youtube-DL shouldn't be outputting bad filenames to begin with.