Created
February 22, 2019 18:10
-
-
Save gsmitheidw/1e5f8750ccb2e8fd7f43d19d4bde22d0 to your computer and use it in GitHub Desktop.
params example powershell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| param ( | |
| [Parameter(Mandatory=$true)] | |
| [string]$url = $( Read-Host "URL>") | |
| ) | |
| youtube-dl.exe -x --audio-format mp3 --audio-quality 192K $url |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment