Hey, I was hoping someone could help me on this issue. I currently use windows for a batch script conversion where I can just drag and drop a video file onto my batch file and it will run the conversion and output the file with the same name. Is it possible to do something similar to this on osx lion? I would like to be able to drag and drop the video file onto the script and allow it to run and output the newly converted video file with the same name. I currently use the latest vlc 2.0 on both systems.
My script is "C:\Program Files (x86)\VideoLAN\VLC\vlc.exe" %1 --sout=#transcode{vcodec=h264,vb=800,acodec=mp4a,ab=192,channels=2}:standard{access=file,mux=mp4,dst=%1.mp4}
I understand that the location for vlc will to /Applications/VLC.app/Contents/MacOS/VLC but how can I make the script executable by dragging and dropping the video file.
Im not as proficient on OSX as I am on windows so any help would be much appreciated.
Thank you.