|
| |||||||||
| Tags: batchcmd, play, script |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| |||
| |||
| How can I play a Wav file from batch/cmd script? Apologize if this has been covered elsewhere, but I haven't been able to find it. :o I'm using Vista32HP. In Win98 & NT I've been able to play wav files from command scripts, but in Vista nothing I've tried seems to work. Can anyone tell me how to do it? Thanks, -- hbfavor |
|
#2
| |||
| |||
| Re: How can I play a Wav file from batch/cmd script? Do you mean, play files from "command line" (cmd) ??? If you do, yep, it can be done... Type in command prompt (or compose a batch file to do it...) <audio_program> /play /close <file> Ex. to launch WMP to play a wav file %ProgramFiles%\Windows Media Player\wmplayer.exe /play /close C:\music\1.wav --------------------- hope it's work for you -- Gmo.- |
|
#3
| |||
| |||
| Re: How can I play a Wav file from batch/cmd script? Thanks for the reply, but that syntax doesn't work for me with any media player so far. I really need this functionality to run from a batch/cmd file for audible cues for certain events. I don't want to see the player interface, and I want it to exit after playing the wave file. I've been trying to get this kind of command to work: start /min "player.exe" /play /close "wavefile.wav" With some media players I can get them to start minimized and play the file, but then they try to parse the /play /close switches as media files and stop with error messages. They also move the active window to the media player. With WMP, it starts but doesn't play the file, much less exit gracefully. I know there has to be a simple way to get this done. I just can't figure out how. :cry: Any advice would be much appreciated. -- hbfavor |
|
#4
| |||
| |||
| Re: How can I play a Wav file from batch/cmd script?
hbfavor <guest@unknown-email.com> wrote in news:fdeb5ca3e6aeeabfa76b2cea7763ae20@nntp-gateway.com: > > Thanks for the reply, but that syntax doesn't work for me with any media > player so far. > > I really need this functionality to run from a batch/cmd file for > audible cues for certain events. I don't want to see the player > interface, and I want it to exit after playing the wave file. I've been > trying to get this kind of command to work: > start /min "player.exe" /play /close "wavefile.wav" > > With some media players I can get them to start minimized and play the > file, but then they try to parse the /play /close switches as media > files and stop with error messages. They also move the active window to > the media player. With WMP, it starts but doesn't play the file, much > less exit gracefully. > > I know there has to be a simple way to get this done. I just can't > figure out how. :cry: Any advice would be much appreciated. > > Media Player Classic download: http://sourceforge.net/project/showf...roup_id=205650 Install in any directory of your choosing. Run program and then click on the Help button for Commandline Switches....or open Command Prompt session in the directory where you installed mplayerc.exe; type "mplayerc /help". |
|
#5
| |||
| |||
| Re: How can I play a Wav file from batch/cmd script? Just for grins try start /min file.wav Start should open the wav file with whatever is associated with .wav files. -- MilesAhead "How come we don't know the I.Q. of the guy who invented the test?" |
|
#6
| |||
| |||
| Re: How can I play a Wav file from batch/cmd script? Milesahead - thanks for the tip. Your method does absolutely work, but the problem is that it leaves us with a media player hanging around in memory, even if minimized. It also retains the active window, even if the batch file continues other operations. Surprisingly to me, there's relatively little forum chatter on this specific topic under Vista, but after rooting around I did come up with a method that works fine. Requires 3 lines in a batch file: start /min "mediaplayer" "mediafile" timeout /T "N" taskkill /IM "mediaplayer" Your method for playing the file is shorter & more elegant, but this allows selecting the media player for type of file (for instance, one player for flac files, another for mp3s). The timeout command is necessary, because otherwise the following command, taskkill, will kill the mediaplayer task before it has a chance to play the sound file. Switch /T N refers t the seconds you want to command processor to wait before loading the next line of the batch file (no quotes for seconds number) Also means you have to have a rough idea of how many seconds the soundfile takes, but that's not a big deal. The taskkill command zaps the program from memory. For this operation you don't need a fully qualified path name, since it is looks fo the image name (vlc.exe, for example) that is in the task list. Finally, if you want to avoid extraneous info sent to the screen, redirect lines 2 and 3 to nul. Thanks again for taking an interest. -- hbfavor |
|
#7
| |||
| |||
| Re: How can I play a Wav file from batch/cmd script? Million ways to skin the cat. You might want to investigate AutoIt3 scripting language. It's free and gives you a lot more control. It's great for launching other apps and even sending keystrokes once they are open. As an example, I made a general purpose AutoIt3 app to launch another application or open a file with the associated app, move it to x y pos on screen and optionally resize the window in about 20 lines of code. Batch scripting is okay but AutoIt makes it easier to do error checking and reporting and has a syntax that's easy for anyone who has used batch or bash, or Rexx, or Basic. Plus you can right click on the script and compile it to .exe so that having the interpreter on the target machine is not an issue. -- MilesAhead "How come we don't know the I.Q. of the guy who invented the test?" |
|
#8
| |||
| |||
| Re: How can I play a Wav file from batch/cmd script? Sounds really useful. Will definitely check it out. -- hbfavor |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "How can I play a Wav file from batch/cmd script?" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Server config file - batch editing script | ranjankumar09 | Windows Software | 3 | 28-01-2010 09:30 PM |
| Batch Script Text file parse | tator.usenet@gmail.com | Server Scripting | 5 | 25-03-2009 02:12 AM |
| Running Powershell script with batch file with parameters? | Jaslein | Software Development | 2 | 17-02-2009 05:00 PM |
| Batch Script to parse lines in text file | jntoner1@gmail.com | Server Scripting | 8 | 28-01-2009 03:38 AM |
| How to create a script in a DOS batch file to do a loop? | Jon Osborn | Server Scripting | 2 | 27-05-2008 06:41 PM |