I am trying to convert some MP3 files in a folder to .ts format. I am using the following... for %%a in (*.mp3) do "C:\Program Files\VideoLAN\VLC\vlc.exe" -I dummy -vvv %%a --sout=#transcode{acodec=mp2a,ab=192,channels=6}:standard access=file,mux=raw,dst=%%a.ts} vlc:quit which works but th...