windows - How to automate a file conversion xwm to mp3 with xwmaencode.exe using bat file -


the code required run is: xwmaencode.exe .xwm . wanna make .bat file can allow me drag , drop file or convert of .xwm files within current folder .mp3 preferrably

an explanation of each part well, have no clue how .bat files operate, , have limited knowledge on cmd syntax, can manage

if don't mind file.xwm.wav (and there utilities out there that'll remove .xwm*), did taken pngout.exe's examples:

for %i in (*.xwm) xwmaencode %i %i.wav 

in case, don't have files spaces, if did, you'd do

for %i in (*.xwm) xwmaencode "%i" "%i".wav 

*powershell might, have no idea


Comments

Popular posts from this blog

c++ - QTextObjectInterface with Qml TextEdit (QQuickTextEdit) -

xcode - Swift Playground - Files are not readable -

jboss7.x - JBoss AS 7.3 vs 7.4 and differences -