Created
May 9, 2023 15:34
-
-
Save couleurm/82b99d7a92ecc2f3eef5b03810fe19d1 to your computer and use it in GitHub Desktop.
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
Set-Location $PSScriptRoot | |
[void][Reflection.Assembly]::LoadWithPartialName('Microsoft.VisualBasic') | |
$folder = [Microsoft.VisualBasic.Interaction]::InputBox('Titre du dossier', 'Mettez le nom du dossier a creer:') | |
if ((Test-Path $folder)){ | |
Write-Warning "Le dossier existe déjà" | |
pause | |
exit | |
} | |
mkdir $folder | |
$url = [Microsoft.VisualBasic.Interaction]::InputBox('Lien de la video/playlist', 'Collez le lien:') | |
Push-Location $folder | |
yt-dlp $url | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment