PowerShell-Youtube-dl icon indicating copy to clipboard operation
PowerShell-Youtube-dl copied to clipboard

Download failing because of TLS issue

Open cpdivers opened this issue 4 years ago • 0 comments

Platform Windows 10 PSVersion 5.1.17134.858

Download of youtube.dl and ffmpeg fails with error message: Fails with SSL/TLS Secure Channel

Solution: add those line on top of the youtube-dl-gui.ps1

`[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls, [Net.SecurityProtocolType]::Tls11, [Net.SecurityProtocolType]::Tls12, [Net.SecurityProtocolType]::Ssl3

[Net.ServicePointManager]::SecurityProtocol = "Tls, Tls11, Tls12, Ssl3"`

cpdivers avatar Jun 23 '21 01:06 cpdivers