How can I play sound file (mp3,wav,etc) directly with no associated application? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T20:49:14Z http://stackoverflow.com/feeds/question/1142231 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1142231/how-can-i-play-sound-file-mp3-wav-etc-directly-with-no-associated-application 2 How can I play sound file (mp3,wav,etc) directly with no associated application? Jlouro 2009-07-17T09:21:17Z 2009-07-20T07:14:54Z <p>I need also to be able to control its volume. Also, how do I control system sound volume, to detect low volume, or mute states ?</p> http://stackoverflow.com/questions/1142231/how-can-i-play-sound-file-mp3-wav-etc-directly-with-no-associated-application/1142249#1142249 4 Answer by Shoban for How can I play sound file (mp3,wav,etc) directly with no associated application? Shoban 2009-07-17T09:25:05Z 2009-07-17T09:25:05Z <p>Check this question : <a href="http://stackoverflow.com/questions/246723/how-to-play-a-wav-file-in-delphi">http://stackoverflow.com/questions/246723/how-to-play-a-wav-file-in-delphi</a> It will give you some idea.</p> http://stackoverflow.com/questions/1142231/how-can-i-play-sound-file-mp3-wav-etc-directly-with-no-associated-application/1143623#1143623 -2 Answer by RED SOFT ADAIR-StefanWoe for How can I play sound file (mp3,wav,etc) directly with no associated application? RED SOFT ADAIR-StefanWoe 2009-07-17T14:26:25Z 2009-07-17T14:26:25Z <pre><code>char *mp3FilePath = ... ; char *workingDirPath = ... ; ShellExecute(hwnd, "open", mp3FilePath, NULL, workingDirPath, SW_SHOWNORMAL); </code></pre> http://stackoverflow.com/questions/1142231/how-can-i-play-sound-file-mp3-wav-etc-directly-with-no-associated-application/1143780#1143780 2 Answer by Martijn for How can I play sound file (mp3,wav,etc) directly with no associated application? Martijn 2009-07-17T14:55:26Z 2009-07-17T14:55:26Z <p>Use Shoban's link for how to play sound.</p> <p>Here's how to control the sound volume for devices:</p> <pre><code>uses MMSystem; type TVolumeRec = record case Integer of 0: (LongVolume: Longint) ; 1: (LeftVolume, RightVolume : Word) ; end; const DeviceIndex=5 {0:Wave 1:MIDI 2:CDAudio 3:Line-In 4:Microphone 5:Master 6:PC-loudspeaker} procedure SetVolume(aVolume:Byte) ; var Vol: TVolumeRec; begin Vol.LeftVolume := aVolume shl 8; Vol.RightVolume:= Vol.LeftVolume; auxSetVolume(UINT(DeviceIndex), Vol.LongVolume) ; end; function GetVolume:Cardinal; var Vol: TVolumeRec; begin AuxGetVolume(UINT(DeviceIndex),@Vol.LongVolume) ; Result:=(Vol.LeftVolume + Vol.RightVolume) shr 9; end; </code></pre> http://stackoverflow.com/questions/1142231/how-can-i-play-sound-file-mp3-wav-etc-directly-with-no-associated-application/1144601#1144601 2 Answer by Bruce McGee for How can I play sound file (mp3,wav,etc) directly with no associated application? Bruce McGee 2009-07-17T17:13:08Z 2009-07-17T17:13:08Z <p>If this is for non-commercial use, the <a href="http://www.un4seen.com/" rel="nofollow">BASS</a> libraries are free and give you the control you're looking for.</p> <p>There are free video tutorials on <a href="http://www.3dbuzz.com" rel="nofollow">3DBuzz</a>, one of which is creating your own MP3 player. They're in the Video Category list on the front page.</p> http://stackoverflow.com/questions/1142231/how-can-i-play-sound-file-mp3-wav-etc-directly-with-no-associated-application/1148099#1148099 0 Answer by fred for How can I play sound file (mp3,wav,etc) directly with no associated application? fred 2009-07-18T17:38:49Z 2009-07-18T17:38:49Z <p>Just use MM apis (tons of samples on MSDN and google)</p> http://stackoverflow.com/questions/1142231/how-can-i-play-sound-file-mp3-wav-etc-directly-with-no-associated-application/1151033#1151033 1 Answer by Alister for How can I play sound file (mp3,wav,etc) directly with no associated application? Alister 2009-07-19T22:17:35Z 2009-07-19T22:17:35Z <p>Have a look at this article: <a href="http://delphi.about.com/od/multimedia/l/aa112800a.htm" rel="nofollow">Your first MP3 Delphi player</a>. It uses TMediaPlayer to be able to play mp3 files. Not exactly what you want, but a very good starting point.</p>