Cortexian
April 8th, 2011, 11:07 PM
So I've got this Batch Transcoding batch file that came with Badaboom 2.0 to transcode an entire folder of videos into iPhone format but I'm having a problem. The batch file won't execute because it cannot find the specified file, I've tracked this down to the fact that there's an ampersand (&) in one of the file paths I've specified. See below:
@echo off
REM ************************************************** ****
REM This will be the directory where your video files are
REM awaiting transcode. An example is provided here, but
REM will need to be changed to your source folder location.
REM ************************************************** ****
set SOURCE=D:\Media\Movies & TV\Star Trek\04 Star Trek Voyager\Season 1
REM ************************************************** ****
REM Set this as the directory where all your output files
REM will be written. Again, an example is provided.
REM ************************************************** ****
set DEST=C:\Users\Kevin\Videos\iPhone
Is there some kind of alternative to the ampersand sign that I can use that the batch file will recognize? I read online that escaping the ampersand like this "^&" would make it work, however that appears to not be the case... Help!
@echo off
REM ************************************************** ****
REM This will be the directory where your video files are
REM awaiting transcode. An example is provided here, but
REM will need to be changed to your source folder location.
REM ************************************************** ****
set SOURCE=D:\Media\Movies & TV\Star Trek\04 Star Trek Voyager\Season 1
REM ************************************************** ****
REM Set this as the directory where all your output files
REM will be written. Again, an example is provided.
REM ************************************************** ****
set DEST=C:\Users\Kevin\Videos\iPhone
Is there some kind of alternative to the ampersand sign that I can use that the batch file will recognize? I read online that escaping the ampersand like this "^&" would make it work, however that appears to not be the case... Help!