SteffeyDev / atemOSC

Control ATEM video switchers over the network with OSC messages
http://www.atemosc.com
202 stars 32 forks source link

Audio control #179

Closed netracer24 closed 3 years ago

netracer24 commented 4 years ago

I recently tried to control the audio inputs via a midi controller with faders. It appears that the only controls for audio is jumping from gain +1 to +2 to +3 to +4 to +5 to +6 and that is it. Anything below That mutes. Is there anyway to get a finer control than jumping a whole dB? Also is there any way to take the gain lower than zero? Often times zero (unity) is still way too much. I want to end this comment by all other control has been great so far! I am using an atem switcher

randallpacker commented 4 years ago

The audio inputs go from -60. to 0., and off the top my head I believe floating point.

From: netracer24 notifications@github.com Reply-To: danielbuechele/atemOSC reply@reply.github.com Date: Tuesday, September 29, 2020 at 3:40 PM To: danielbuechele/atemOSC atemOSC@noreply.github.com Cc: Subscribed subscribed@noreply.github.com Subject: [danielbuechele/atemOSC] Audio control (#179)

I recently tried to control the audio inputs via a midi controller with faders. It appears that the only controls for audio is jumping from gain +1 to +2 to +3 to +4 to +5 to +6 and that is it. Anything below That mutes. Is there anyway to get a finer control than jumping a whole dB? Also is there any way to take the gain lower than zero? Often times zero (unity) is still way too much. I want to end this comment by all other control has been great so far!

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or unsubscribe.

netracer24 commented 4 years ago

The only values I could get it to change is 0,1,2,3,4,5,6. Not sure what to do.

http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail Virus-free. www.avg.com http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Tue, Sep 29, 2020 at 3:59 PM Randall Packer notifications@github.com wrote:

The audio inputs go from -60. to 0., and off the top my head I believe floating point.

From: netracer24 notifications@github.com Reply-To: danielbuechele/atemOSC reply@reply.github.com Date: Tuesday, September 29, 2020 at 3:40 PM To: danielbuechele/atemOSC atemOSC@noreply.github.com Cc: Subscribed subscribed@noreply.github.com Subject: [danielbuechele/atemOSC] Audio control (#179)

I recently tried to control the audio inputs via a midi controller with faders. It appears that the only controls for audio is jumping from gain +1 to +2 to +3 to +4 to +5 to +6 and that is it. Anything below That mutes. Is there anyway to get a finer control than jumping a whole dB? Also is there any way to take the gain lower than zero? Often times zero (unity) is still way too much. I want to end this comment by all other control has been great so far!

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or unsubscribe.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/danielbuechele/atemOSC/issues/179#issuecomment-700953037, or unsubscribe https://github.com/notifications/unsubscribe-auth/AN77QVTCDPA3JXZMNVLVNCTSII4CDANCNFSM4R6GY7UQ .

-- Cory Sprenkle 757-255-8711 corysprenkle@gmail.com https://www.facebook.com/cory.sprenkle.7 http://instagram.com/cory_sprenkle https://twitter.com/CorySprenkle

bnmohr commented 4 years ago

as randall mentioned, values are -60 to +6, are you remapping the midi values 0-127 to be -60 to +6? Sounds like you are not sending any negative values?

randallpacker commented 4 years ago

Also, you need to you floating point values from -60.0 to 0.0 (plus the additional +6.0 headroom).

netracer24 commented 4 years ago

Oh. I guess I need to figure out how to send negative values. I am sending 0-127... I am using isadora to do it.

On Tue, Oct 6, 2020 at 7:56 AM Randall Packer notifications@github.com wrote:

Also, you need to you floating point values from -60.0 to 0.0 (plus the additional +6.0 headroom).

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/danielbuechele/atemOSC/issues/179#issuecomment-704218670, or unsubscribe https://github.com/notifications/unsubscribe-auth/AN77QVSGYMPWZVJTEWYV3Z3SJMAX3ANCNFSM4R6GY7UQ .

-- Cory Sprenkle 757-255-8711

netracer24 commented 3 years ago

I figured it out. My error. Thanks! Your information helped!

On Tue, Oct 6, 2020 at 8:04 AM Cory Sprenkle corysprenkle@gmail.com wrote:

Oh. I guess I need to figure out how to send negative values. I am sending 0-127... I am using isadora to do it.

On Tue, Oct 6, 2020 at 7:56 AM Randall Packer notifications@github.com wrote:

Also, you need to you floating point values from -60.0 to 0.0 (plus the additional +6.0 headroom).

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/danielbuechele/atemOSC/issues/179#issuecomment-704218670, or unsubscribe https://github.com/notifications/unsubscribe-auth/AN77QVSGYMPWZVJTEWYV3Z3SJMAX3ANCNFSM4R6GY7UQ .

-- Cory Sprenkle 757-255-8711

-- Cory Sprenkle 757-255-8711

SteffeyDev commented 3 years ago

Glad you got it figured out! Thanks @randallpacker and @bnmohr