20 May '13 - 07:09 *
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]
1  Developments / BASS / Re: Bass ( BPM ) on Music, that I don´t play ? on: 1 Apr '07 - 02:16
mh,

have someone the source? Link are broken.

thx.
ReplyReply Reply with quoteQuote
2  Developments / BASS / [vb6] Limit the Record-Input / Bass_FX, DAMP & Compressor on: 2 Feb '07 - 10:28
Hello again Cheesy ,

I would like to record my mixes (with a classic dj - setup, 2 turntables, one mixer) with my own program (only for education). BASSEnc are my friend!

I read some threads about AGC or Compressor (BASS_FX), but I find not a answer, if is possible to limit the record input.

I say my wish: I would like to send music over 0db (on my mixer, it display +14db [djm600]) to my program and this limit the sound to -2db. I know, I can gain on my DJ-Mixer, but in a Session, I can't gain so exactly.

Is it possible?

Thx

Michael
ReplyReply Reply with quoteQuote
3  Developments / BASS / Re: [VB6] BASS_RecordGetInputName on: 1 Feb '07 - 23:13
@Ian,

thank you, it will work fine!

The Solution

cboSoundkarte = Combobox to select Soundcard

Private Sub cboSoundkarte_Click()
Dim c As Integer

Device = CLng(cboSoundkarte.ItemData(cboSoundkarte.ListIndex))

'Bass - Bibliothek kurz inizialisieren, um weitere Daten zu erhalten
'...aber vorher ggf. alte Instanzen freigeben!

Call BASS_RecordFree
Call BASS_Free

If (BASS_RecordInit(Device) = 0) Or (BASS_Init(-1, 44100, 0, Me.hwnd, 0) = 0) Then
    Call MsgBox("Die ausgewählte Soundkarte kann nicht abgefragt werden." & vbCrLf & "Bitte installiere einen (wenn vorhanden) aktuellen Treiber oder prüfe die Systemeinstellungen.", vbCritical, "Fehler")
Else
        cboInput.Clear
        While BASS_RecordGetInputName(c)
            cboInput.AddItem VBStrFromAnsiPtr(BASS_RecordGetInputName(c))
            If (BASS_RecordGetInput(c) And BASS_INPUT_OFF) = 0 Then
                cboInput.ListIndex = c
                Device = c
            End If
            c = c + 1
        Wend
       
End If
End Sub

cboInput are the Inputs Wink

Private Sub cboInput_Click()
    If (input_ > -1) Then
        input_ = cboInput.ListIndex

        Dim i As Integer
        For i = 0 To cboInput.ListCount - 1
            Call BASS_RecordSetInput(i, BASS_INPUT_OFF)
        Next i
       
        Call BASS_RecordSetInput(Device, BASS_INPUT_ON)
       
        'Mal hören, was gerade ankommt und ggf. Pegelanzeige aktualisieren
       
        If (chan) Then
            Call BASS_StreamFree(chan)
            chan = 0
        End If
       
        RChan = BASS_RecordStart(44100, 2, BASS_RECORD_PAUSE, AddressOf RecordingCallback, 0)
       
        If (RChan = 0) Then
          Call MsgBox("Kann den ausgewählten Aufnahmekanal nicht inizialisieren.", vbCritical, "Fehler")
          Exit Sub
        End If
       
        Call BASS_ChannelPlay(RChan, BASSTRUE) 'True = Abspielen; False = Stille
       
    End If
End Sub
ReplyReply Reply with quoteQuote
4  Developments / BASS / [VB6] BASS_RecordGetInputName on: 1 Feb '07 - 11:05
Hello Community,

I think (maybe there is the problem  Wink ) I have a simple problem.

I need two Comboboxes, one with all available soundcards that have a option to record anything.
The second Combo will display all record inputs (Line, Microphone, ...) from the first selection.

I build a Sub to show all Devices (from the multi example):

Public Sub SelectDevice()
    Dim c As Integer
    frmMain.cboSoundkarte.Clear

    c = 1      ' Device 1 = 1. verfügbare Device
    While BASS_GetDeviceDescription(c)
        frmMain.cboSoundkarte.AddItem VBStrFromAnsiPtr(BASS_GetDeviceDescription(c))
        c = c + 1
    Wend

End Sub

But, my internal soundcard will make two soundcards: one for output (soundmax 0) and one for input (soundmax 1). Soundmax 1 will not displayes in combo 1.

Whatever, is it possible to select only the name of device, they have a record input and select after all available inputs?

Maybe with a little source?

Thx.

Michael

-- sorry for my bad english ---
ReplyReply Reply with quoteQuote
5  Developments / BASS / Re: Convert VBR to CBR of a MP3 on: 20 Dec '06 - 10:27
I'm still programing a tool to manage digital audio files (mp3, ogg, flac).     

I found a solution, to use my audio files faster in my virtuel turntable software (like finalsratch), when I use CBR.
The files loads faster, the waveform draws faster and its easier to handle.   

Back to my program, I will implement a optional feature to reconvert the files.

I hope, its a good reason... Wink

Thx

Michael
ReplyReply Reply with quoteQuote
6  Developments / BASS / Re: Convert VBR to CBR of a MP3 on: 19 Dec '06 - 12:20
mh,

is it a problem to convert to 320kbps (or the highest value @ vbr)?

Greets,

Michael

ReplyReply Reply with quoteQuote
7  Developments / BASS / Convert VBR to CBR of a MP3 on: 18 Dec '06 - 10:21
Hello,

is it possible, to convert a MP3-File from VBR to CBR?

I see only the way, to convert the vbr to wav and then convert (with lame) to cbr.

There are another way, too?

There are things, which I must consider?

Thank you.

Michael
ReplyReply Reply with quoteQuote
Pages: [1]
Powered by SMF 1.1.18 | SMF © 2013, Simple Machines