24 May '13 - 21:21 *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
 
  Home Help Search Login Register  
  Show Posts
Pages: [1] 2 3 ... 76
1  Developments / BASS / Re: Get _stream from sound card in Bass on: 21 May '13 - 14:14
Take a look @ the Record Example
ReplyReply Reply with quoteQuote
2  Developments / BASS / Re: 2 streams from the same file? on: 21 May '13 - 06:21
http://www.un4seen.com/forum/?topic=14090.msg98109#msg98109
ReplyReply Reply with quoteQuote
3  Developments / BASS / Re: BASS_DSHOW Video Library on: 20 May '13 - 16:34
I don`t think that vb6(15 years old dev language strange)  knows unicode
so change it to
if(xVideo_ChannelGetStream(chan,I,@str,0)) then
   begin
     menu := TMenuItem.Create(PopupMenu1);
     menu.Caption := PAnsiChar(str.name);
     menu.Checked := str.enabled;
     menu.Tag := I;
     menu.OnClick := EnableStream;
     Popupmenu1.Items.Items[2].Items[str.format-1].Add(menu);
   end;
ReplyReply Reply with quoteQuote
4  Developments / BASS / Re: BASS.NET API arhive damage on: 19 May '13 - 18:58
Here a Mirror but I think the problem is not the File the problem is on your PC
http://ul.to/s26ru1tl
ReplyReply Reply with quoteQuote
5  Developments / BASS / Re: BASS.NET API arhive damage on: 19 May '13 - 14:42
hm maybe you have a proxyserver or whatever .
I have tested it here fine
For a Attache in the forum its to big (32 MB)
ReplyReply Reply with quoteQuote
6  Developments / BASS / Re: BASS for iOS (iPhone/iPad) on: 19 May '13 - 14:18

Hi Chris,
did you got it working?
Is it easy or hard to do this with XE4?
Should i buy XE4, or wait again for a working verison? ;-)
Cheers, Bert

Its possible but there must change things in the header....
The Only Problem is the Delphi Mobile Compiler (he doesn`t know/support Ansi)
will mean all ansi stuff in the bass header must change from ansi to byte of array
ReplyReply Reply with quoteQuote
7  Developments / BASS / Re: BASS.NET API arhive damage on: 18 May '13 - 10:47
Hi
will extract here fine . You have to clear your cache in your browser.
To download addons here the link
http://www.un4seen.com/bass.html#addons
ReplyReply Reply with quoteQuote
8  Developments / BASS / Re: BASS_ChannelGetPosition in Qt on: 17 May '13 - 13:03
no not the formname ...the formhandle....
i`m not shure how its declare in qt....
eg in other Dev Languages the most time....something like  Form1.Handle
ReplyReply Reply with quoteQuote
9  Developments / BASS / Re: BASS_ChannelGetPosition in Qt on: 17 May '13 - 12:59

should be
BASS_Init(-1,44100,0,WinHandle,NULL);
(winhandle the windowhandle of your form)
ReplyReply Reply with quoteQuote
10  Developments / BASS / Re: BASS_ChannelGetPosition in Qt on: 17 May '13 - 12:46
do you have add in the Bass_Init Call a windowhandle?

and what is the return from
stream=BASS_StreamCreateFile(false,filename.toLocal8bit().constData,0,0,BASS_UNICODE);

ReplyReply Reply with quoteQuote
11  Developments / BASS / Re: BASS_ChannelGetPosition in Qt on: 17 May '13 - 12:01
Hi
 filename.toLocal8bit ?
will that mean unicode?
if yes then you call must be
BASS_StreamCreateFile(false,filename.toLocal8bit().constData,0,0,BASS_UNICODE);

the maxnr stuff will mean that something is wrong

just place a Bass_ErrorGetCode() call to catch whats going on.
ReplyReply Reply with quoteQuote
12  Developments / BASS / Re: Can BASS library perform pitch independent tempo change? on: 17 May '13 - 10:07
Hi
If I right understand want you to change pitch AND Tempo together?

BASS_ChannelSetAttribute(chan, BASS_ATTRIB_TEMPO_FREQ,FREQ.pos);
BASS_ChannelSetAttribute(chan, BASS_ATTRIB_TEMPO, Tempo.pos);

Based on your Dev Language take a look into the samples of the bass_fx packages
ReplyReply Reply with quoteQuote
13  Developments / BASS / Re: BASS_MIDI_MARK on: 16 May '13 - 11:43
typedef struct {
    DWORD track;
    DWORD pos;
    char *text;
} BASS_MIDI_MARK;

pos is a DWORD should be (so far i know) in net a unsigned int
ReplyReply Reply with quoteQuote
14  Developments / BASS / Re: BASS prevents Windows from going sleep mode? on: 3 May '13 - 16:36
hm I think thats normaly while a stream is playing.....maybe you have to insert that self...
ReplyReply Reply with quoteQuote
15  Developments / BASS / Re: BASS for iOS (iPhone/iPad) on: 3 May '13 - 10:25
@ Ian
I will try at this moment to port the Win Delphi Header to XE4 Mobile ...
and making a small Demo for Delphi Xe4 User...(XE4 IOs is supportet)
One Question about the Ansistrings /AnsiChars/PAnsiChar  inside the calls and the records....
Are they Ansi as in Windows or now Wide/Unicode?
Cheers Chris
ReplyReply Reply with quoteQuote
16  Developments / BASS / Re: [DELPHI] Instant volume level of midi channel on: 2 May '13 - 20:00
this should work
procedure LevelDSP(handle: HDSP; channel: DWORD; buffer: Pointer; length: DWORD;
  user: Pointer); stdcall;
var
  a: DWORD;
  fLeft, fRight: PSingle;
begin
  fLeft := buffer;
  fRight := buffer;
  inc(fRight);
  a := 0;
  levels[0] := 0;
  levels[1] := 0;
  while (a < (length div 4)) do
  begin
    if (levels[0] < (abs(fLeft^))) then
      levels[0] := (abs(fLeft^)); // check left
    if (levels[1] < (abs(fRight^))) then
      levels[1] := (abs(fRight^)); // check right
    inc(a, 2);
  end;
end;
ReplyReply Reply with quoteQuote
17  Developments / BASS / Re: [DELPHI] Instant volume level of midi channel on: 2 May '13 - 11:47
s:= @buffer;
ReplyReply Reply with quoteQuote
18  Developments / BASS / Re: [DELPHI] Instant volume level of midi channel on: 2 May '13 - 10:18
s:=buffer;
ReplyReply Reply with quoteQuote
19  Developments / BASS / Re: BASS for iOS (iPhone/iPad) on: 30 Apr '13 - 16:10
Great
Thank you
ReplyReply Reply with quoteQuote
20  Developments / BASS / Re: [DELPHI] Instant volume level of midi channel on: 30 Apr '13 - 13:13
oops thats right Thanks...
The Code above is now corrected
ReplyReply Reply with quoteQuote
Pages: [1] 2 3 ... 76
Powered by SMF 1.1.18 | SMF © 2013, Simple Machines