Skip to content
This repository has been archived by the owner on Mar 28, 2023. It is now read-only.

Allow multiple downloads #1

Open
Battleman opened this issue Mar 27, 2020 · 2 comments
Open

Allow multiple downloads #1

Battleman opened this issue Mar 27, 2020 · 2 comments
Labels
enhancement New feature or request

Comments

@Battleman
Copy link
Owner

Allow to provide a filename to read from, with multiple URLs and names

@jacobrosenfeld
Copy link

This would be great. Multiple downloads would be so convenient

@switchswap
Copy link

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!

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants