![]() |
|
Welcome to Vista Banter. You are currently viewing our boards as a guest which gives you limited access to view most discussions, articles and access our other FREE features. By joining our free community you will have access to ask questions and reply to others posts, upload your own photos and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact support. |
|
|||||||
| Performance and Maintainance of Windows Vista A forum for performance and maintenance tasks in Windows Vista. (microsoft.public.windows.vista.performance_maintainance) |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Apologize if this has been covered elsewhere, but I haven't been able to find it. ![]() 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 |
|
|||
|
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.- |
|
|||
|
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 |
|
|||
|
hbfavor wrote in
: 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". |
|
|||
|
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?" |
|
|||
|
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 |
|
|||
|
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?" |