Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Page 1 of 2 1 2 LastLast
Results 1 to 15 of 26
  1. #1
    Join Date
    May 2006
    Posts
    5,380

    Example: CustomMP3-Engine

    ok guys, i had a moan in another post about boreing functionless mediaplayers so heres an example of how to add a 10 band eq + spectrum, preamp, echo, surround and more to a AMS mp3 player useing RSPMP3 ocx from RSP Software

    this example was made with v2.8.0 but the ocx has been updated to 3.2.0 so check out the new version for even more functions

    luaCOM and SliderEX plugins required for example
    Last edited by RizlaUK; 08-04-2008 at 10:49 AM.
    Open your eyes to Narcissism, Don't let her destroy your life!!

  2. #2
    Join Date
    Oct 2007
    Posts
    233

    Thumbs up

    Best Job of Rizla

  3. #3
    Join Date
    Jan 2008
    Posts
    35

    Thumbs up

    Thanks RizlaUK, you are a master.

  4. #4
    Join Date
    May 2006
    Posts
    5,380
    ok, when i downloaded this ocx 6+ months ago it was public domain and i even downloaded the source code, there was a notice saying "all our ocx's are now public domain" at the website that was at this address
    http://rspsoftware.bighost.com.br/ but the site no longer exists (has been removed)

    i downloaded the 3.2.0 update and it seems that its been removed from the public domain and is back to shareware, this site http://rspsoftware.com.br/ now host the site and theres a notice saying "The source code of our software is available by request"

    so untill i get a answer from the author(s) over the actual status of the ocx then i have removed the above example.

    for this example you will need to download the shareware version from http://rspsoftware.com.br/

    sorry, but i dont want to get sued!!
    Last edited by RizlaUK; 02-01-2009 at 11:34 AM.
    Open your eyes to Narcissism, Don't let her destroy your life!!

  5. #5
    Join Date
    May 2006
    Posts
    5,380
    iv often seen bassmod but never used it

    thanks for the example, i will have a play with dll and see what it can do
    Open your eyes to Narcissism, Don't let her destroy your life!!

  6. #6
    Join Date
    Apr 2007
    Posts
    165
    can we do more with bassmod?
    i dont know how to work with dll's.
    Would be nice to see an example with all possibilitys of bassmod.
    I realy love it.

  7. #7
    Join Date
    Oct 2007
    Posts
    233
    what is "SnD - sND TeaM .nfo viewer 0.1.xm" format?mp3?
    what is other functions?

  8. #8
    Join Date
    Apr 2007
    Posts
    165
    Rizla:
    i will have a play with dll and see what it can do
    What do you mean with that. Im curious .
    Are you creating another example? More advanced?

  9. #9
    Join Date
    Oct 2007
    Posts
    233
    Quote Originally Posted by credo View Post
    It's tracker module format (mod, it, s3m, umx) - are small and funny. You can download they anywhere, like: http://rapidshare.com/users/6W5PY5

    Also bass archive include additional dll for free mp3 using!
    Bass dll with modules support many much music formats.
    See help file for other functions and features.
    Thanks for the reply

  10. #10
    Join Date
    May 2006
    Posts
    5,380
    hold on, i just noticed something here


    this code
    Code:
    -- loading and initializing
    hDLL = DLL.CallFunction("kernel32.dll", "LoadLibraryA", "\""..cPathDLL.."\"", DLL_RETURN_TYPE_LONG, DLL_CALL_STDCALL); 
    if (hDLL ~= 0) then 
    	fDll = DLL.CallFunction(cPathDLL, "BASS_Init", "-1,44100,0,0,0", DLL_RETURN_TYPE_LONG, DLL_CALL_STDCALL); 
    	if (fDLL ~= 0) then
    		sDLL = DLL.CallFunction(cPathDLL, "BASS_Start", "", DLL_RETURN_TYPE_LONG, DLL_CALL_STDCALL); 
    		if (sDLL ~= 0) then
    			-- playing parameters must be calculated, for example: 4+2=6 / you also can use this newest correct method
    			iDLL = DLL.CallFunction(cPathDLL, "BASS_StreamCreateFile", "0,\""..cPathMuz.."\", 0, 0,"..BASS_MUSIC_MONO+BASS_MUSIC_LOOP, DLL_RETURN_TYPE_LONG, DLL_CALL_STDCALL);
    			if (iDLL ~= 0) then
    				-- 1 = true, 0 = false
    				DLL.CallFunction(cPathDLL, "BASS_ChannelPlay", iDLL..",1", DLL_RETURN_TYPE_LONG, DLL_CALL_STDCALL); 
    			end 
    		end 
    	end 
    end

    what exactly is the call to "LoadLibraryA" for, is this doing what i think its doing ??
    Open your eyes to Narcissism, Don't let her destroy your life!!

  11. #11
    Join Date
    Oct 2006
    Location
    Betawi
    Posts
    120
    Great job Mr Dean

  12. #12
    Join Date
    Apr 2007
    Posts
    165
    Can somebody create an example that has functions to play stop pause set/get volume set loop an xm module with bassmod?

  13. #13
    Join Date
    Feb 2008
    Location
    Western Pennsylvania
    Posts
    555

    Grin Prev - Next???

    I am brand new to coding and can only do it in a time frame, (Kids) lol, Anyway i can't figure out the code for the preview button or the Next button on this one??!!

    Can anyone give me pointers?

    Thank You.

  14. #14
    Join Date
    May 2006
    Posts
    5,380
    I am brand new to coding and can only do it in a time frame, (Kids)
    yeah, i know the feeling, since we had our 2nd time has become very valuable.


    im about to crack open this example and add the seek functions, i had a few requests for this so im doing it now
    Open your eyes to Narcissism, Don't let her destroy your life!!

  15. #15
    Join Date
    Feb 2008
    Location
    Western Pennsylvania
    Posts
    555

    Wink See..

    I said you were the man!! Lol! I got 5 rug rats running around and time is not around to really try and focus.

    Thanks again!

Similar Threads

  1. Installing the Microsoft Access Runtime Engine
    By Adam in forum Setup Factory 8.0 FAQ
    Replies: 0
    Last Post: 04-28-2008, 11:22 AM
  2. FreePlugin: Splash Image Transition Engine DLL
    By RizlaUK in forum AutoPlay Media Studio 6.0
    Replies: 43
    Last Post: 03-26-2008, 08:41 AM
  3. FREE UTILITY: Splash Image Transition Engine
    By RizlaUK in forum AutoPlay Media Studio 6.0
    Replies: 38
    Last Post: 11-05-2007, 02:42 PM
  4. setup engine file: 1004
    By CSPG in forum Setup Factory 7.0
    Replies: 3
    Last Post: 07-18-2006, 12:43 PM
  5. INFO: Installing the Microsoft Access Runtime Engine
    By Support in forum Setup Factory 6.0 Knowledge Base
    Replies: 0
    Last Post: 10-11-2002, 01:01 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts