zoomdl
zoomdl copied to clipboard
Allow multiple downloads
Allow to provide a filename to read from, with multiple URLs and names
This would be great. Multiple downloads would be so convenient
Since this feature doesn't yet exist, I made a powershell script to quickly support it. Assuming you have the executable in a folder, along with a cookies file and a text file with links (new line separated), the following should work:
foreach($line in Get-Content .\links.txt) {
if ($line.Length -eq 0) {
continue;
}
$command = ".\zoomdl.exe -d --save-chat srt --save-transcript srt --cookies .\cookies.txt -u $line"
Invoke-Expression $command
}
Make modifications to the command if you need and then just pop that text into a powershell file (lets say script.ps1
) and run it!