PowerShell-Youtube-dl
PowerShell-Youtube-dl copied to clipboard
Download failing because of TLS issue
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"`