I have this simple batchscript...
@ECHO OFF
:batch
IF "%~1"=="" GOTO end
ECHO video=FFVideoSource("%~f1")>"%~f1.avs"
ECHO audio=BassAudioSource("%~f1")>>"%~f1.avs"
ECHO AudioDub(video,audio.TimeStretch(pitch=432.0/4.4))>>"%~f1.avs"
SHIFT
GOTO batch
:end
which when executed from command prompt works fine in all cases, but breaks when I drag&drop a file with an underscore in its filename. Several avs-files are created. I've found them in %~1 its parent directory and even in "C:\Documents and Settings\Admin".
Does anyone know why an underscore would be an issue for drag&drop?
I'm on WinXP, that doesn't have anything to do with it, does it?