I had to make a small change to parse.cmd to get this to work.
set "str=%~1" changed to set "str=%*"
Otherwise the equals sign and everything after was removed from the links parameter. Also had to add the second registry entry manually, think that was because I was using powershell though, cmd.exe would probably work ok. Note that if you're using portable version of streamlink you should add the switch --ffmpeg-ffmpeg "PATH TO\ffmpeg.exe" to parse.cmd as well.
I had to make a small change to parse.cmd to get this to work.
set "str=%~1"
changed to
set "str=%*"
Otherwise the equals sign and everything after was removed from the links parameter.
Also had to add the second registry entry manually, think that was because I was using powershell though, cmd.exe would probably work ok.
Note that if you're using portable version of streamlink you should add the switch --ffmpeg-ffmpeg "PATH TO\ffmpeg.exe" to parse.cmd as well.
The script itself works fantastic, thanks.