I am trying to take .ts files which contain only an audio stream and create .mp3 files. The following command line produces output .mp3 files of zero length.
sVLCparams = """C:\Program Files\VideoLAN\VLC\vlc.exe"" -I dummy -vvv " & cFOL & sFileName &_
" --verbose=2 --sout=#transcode{vcodec=none,acodec=mp3,ab=192,channels=2,samplerate=44000}:standard{access=file,mux=dummy,dst="_
& """" & cFOLREN & sFileNameRoot & ".mp3" & """" & "} vlc://quit"
'-I dummy disables the GUI being display, vlc://quit quits VLC after transcoding, -VVV does what?
WshShell.Run sVLCparams,sWindowStyle, True
Can anybody see what I might be doing wrong. You can probably guess the meaning of the strings but if not I will repost.