Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature Request - Batch File Support #18

Open
kaywild opened this issue Sep 10, 2022 · 1 comment
Open

Feature Request - Batch File Support #18

kaywild opened this issue Sep 10, 2022 · 1 comment

Comments

@kaywild
Copy link

kaywild commented Sep 10, 2022

Add support for processing a file containing multiple video URL's. Same functionality as the '--batch-file' option from yt-dlp.

@ditmarvisser
Copy link

I created a batch script for this purpose:

@Echo Off
For /F "usebackq tokens=1  delims=," %%a in (batchlist.csv) Do (
   echo Downloading %%a
   echo ============================
   python main.py -t %%a
   echo.
)
pause

Save this as batchdownload.bat (or whatever) and create a batchlist.cvs file with line terminated videos links like this:

https://watch.wwe.com/episode/Royal-Rumble-2015-1771
https://watch.wwe.com/episode/WrestleMania-31-1762
https://watch.wwe.com/episode/Royal-Rumble-2016-1776

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants