Hello, I am using a php script to download AdobeHDS or f4m videos and I have everything set up but I was wondering if it's possible to do batch downloading of more than 1 video. Right now I have my .bat file setup with the following line

Code:
php AdobeHDS.php --manifest "your_manifest_url" --parallel 4 --delete


pause

and I got that from a different thread on this forum which can be found here. Anyway I was wondering would it be possible to edit the lines in my file for downloading multiple videos to look like this


Code:
php AdobeHDS.php --manifest "your_manifest_url" --parallel 4 --delete


pause


php AdobeHDS.php --manifest "your_manifest_url" --parallel 4 --delete


pause


etc etc

would it work if I was to edit my file like that?.