Jump to content

Command line parameter


ajit
 Share

Recommended Posts

Hi,

I have a working batch file passing command line parameters to voice format converter (NCH Switch encoder). I want to pass those commands through Autoit but no matter what i tried cannot make it to work. The batch file details are below

Set Switch_Encoder_Path="C:\Program Files\NCH Swift Sound\Switch\switch.exe"

Set Extension= .mp3

Set Filename= "C:\Documents and Settings\Ajit\Desktop\Test Switch\a.wav"

Set Output_Folder="C:\Documents and Settings\Ajit\Desktop\Test Switch"

%Switch_Encoder_Path% -hide -format %Extension% -outfolder %Output_Folder% -convert %Filename% -exit

I do not know how to use the last line for Run Command in Autoit. Please could someone help me.

Thanks and regards

Ajit

Link to comment
Share on other sites

$Switch_Encoder_Path="C:Program FilesNCH Swift SoundSwitchswitch.exe"
$Extension= ".mp3"
$Filename= "C:Documents and SettingsAjitDesktopTest Switcha.wav"
$Output_Folder="C:Documents and SettingsAjitDesktopTest Switch"
$path = '"' & $Switch_Encoder_Path & '" -hide -format ' & $Extension & ' -outfolder "' & $Output_Folder & '" -convert "' & $Filename & '" -exit'
ConsoleWrite($path & @LF)

Scripts & functions Organize Includes Let Scite organize the include files

Yahtzee The game "Yahtzee" (Kniffel, DiceLion)

LoginWrapper Secure scripts by adding a query (authentication)

_RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...)

Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc.

MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times

Link to comment
Share on other sites

Nice! :)

Scripts & functions Organize Includes Let Scite organize the include files

Yahtzee The game "Yahtzee" (Kniffel, DiceLion)

LoginWrapper Secure scripts by adding a query (authentication)

_RunOnlyOnThis UDF Make sure that a script can only be executed on ... (Windows / HD / ...)

Internet-Café Server/Client Application Open CD, Start Browser, Lock remote client, etc.

MultipleFuncsWithOneHotkey Start different funcs by hitting one hotkey different times

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...