A Windows Vista forum. Vista Banter

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.

Go Back   Home » Vista Banter forum » Microsoft Windows Vista » Performance and Maintainance of Windows Vista
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Performance and Maintainance of Windows Vista A forum for performance and maintenance tasks in Windows Vista. (microsoft.public.windows.vista.performance_maintainance)

How can I play a Wav file from batch/cmd script?



 
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old September 10th 08, 10:01 PM posted to microsoft.public.windows.vista.performance_maintenance
hbfavor
external usenet poster
 
Posts: 4
Default 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.

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 (permalink)  
Old September 10th 08, 11:06 PM posted to microsoft.public.windows.vista.performance_maintenance
Gmo.-
external usenet poster
 
Posts: 1
Default 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 (permalink)  
Old September 11th 08, 03:49 AM posted to microsoft.public.windows.vista.performance_maintenance
hbfavor
external usenet poster
 
Posts: 4
Default 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 (permalink)  
Old September 11th 08, 06:30 AM posted to microsoft.public.windows.vista.performance_maintenance
propman
external usenet poster
 
Posts: 29
Default How can I play a Wav file from batch/cmd script?

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".




  #5 (permalink)  
Old September 13th 08, 01:09 AM posted to microsoft.public.windows.vista.performance_maintenance
MilesAhead[_4_]
external usenet poster
 
Posts: 97
Default 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 (permalink)  
Old September 13th 08, 07:03 AM posted to microsoft.public.windows.vista.performance_maintenance
hbfavor
external usenet poster
 
Posts: 4
Default 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 (permalink)  
Old September 13th 08, 03:43 PM posted to microsoft.public.windows.vista.performance_maintenance
MilesAhead[_4_]
external usenet poster
 
Posts: 97
Default 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 (permalink)  
Old September 13th 08, 03:51 PM posted to microsoft.public.windows.vista.performance_maintenance
hbfavor
external usenet poster
 
Posts: 4
Default How can I play a Wav file from batch/cmd script?


Sounds really useful. Will definitely check it out.


--
hbfavor
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 03:15 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.Search Engine Optimization by vBSEO 3.0.0 RC6
Copyright ©2004-2012 Vista Banter.
The comments are property of their posters.