19 Jun '13 - 15:46 *
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 ... 202
1  Developments / BASS / Re: Icecast on OSX on: 17 Jun '13 - 16:11
Please remove the BASS_RECORD_PAUSE flag (and just use the DEFUALT flag).
Also remove the BASS_ChannelPlay call.
ReplyReply Reply with quoteQuote
2  Developments / BASS / Re: BASS.NET API 2.4.10.2 on: 14 Jun '13 - 09:17
13.06.2013: Version 2.4.10.2 is out!

BASS_FX: added support for v2.4.10.1
BASSmidi: added support for v2.4.8.0

Full Install:
 www.un4seen.com/filez/4/Bass24.Net.zip

Lib only:
 www.un4seen.com/filez/4/Bass24.Net_update.zip
ReplyReply Reply with quoteQuote
3  Developments / BASS / Re: problem with actual bass.net on: 12 Jun '13 - 21:04
http://www.un4seen.com/forum/?topic=10079.msg70141#msg70141
ReplyReply Reply with quoteQuote
4  Developments / BASS / Re: problem with actual bass.net on: 12 Jun '13 - 08:57
Then you are probably not using the latest BASS_DSHOW lib?!
Note, that the lib was just recently renamed from "bass_dshow.dll" to "xVideo.dll" by the add-on developer!
The old v2.4.9.x Bass.Net version is of course still using the old lib name (bass_dshow.dll).
As such you must provide the new xVideo.dll within your executable directory when using the new 2.4.10.x Bass.Net version.
ReplyReply Reply with quoteQuote
5  Developments / BASS / Re: Problems with ChannelSetFx and ChannelSetDsp on: 11 Jun '13 - 08:43
Try calling "BassFx.BASS_FX_GetVersion" before setting any DSP/FX, in order to have BASS_FX loaded automatically.
The issue is, that BASS_FX must first be loaded in order to register its effects before they can effectively be used.
ReplyReply Reply with quoteQuote
6  Developments / BASS / Re: BPMcounter with live ASIO / WasApi decoding streams on: 10 Jun '13 - 16:05
This 'very old' class is still there due to backward compatibility issues.
It is now recommended to use the related Beat/BPM functions as provided within BASS_FX.
ReplyReply Reply with quoteQuote
7  Developments / BASS / Re: [SOLVED] Problem with tags character encoding on: 9 Jun '13 - 12:22
there is no way to know or detect it. the standard defines it to be ANSI but some streams effectively does simple use UTF8.
ReplyReply Reply with quoteQuote
8  Developments / BASS / Re: BASS_BFX_BQF Class - improper bass .net docu? on: 9 Jun '13 - 12:19
looks like a simple typo in the docs. will be corrected with the nedt version.
ReplyReply Reply with quoteQuote
9  Developments / BASS / Re: Better time-stretch and pitch-shift on: 6 Jun '13 - 10:44
The high-quality (professional) libs available today are actually (to my mind):
- Dirac3 (http://dirac.dspdimension.com/Dirac3_Technology_Home_Page/License.html)
and
- Zplane Elastique Pro (http://www.zplane.de/index.php?page=description-elastique)

Both are pretty expensive, but are very good in quality.
Maybe an option would be nice to have one of these included separately as a commercial implementation of it with the possibility to 'pay' for a license as needed/wanted.
ReplyReply Reply with quoteQuote
10  Developments / BASS / Re: strange behaviour in .Position2Frames on: 6 Jun '13 - 08:42
Please remove the BASS_SAMPLE_MONO flag from your "RenderStart" call - that should work ;-)
The mono flag does almost the same - as the WaveForm always assumes stereo in its calculations.
ReplyReply Reply with quoteQuote
11  Developments / BASS / Re: strange behaviour in .Position2Frames on: 5 Jun '13 - 22:02
That looks like your original stream might have used the FLOAT flag (and as such is using a 32bit resolution), while the rendering was performed using the DEFAULT flag (and as such is using a 16bit resolution).

So please see the "WaveForm.SyncPlayback(int channel)" method, which sets a playback channel to synchronize the wave form positions.
ReplyReply Reply with quoteQuote
12  Developments / BASS / Re: BASS_FX 2.4.10 on: 5 Jun '13 - 16:53
With the new version I almost every time get an AccessViolationException when calling “BASS_FX_BPM_DecodeGet”!

I call it with the following params on a decoding stream created with the FLOAT, PRESCAN, ASYCFILE and UNICODE flags:
BASS_FX_BPM_DecodeGet(chan, 31.0, 61.0, MAKEDWORD(70, 160), BASS_FX_BPM_DEFAULT, null, null);
ReplyReply Reply with quoteQuote
13  Developments / BASS / Re: WaveForm Constructor (String, WAVEFORMPROC, Control): How to stop Delegate? on: 1 Jun '13 - 23:20
Can you pls show some of your code to take a look at. Esp. how you start and stop the rendering...
ReplyReply Reply with quoteQuote
14  Developments / BASS / Re: VB-Samples dont start (Net-Api) on: 1 Jun '13 - 09:50
No, there is no way to figure that out programatically. 32bit dlls can simply be not loaded by a 64bit app.
But as you download get them seperately it it you knowing which one is 32 ans which one is 64bit.
ReplyReply Reply with quoteQuote
15  Developments / BASS / Re: VB-Samples dont start (Net-Api) on: 29 May '13 - 23:19
Them you are probably trying to load a 32bit dll into a 64bit application?
ReplyReply Reply with quoteQuote
16  Developments / BASS / Re: VB-Samples dont start (Net-Api) on: 28 May '13 - 21:10
Making just that Bass_Init change shouldn't change any other stuff.
No the samples are not provided by its own.
ReplyReply Reply with quoteQuote
17  Developments / BASS / Re: NetRadio Peak Levels on: 28 May '13 - 21:08
You might take a look to the "Simple" sample and copy the peak level code over.
Else take a look to the DSP_PeakLevel containd in the Misc namespace its docs contains various samples.
ReplyReply Reply with quoteQuote
18  Developments / BASS / Re: VB-Samples dont start (Net-Api) on: 28 May '13 - 08:58
Maybe I have forgotten to update the VB samples.
Please take a look to the Bass_Init overload signature and remove the last (Nothing) parameter.
ReplyReply Reply with quoteQuote
19  Developments / BASS / Re: [VB.NET] DetectCuePoints from decoding stream on: 16 May '13 - 20:02
The overload taking a filename is actually internally calling the other overload - so I am pretty sure it is working.
Actually the filename overload simply calls the following:
int decodingStream = Bass.BASS_StreamCreateFile(filename, 0, 0, BASSFlag.BASS_SAMPLE_FLOAT | BASSFlag.BASS_STREAM_DECODE | BASSFlag.BASS_STREAM_PRESCAN);
return DetectCuePoints(decodingStream, blockSize, ref cueInPos, ref cueOutPos, dBIn, dBOut, findZeroCrossing);
ReplyReply Reply with quoteQuote
20  Developments / BASS / Re: BASS_MIDI_MARK on: 16 May '13 - 10:12
It is an Int32 value, since native BASSmidi also defines it as an Int32 value and not an Int64 value.
ReplyReply Reply with quoteQuote
Pages: [1] 2 3 ... 202
Powered by SMF 1.1.18 | SMF © 2013, Simple Machines