How can I play sound file (mp3,wav,etc) directly with no associated application? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T20:49:14Zhttp://stackoverflow.com/feeds/question/1142231http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1142231/how-can-i-play-sound-file-mp3-wav-etc-directly-with-no-associated-application2How can I play sound file (mp3,wav,etc) directly with no associated application?Jlouro2009-07-17T09:21:17Z2009-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#11422494Answer by Shoban for How can I play sound file (mp3,wav,etc) directly with no associated application?Shoban2009-07-17T09:25:05Z2009-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-2Answer by RED SOFT ADAIR-StefanWoe for How can I play sound file (mp3,wav,etc) directly with no associated application?RED SOFT ADAIR-StefanWoe2009-07-17T14:26:25Z2009-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#11437802Answer by Martijn for How can I play sound file (mp3,wav,etc) directly with no associated application?Martijn2009-07-17T14:55:26Z2009-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#11446012Answer by Bruce McGee for How can I play sound file (mp3,wav,etc) directly with no associated application?Bruce McGee2009-07-17T17:13:08Z2009-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#11480990Answer by fred for How can I play sound file (mp3,wav,etc) directly with no associated application?fred2009-07-18T17:38:49Z2009-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#11510331Answer by Alister for How can I play sound file (mp3,wav,etc) directly with no associated application?Alister2009-07-19T22:17:35Z2009-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>