Gamestudio Links
Zorro Links
Newest Posts
AlpacaZorroPlugin v1.3.0 Released
by kzhao. 05/20/24 20:05
Free Live Data for Zorro with Paper Trading?
by AbrahamR. 05/18/24 13:28
Change chart colours
by 7th_zorro. 05/11/24 09:25
Data from CSV not parsed correctly
by dr_panther. 05/06/24 18:50
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
2 registered members (AndrewAMD, 7th_zorro), 1,285 guests, and 4 spiders.
Key: Admin, Global Mod, Mod
Newest Members
Hanky27, firatv, wandaluciaia, Mega_Rod, EternallyCurious
19051 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 1 of 2 1 2
mp3 plugin !! #45144
05/03/05 18:52
05/03/05 18:52
Joined: Mar 2005
Posts: 249
Iraq , Baghdad
Spider_Man Offline OP
Member
Spider_Man  Offline OP
Member

Joined: Mar 2005
Posts: 249
Iraq , Baghdad
How can i find the mp3 plugin please , any idea any link ?

Regards


Spider_Man 3D Modeling, Website Services, my profile "osama Al Ani": www.vlprojects.com www.vlprojects.com/artwork
Re: mp3 plugin !! [Re: Spider_Man] #45145
05/03/05 19:09
05/03/05 19:09
Joined: Apr 2005
Posts: 653
Germany
D
Det Offline
User
Det  Offline
User
D

Joined: Apr 2005
Posts: 653
Germany
Hi look at httP://au.continec.net

look there under recource ten you find it .

mfg Det


Wissen ist macht.
Nichts wissen macht auch nichts.

A7.86
Re: mp3 plugin !! [Re: Det] #45146
05/03/05 19:15
05/03/05 19:15
Joined: Mar 2005
Posts: 249
Iraq , Baghdad
Spider_Man Offline OP
Member
Spider_Man  Offline OP
Member

Joined: Mar 2005
Posts: 249
Iraq , Baghdad
Thanks let me go there now

many thanks again


Spider_Man 3D Modeling, Website Services, my profile "osama Al Ani": www.vlprojects.com www.vlprojects.com/artwork
Re: mp3 plugin !! [Re: Spider_Man] #45147
05/03/05 19:17
05/03/05 19:17
Joined: Mar 2005
Posts: 249
Iraq , Baghdad
Spider_Man Offline OP
Member
Spider_Man  Offline OP
Member

Joined: Mar 2005
Posts: 249
Iraq , Baghdad
the link not working .. sorry i can't get that,
i think you meant : http://aum.conitec.net/


All i want to add MP3 music to my level to be as sound loop.

thanks i will look on that

Last edited by Spider_Man; 05/03/05 19:24.

Spider_Man 3D Modeling, Website Services, my profile "osama Al Ani": www.vlprojects.com www.vlprojects.com/artwork
Re: mp3 plugin !! [Re: Spider_Man] #45148
05/03/05 19:29
05/03/05 19:29
Joined: Jan 2005
Posts: 282
The Netherlands
S
Sjoerd Offline
Member
Sjoerd  Offline
Member
S

Joined: Jan 2005
Posts: 282
The Netherlands
He made a typing mistake, he meant this: au.conitec.net (or click resources at the bottom of this page).
You will find a mp3 dll under wdl & dll.

EDIT: you will find a newer, more advanced plugin here .

Last edited by Sjoerd; 05/03/05 19:35.
Re: mp3 plugin !! [Re: Sjoerd] #45149
05/03/05 19:36
05/03/05 19:36
Joined: Apr 2005
Posts: 653
Germany
D
Det Offline
User
Det  Offline
User
D

Joined: Apr 2005
Posts: 653
Germany
http://au.conitec.net/ this is the link now

sorry the link was not correct


Wissen ist macht.
Nichts wissen macht auch nichts.

A7.86
Re: mp3 plugin !! [Re: Det] #45150
05/03/05 19:47
05/03/05 19:47
Joined: Mar 2005
Posts: 249
Iraq , Baghdad
Spider_Man Offline OP
Member
Spider_Man  Offline OP
Member

