Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # 1. Wrzucić to do pliku pobieranie_youtube.ps1
- # 2. Zrobić skrót do tego pliku np. na pulpicie
- # 3. Przeedytować target skrótu na: powershell C:\ścieżka\do\skryptu\pobieranie_youtube.ps1
- # 4. Plik mp3 pobierze się do lokalizacji "Uruchom w"
- echo Pobieranie...
- $link = Get-Clipboard
- $link -match "[\?&]v=([a-zA-Z0-9\-_]+)" | Out-Null
- if ($Matches.Length -eq 1) {
- $videoId = $Matches[1]
- yt-dlp.exe -x --audio-format mp3 https://youtube.com/?v=$videoId --no-warnings --quiet
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement