snobu / destreamer

Save Microsoft Stream videos for offline enjoyment.
MIT License
2.36k stars 441 forks source link

UserID Not recognized command #332

Open Liger0 opened 3 years ago

Liger0 commented 3 years ago

OS: Windows 10

Launch command used: ./destreamer.cmd -i "https://web.microsoftstream.com/video/VIDEO-1" \ "https://web.microsoftstream.com/video/VIDEO-2" \ "https://web.microsoftstream.com/video/VIDEO-3"

If I try to download multiple videos, after the first one finishes I have the following error, failing to download the others:

userId is not recognized as an internal or external command, an executable or bath file

lukaarma commented 3 years ago

try to remove the lines split please, those backslash could be causing problems

./destreamer.cmd -i "https://web.microsoftstream.com/video/VIDEO-1" "https://web.microsoftstream.com/video/VIDEO-2" "https://web.microsoftstream.com/video/VIDEO-3"

Liger0 commented 3 years ago

In the Usage page of the repository the \ are present

lukaarma commented 3 years ago

It's used as an escape because the links have a line break between them. Since yours are all on the same line (it seems) I think that those backslash are causing some parsing problem. Could you please try without them? I'll update the docs when I can @snobu

Liger0 commented 3 years ago

It works without them, thanks.