I have created a batch file to automatically transcode files to mp4 for my ipod. Here is the code:
Code: Select all
@echo off
"C:\Progra~1\VideoLAN\VLC\vlc.exe" %1 --sout=#transcode{vcodec=mp4v,vb=1500,scale=.5,acodec=mp4a,ab=128,channels=2,canvas-width=320,canvas-height=240}
:duplicate{dst=std{access=file,mux=mp4,dst="%1.mp4"}}
The problem I have though is that I want to be able to encode multiple files. So if I have four episodes of a show, I can just drag them to the .bat file and have the program go through all four shows, saving each show with it's designated name. Is there any way to do this?
Thanks in advance