I have created an archive page which will show you how to play music in your installers using the great free for non-commercial use BASS library (http://www.un4seen.com).
NSIS Archive page: http://nsis.sourceforge.net/archive/...b.php?page=988
Play music in your installers (NSISBASS)
2 posts
Is it possible to have an update to bass v2.3?
BASS_SamplePlay, BASS_SamplePlayEx, BASS_SamplePlay3D, BASS_SamplePlay3DExI cant that working - im missing sound...
These functions are replaced by a combination of BASS_SampleGetChannel and BASS_ChannelPlay. The BASS_ChannelSetAttributes and BASS_ChannelSet3DAttributes functions can be used to replace the functionality of the "Ex" versions.
System::Call /NOUNLOAD '${BASS_Init} (1, 44100,, r0,)'
System::Call /NOUNLOAD '${BASS_SampleLoad} (0, "${MUSICNAME}", 0, 0, 1,${BASS_SAMPLE_LOOP}) .r0'
System::Call /NOUNLOAD '${BASS_ChannelPlay} (r0).r0'