Here's a "feature".
If the site offers a download that is a single media file using https, youtube-dl will try to download the file itself. If the site requires "modern" security protocols for https, this will fail:
For such a site (eg DailyMotion), use the option
The latest wget and ffmpeg are up to speed with TLS. Another option, if whoever built the python package still has the build environment, would be to rebuild python linked to the latest
If the site offers a download that is a single media file using https, youtube-dl will try to download the file itself. If the site requires "modern" security protocols for https, this will fail:
unable to download video data: <urlopen error [Errno 1] _ssl.c:499: error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version
.For such a site (eg DailyMotion), use the option
--external-downloader wget
, or, to avoid having to do that at the possible cost of making some downloads use more resources than necessary, --external-downloader ffmpeg
.The latest wget and ffmpeg are up to speed with TLS. Another option, if whoever built the python package still has the build environment, would be to rebuild python linked to the latest
libssl
.