You will need FFmpeg installed on your computer as well as added to the environment variable.
- Download the file
- Change the file type from .txt to .ps1
- Right click on file and “Run with PowerShell”
# Audio to MP3 converter
# Curioushish 2020
write-host "Video to MP3"
$audio = Read-Host -Prompt 'Drag & Drop the video file'
Write-Host "You audio file '$audio' is being analysed"
ffmpeg -i $audio "$audio.mp3"
pause