Joined: Mar 2005
Posts: 249
Iraq , Baghdad
That's fine .. i'm happy to get that plug ..

but i need to know how to use it .. and where to add it

thanks all


Spider_Man 3D Modeling, Website Services, my profile "osama Al Ani": www.vlprojects.com www.vlprojects.com/artwork
Re: mp3 plugin !! [Re: Spider_Man] #45151
05/03/05 20:00
05/03/05 20:00
Joined: Apr 2005
Posts: 653
Germany
D
Det Offline
User
Det  Offline
User
D

Joined: Apr 2005
Posts: 653
Germany
You must unzip it in your Gamestudio Folder
C:/Gamestudio

And this is what you need :


//Mp3AdvDll.wdl -- function for using the Mp3AdvDll.dll for mp3 playback

//Call InitMp3Adv() to allocate memory for the SongSlots
//Call CloseMp3Adv() to free all memory and reset everythig (call InitMp3Adv if you need to load again)

//NOTE .. if you call DLL_CLOSE .. playing will cease .. only call it at the end of your game

//Mp3AdvDll.dll
//Author: Cameron Aycock xagon7@yahoo.com xagon7 on the GameStudio Forum
/*
Mp3AdvDll.dll is Creditware
The Mp3AdvDll.dll can be used for ANY and ALL purposes (Freeware, Shareware, or Commercial),
provided that I (Cameron Aycock) am given credit in the credits
of the game or application with the following string:

"Additional audio programming by Cameron Aycock xagon7@yahoo.com"

... failing that, include it in your readme file or other documentation.. that is all that I ask
*/

dllfunction InitMp3Adv();
dllfunction CloseMp3Adv();
dllfunction LoadSongSlot(x);
dllfunction GetIndexFromFile(x);
dllfunction PlaySong(x,y);
dllfunction StopSong(x);
dllfunction PauseSong(x);
dllfunction SetVolume(x,y);
dllfunction GetVolume(x);
dllfunction GetBalance(x);
dllfunction SetBalance(x, y);
dllfunction SetPosition(x, y);
dllfunction GetPosition(x);


//Example
/*

var Mp3AdvAppHandle;
var SongSlot1;
var SongSlot2;

function PlaySongsTogether(){ //called from anywhere
PlaySong(SongSlot1, 0); //no looping
PlaySong(SongSlot2, 0);
}

function main()
{
Mp3AdvAppHandle = dll_open("Mp3AdvDll.dll");
InitMp3Adv();
SongSlot1 = LoadSongSlot("Row.mp3");
SongSlot2 = LoadSongSlot("WhooHoo.mp3");
}

function Quit(){
CloseMp3Adv();
dll_Close(Mp3AdvAppHandle);
}

*/



Than it should work for you

mfg Det


Wissen ist macht.
Nichts wissen macht auch nichts.

A7.86
Re: mp3 plugin !! [Re: Det] #45152
05/03/05 20:18
05/03/05 20:18
Joined: Mar 2005
Posts: 249
Iraq , Baghdad
Spider_Man Offline OP
Member
Spider_Man  Offline OP
Member

Joined: Mar 2005
Posts: 249
Iraq , Baghdad
Many thanks


Spider_Man 3D Modeling, Website Services, my profile "osama Al Ani": www.vlprojects.com www.vlprojects.com/artwork
Re: mp3 plugin !! [Re: Spider_Man] #45153
05/04/05 06:09
05/04/05 06:09
Joined: Oct 2003
Posts: 2,628
IL,US
FeiHongJr Offline
Expert
FeiHongJr  Offline
Expert

Joined: Oct 2003
Posts: 2,628
IL,US
while mp3s are nice dont forget to look in to the licenceing for them if you ever plan to go commercial with your project. I suggest using the ogg format. Just my opinion. I looked into the mp3 licence and its pretty expensive. not worth it in my opinion. Anyways just wanted to point that out. However a little off topic. Im curious if we need a licence if we create an app that can play mp3s but dont include any mp3s themselves.


http://www.freewebs.com/otama_syndicate/index.htm - Each master to his own technique.

- Not me said the bee, Nor I said the fly.
Page 1 of 2 1 2

Moderated by  HeelX, Spirit 

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1