Including music without external dll's

Advanced game related topics
OmeCloak
User
User
Posts: 13
Joined: Sat May 15, 2004 6:27 pm

Including music without external dll's

Post by OmeCloak »

Hi all.

Mayby someone asked this earlier, i don't know, i couldn't find it :oops:
I am making a little chipdisk, and i include all the data as binary.
This works very well, but since i use bassmod.dll, i have to include it in the zip file.
Is there a way to use a xm/mod/s3m player WITHOUT using dll files?
And no, i dont want to use stuff like pebundle.
Any help or examples would be welcome.

Regards, OmeCloak
benny
Enthusiast
Enthusiast
Posts: 465
Joined: Fri Apr 25, 2003 7:44 pm
Location: end of www
Contact:

Post by benny »

@OmeCloak:

There is a lib called MXM, which plays converted XM files in its own format (i.e. you have to convert your .xm files first).
You can find the lib and the converter on http://www.purearea.net -> Userlibs!

Furthermore, there is another lib-conversion of minifmod. See here viewtopic.php?t=9340&highlight=minifmod

However, I am not sure if the libs do run smooth or stable enough for your wishes. Just give them a try!
regards,
benny!
-
pe0ple ar3 str4nge!!!
OmeCloak
User
User
Posts: 13
Joined: Sat May 15, 2004 6:27 pm

Post by OmeCloak »

Hmmm, i tried to download that file, but the link is dead.
Does anybody have that file somewhere?

Thnx in advance.

Regards, Cloak.
benny
Enthusiast
Enthusiast
Posts: 465
Joined: Fri Apr 25, 2003 7:44 pm
Location: end of www
Contact:

Post by benny »

Send an email to benny[at]weltenkonstrukteur[dot]com and I'll send it to you!
regards,
benny!
-
pe0ple ar3 str4nge!!!
User avatar
Andre
PureBasic Team
PureBasic Team
Posts: 2137
Joined: Fri Apr 25, 2003 6:14 pm
Location: Germany (Saxony, Deutscheinsiedel)
Contact:

Post by Andre »

OmeCloak wrote:Hmmm, i tried to download that file, but the link is dead.
Does anybody have that file somewhere?
Both links on PureArea.net / UserLibs / MXM are working, so what are you missing ?
Bye,
...André
(PureBasicTeam::Docs & Support - PureArea.net | Order:: PureBasic | PureVisionXP)
OmeCloak
User
User
Posts: 13
Joined: Sat May 15, 2004 6:27 pm

Post by OmeCloak »

mxm lib is downloadable, but the mini fmod lib conversion was not, and that was the one i want :)

Regards, Michel.
OmeCloak
User
User
Posts: 13
Joined: Sat May 15, 2004 6:27 pm

Post by OmeCloak »

Benny, i tried to mail you, but the mail returned :(
Could you send the file and some mini instructions on installations to cloak[at]jollyland-studios[dot]net please?

Regards, Michel.
thefool
Always Here
Always Here
Posts: 5875
Joined: Sat Aug 30, 2003 5:58 pm
Location: Denmark

Post by thefool »

download minifmod from fmods original homepage. They have a working link!
OmeCloak
User
User
Posts: 13
Joined: Sat May 15, 2004 6:27 pm

Post by OmeCloak »

Okay i already got that file, but what file do i put where?

Regards, Michel.
benny
Enthusiast
Enthusiast
Posts: 465
Joined: Fri Apr 25, 2003 7:44 pm
Location: end of www
Contact:

Post by benny »

OmeCloak wrote:Benny, i tried to mail you, but the mail returned :(
Could you send the file and some mini instructions on installations to cloak[at]jollyland-studios[dot]net please?

Regards, Michel.
Do you know why the email was returned [error-report] ?

Nevertheless, you've got mail :wink:

Little testcode

Code: Select all

MFMInit(?xm, ?xmend-?xm) 
MFMPlay() 
MessageRequester("MiniFMOD-Tst", "Stop It ?") 
MFMStop() 
MFMClose() 

DataSection 
xm: 
IncludeBinary "test.xm" 
xmend:
EndDataSection 
regards,
benny!
-
pe0ple ar3 str4nge!!!
OmeCloak
User
User
Posts: 13
Joined: Sat May 15, 2004 6:27 pm

Post by OmeCloak »

Thanks!!

That was the file i was looking for!
I\ll let you know if i run into any problems.

Regards, Michel.
Post Reply