My work-around for this - I put this script: for %%f in (*.ts) do call ffmpeg -i "%%~f" -vcodec copy -acodec copy "%%~nf.mp4" in a .bat file and copy it to each folder containing .ts files I wish to stream. You'll need ffmpeg in your path, or just copy ffmpeg.exe to the folder co...