I have tried to find a easy way of transcoding a folder of .ts files to mpeg2
I have been reeding some stuff in this forum and VideoLAN Wiki and this is what i have learned (perhaps not much )
The folder is called D:\Recorded
The new Folder is goind to be called "E:\Converted"
I open the CMD in Windows XP and type:
CD D:\Recorded
for %a in (*.ts) do cmd /c "C:\Programmer\VideoLAN\VLC\vlc.exe" -I dummy -vvv %a --sout #transcode{vcodec=mp2v,vb=6000,fps=25,scale=0,acodec=mpga,ab=128,channels=2,samplerate=44100}:standard{access=file,mux=ps,dst=E:\Converted\%a.mpg} vlc://quit
This is not working