THE PROPER USE OF EQUALIZER IN CREATIVE CONSOLES (Additional artic

As pointed out rightly ?Maddmatt? exists a difference in the graduation of level slider in equalizer section between Entertainment Mode console and Audio Creation Mode console (the second appears on the photos in my web page), while in the Game Mode console is same with the graduation in Audio Creation Mode console.
I apologize for the omission and thank that him you reminded to me, because i have not used never the Entertainment Mode or the Game Mode console. You have right and your observation is correct. Maddmatt Bravo!
The explanation is simple, as the graduation in practice is same.
) In Audio Creation mode the gain varies from +2dB max to -2dB min thus the
sum is: Av = +2dB-(-2dB) = +2dB+2dB = 24dB total
2) In Entertainment mode similarly the gain varies from 0dB max to -24dB min thus the sum is: Av = 0dB-(-24dB) = 0dB+24dB = 24dB total
And because they are equal numerically between them, we can make this equivalence:
-24dB ? -2dB
-2dB ? 0dB
0dB ? +2dB
With few words, make the same exactly with the level slider as in Audio Creation
Mode console equalizer and in Entertainment Mode console equalizer, as show the photographs in my web page at URL
http://www.eal.gr
Align level slider with the more highly lifted frequency slider.Message Edited by fotios on -30-200608:39 AM

I apologize for the omission and thank that him you reminded to me, because i have not used never the Entertainment Mode or the Game Mode console. However from that i see the level slider at Game Mode it has same graduation as in Audio Creation Mode console and the difference exists only in the Entertainment Mode console. You have right and your observation is correct. Madmatt Bravo!
The explanation is simple, as the graduation in practice is same.
) In Audio Creation mode the gain varies from +2dB max to -2dB min thus the
sum is: Av = +2dB-(-2dB) = +2dB+2dB = 24dB total
2) In Entertainment mode similarly the gain varies from 0dB max to -24dB min thus the sum is: Av = 0dB-(-24dB) = 0dB+24dB = 24dB total
And because they are equal numerically between them, we can make this equivalence:
-24dB ? -2dB
-2dB ? 0dB
0dB ? +2dB
With few words, make the same exactly with the level slider as in Audio Creation
Mode console equalizer and in Entertainment Mode console equalizer, as show the photographs in my web page. Align level slider with the more highly lifted frequency slider.

Similar Messages

  • THE PROPER USE OF EQUALIZER IN CREATIVE MIXING CONS

    At this moment, as i hear music from my P.C. with the Creative Media Source Player and try to correct the sound from the Equalizer of Creative Mixer Console, i remembered an important detail. As we see in equalizer exist eleven sliders, ten for each frequency and one for the level at finish right. The use of ten is known from all, but the use of eleventh ? the level ? who is in the practice when it exists also the master volume control? In any case it is not unnecessary and from as long as i know most they do not know using rightly. The level slider, in contrast to ten sliders of each frequency each one of that cut or lift the gain of signal in a narrow frequency band from -2 to +2 dB, with his order cut or lift the overall gain of the ?equalized signal? the named ?Headroom?. With few words, after the equalization of signal in order that we like the sound, our final action it should be the placement of the level slider at the same point where it is found the ?more highly lifted? of the ten frequency sliders. For example, if the slider of 8 KHz it has been lifted more highly by all other sliders and is located at +0 dB, it should we place also the level slider at +0 dB. Second example: we suppose that we want a flat equalization (all sliders in straight line at 0 dB) in sequence the level slider should it is placed at 0 dB also. I hope it has become comprehensible the difference of use of the level slider and the master volume knob. The level slider serves for the recovery of the initial volume of signal before the equalization process because she changes him during the correction, and this exactly called ?equalization?. The master volume is simply ?the master volume?. And finally keep in mind that all above them are also in effect for all equalizer devices.

    I apologize for the omission and thank that him you reminded to me, because i have not used never the Entertainment Mode or the Game Mode console. However from that i see the level slider at Game Mode it has same graduation as in Audio Creation Mode console and the difference exists only in the Entertainment Mode console. You have right and your observation is correct. Madmatt Bravo!
    The explanation is simple, as the graduation in practice is same.
    ) In Audio Creation mode the gain varies from +2dB max to -2dB min thus the
    sum is: Av = +2dB-(-2dB) = +2dB+2dB = 24dB total
    2) In Entertainment mode similarly the gain varies from 0dB max to -24dB min thus the sum is: Av = 0dB-(-24dB) = 0dB+24dB = 24dB total
    And because they are equal numerically between them, we can make this equivalence:
    -24dB ? -2dB
    -2dB ? 0dB
    0dB ? +2dB
    With few words, make the same exactly with the level slider as in Audio Creation
    Mode console equalizer and in Entertainment Mode console equalizer, as show the photographs in my web page. Align level slider with the more highly lifted frequency slider.

  • How to desynchronize the Creative console with Windows?

    In the Console, under the Speakers tab, there is supposed to be a button to select synchronization with Windows (edit: it's called "Synchronize with Control Panel"). I am using an X-Fi XtremeGamer Fatal1ty Pro, and have the latest drivers/console launcher. However, there is no such button. I recall seeing it years ago when I bought this card, but it's not there now. It's just an empty area where the button is supposed to be.
    I have read that in order to use CMSS headphone surround in games, I need to set the console to headphones with CMSS enabled, and then set Windows to 7.1. How can I do this without this button being available?
    Thanks for any help.

    Can someone please do me a favor at least. Anyone here using Windows 7 64-bit and have an X-Fi XtremeGamer card? Do you have a "synchronize with control panel" in the Speakers tab of the Game Mode panel of your Creative Console?

  • Proper Use Of Sessions

    Hi everyone,
    My fellow developers and I were having a discussion as to the proper use of sessions in a web application built with Servlets. The situation was we were building a method to get search results from a database and we wanted to have the ability to limit the number of results displayed per page.
    One method of doing this was to get the entire search result, load that into a hashtable or some other data structure, and put that into a session variable to preserve the hashtable.
    The other method was to re-query the database every time the person clicked the 'view next' button and get a new result set every time.
    I tend to favor the use of session variables to maintain the ResultSet...as I was taught that database connections are expensive and should be limited. However, according to one of the other developers, storing objects (especially when they are potentially large) in session variables is not recommended.
    So what do you guys think? Should be store large objects in session variables, or should we re-query the database every time the person loads the page?
    As a side note, the servers we use are quite robust, but we know that that is not an excuse to write in-efficient code.

    Its a trade off between memory and database access.
    Storing stuff in session is expensive in terms of memory.
    The more stuff you store in session, the more overhead there is with each user of the system.
    Querying the database each time saves you memory on the app server, but means more work for the database.
    Which is better? As always it depends.
    - How many users are projected for the system? More users means you want to keep the session as light as possible.
    - Is the query is hugely expensive to run? A long running query that only returns a few records - you would want to cache that in session.
    - Are you able to limit the result set data returned via the database? Some database support this, some don't. ie if you did a database query each time would you have to step through "5 pages" of data to get to display the "6th" page, or could you just get the data for page 6 using row numbers?
    Database connections themselves aren't that expensive to acquire if you are using connection pooling, but they are still a limited resource.
    Hope that helps some,
    evnafets

  • Proper use of Field symbol .. please help

    what is the proper use of field symbol in sap abap ?
    Moderator Message: Please do a proper search for such basic questions.
    Edited by: kishan P on Sep 13, 2010 4:01 PM

    hi Gopal,
    The parameter is used to color a cell in ALV grid.
    See this example how it is used
    http://www.sap-img.com/abap/line-color-in-alv-example.htm
    take a closer look at the code where the info is passed
    MOVE 'MATNR' TO wa_color-fname.
            MOVE '6'         TO wa_color-color-col.
            MOVE '1'         TO wa_color-color-int.
            MOVE '1'         TO wa_color-color-inv.
            APPEND wa_color TO it_color.
    Cheers
    VJ
    If it helps dont forget to mark points

  • Proper use of stacked sequence structure

    Hello
    I have been reading this forum up and down, trying to figure out what the proper use of a stacked sequence struckture is.
    The reason i ask was that almost evryone in this forum thinks it is miss used / and or hides code. And that there is berrer ways of doing it.
    I ask this question, wondering what is the PROPER use of SSS?
    attached is the code so you can see what i am doing. As you will see, the code in the SSS are all the same for each frame, only channel number and numeric indicator is different, making upscaling more efficiant.
    Faster readings is not an issue since i will be slowing it down later on, so we get a visual value evry 5-10 seconds or so.
    keep in mind i am a novice at LabView, and all input is much appreciated.
    Attachments:
    r read 1ch.vi ‏52 KB

    TorbH wrote:
    I tried using array as you showed, but i fail to get it to work properly, well it works as it should but i want it to be able to stop with a button, when i did that only channels 202 - 206 stopped. 201 kept going.
    The reason for me to have this opportunity is that later i will connect channels 207-212. and they also will need to be started/stopped seperatly.
    Put the stop button inside of the loop.  The button is read with the terminal.  The terminal is read outside of the loop, so it will have the same value for every iteration of your loop.  By moving the terminal inside of the loop, your terminal will be read every iteration and you can therefore abort the loop.
    TorbH wrote:
    Also, frome here on out, how would i go ahead and use the data? Can i in a "state machine" use several for loops to perform the same tasks as i had in my previous version?
    A state machine is actually just a single loop.  You can use a state macine with other loops, you just need to be careful of how you pass the data around.
    State Machine
    Producer/Consumer
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Proper use of Iphone

    Does anyone know here the proper use of Iphone?
    1. Im wondering if it's okay if we expose it to sunlight? or sun raise?(walking in the street)
    2. and in Charging mode. we cannot safely remove the iphone in the Computer if its fully charge, is it safe to remove the usb without doing the safely remove?
    3. Is it okay if we charge it overtime? (ex. if we forgot to remove it?)

    1. Im wondering if it's okay if we expose it to sunlight? or sun raise?(walking in the street)
    Not a problem but you don't want to expose an iPhone to extreme heat such as being left in a vehicle.
    2. and in Charging mode. we cannot safely remove the iphone in the Computer if its fully charge, is it safe to remove the usb without doing the safely remove?
    Not required. When the iPhone is connected to your computer, it is not connected as an external drive which requires being ejected or safely removed before being disconnected from the computer.
    3. Is it okay if we charge it overtime? (ex. if we forgot to remove it?)
    Yes. Doing so will not cause any damage.

  • What should be the proper steps to un-installed CS6 creative suite from an old computer and re-installed onto new computer ?

    I would like to un-install and re-install CS6 Creative Suite onto a new computer.
    What are the proper steps required; in particular for the license code ?
    I worry if I don't do it properly I may not be able to re-activate on my new computer.
    Thanks,

    You do not need to uninstall though you can if you prefer to.  Your license allows you to have two activated installations, so if having a backup installation available is something you could use, you might want to keep the original installation intact.
    If you do not want the old installation in working order then the minimum you need to do is deactivate it by opening one of the programs and choosing Help -> Deactivate.  This will deactivate the entire suite for that machine.  You could leave it this way as the use of the applications is disabled at this point, except if you wish to you can reactivate it.  If you wish to uninstall you should be sure that you perform the deactivation first.
    As far as getting the software on the new machine goes, you install it the same way you did originally, using the serial number to activate it.

  • Creative Console Launcher EQualizer affects nothing

    ? Hey people!
    I recently purchased Creative Sound Blaster X-Fi Xtreme Gamer sound card and Onkyo receiver. For first, sound was analogue connected (you know, like not digital) from my computer to the receiver with cable which had x 3.5mm plug and 2 x rca plugs. Afterwards I decided to make it digital, so I bought an optical cable. Everything works ok, but now the Creative Console Launcher application's equalizer (EQ) won't affect any sound at all in my computer. It doesn't change anything. For example, winamp's eq still works fine, but I need an eq that affects the whole computer's sounds: games, movies, music and all that stuff.
    So I don't know what to do here. Already reinstalled the console and the drivers.
    Any help would be appreciated.
    (sry 'bout bad english)
    (Console Launcher Version is currently 2.60.35 and i have Windows 7 Ultimate 64 bit installed on my PC)

    My Friend ?neither equalizer, eax effects, crystalizer,nothing on concole launcher options works on digital output(SPDIF)
    these options just works on analogue sound mode

  • Creative Console Launcher - what's the difference?

    What additional features does Creative Console Launcher have compared to the creative audio control panel that is installed with the driver automatically? It seems that the panel has all the main settings available. Why would anyone want to use the "console launcher" (funny name for such an app) instead?
    The OS is Win XP Pro SP3 x86 and the card is PCI Express X-Fi Titanium Fatalty Pro Series.

    with the audio control panel you can't control the eq at all and you cant control the sample rate in audio creation mode but you can control the sample rate for game mode which is not possible with console launcher.

  • How can I use 2 Apple IDs in Itunes? I have 2 IOS Devices. They each have there own AppleID. What is the proper way to sync both of them to Itunes?

    How can I use 2 Apple IDs in Itunes? I have 2 IOS Devices. They each have there own AppleID. What is the proper way to sync both of them to Itunes? I wanted my teenager's AppleID to be different from mine so that she couldn't charge stuff to my AppleID, therefore I created me another one. Now when I go to Sync either device, it tells me that this IOS device can only be synced with one AppleID. Then I get a message to erase it, not going to do that, lol. If I logout as one ID and login as the other, will it still retain all synced information on the PC from the first IOS device? If I can just log in out of the AppleID, then I have no problem doing that as long as the synced apps, music, etc stays there for both. I am not trying to copy from one to the other, just want to make sure I have a backup for the UhOh times. If logging in and out on the same PC of multiple AppleIDs is acceptible then I need to be able to authorize the PC for both devices. Thanks for the help. I am new to the iOS world.

    "Method Three
    Create a separate iTunes library for each device. Note:It is important that you make a new iTunes Library file. Do not justmake a copy of your existing iTunes Library file. If iTunes is open,quit it.
    This one may work. I searched and searched on the website for something like this, I guess I just didn't search correctly, lol. I will give this a try later. My daughter is not be back for a few weekends, therefore I will have to try the Method 3 when she comes back for the weekend again. "
    I forgot to mention that she has a PC at her house that she also syncs to. Would this cause a problem. I am already getting that pop up saying that the iPod is synced to another library (even though she is signed in with her Apple ID to iTunes) and gives the pop up to Cancel, Erase & Sync, or Transfer Purchases. My question arose because she clicked on "Erase & Sync" by mistake when she plugged the iPod to her PC the first time. When the iPod was purchased and setup, it was synced to my PC first. When she went home, she hooked it up to her PC and then she erased it by accident. I was able to restore all the missing stuff yesterday using my PC. However, even after doing that it still told me the next time I hooked it up last night that the iPod was currently synced with a different library. Hopefully, you can help me understand all this. She wants to sync her iPod and also backup her iPod at both places. Both PCs have been authorised. Thanks

  • How can I make the browser use the proper filename during a forced save, using CFCONTENT/CFHEADER

    We have a client using CF8 Server for a site and I am using the CFHEADER/CFCONTENT method to force a file to save to the end-user's computer.
    The dialogue comes up as expected, but regardless of what is found in the CFHEADER for a filename, it tries to save the file as the CFM page name.
    i.e. The CFM page is signature.cfm. I am trying to make it save a TXT file to the user's computer, which it seems to be trying to do, but the instead of using "sig.txt" as the filename as outlined in the CFHEADER, it is defaulting to "signature.cfm"
    While I know that I could change the name and extension and the content in the file would be correct, the mass majority of end-users will not know that they can do that, and the client does not want it to become more complicated than necessary.
    Is there a way to make the file change to the proper name in the SAVE AS dialogue?
    Thanks in advance.
    Code so far is pretty straight forward ...
    <CFHEADER name="Content-Disposition" value="attachment; filename=sig.txt">
    <CFCONTENT type="application/unknown" file="#xf#">

    I'm guessing the type="application/unknown" is interfering. Try type="text/plain".

  • I am trying to use a interactive form and it says "If this message is not eventually replaced by the proper contents of the document, your PDF  viewer may not be able to display this type of document."  This is a IRS form and has worked before.

    I am trying to use a interactive form and it says "see below"  This is a IRS form and has worked before.
    is there a tech support phone number?
    Please wait...
    If this message is not eventually replaced by the proper contents of the document, your PDF
    viewer may not be able to display this type of document.
    You can upgrade to the latest version of Adobe Reader for Windows®, Mac, or Linux® by
    visiting http://www.adobe.com/go/reader_download.
    For more assistance with Adobe Reader visit http://www.adobe.com/go/acrreader.
    Windows is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. Mac is a trademark
    of Apple Inc., registered in the United States and other countries. Linux is the registered trademark of Linus Torvalds in the U.S. and other countries

    That means you are looking at the form online with a browser that uses its own (incompatible) PDF viewer, not the Adobe Reader plugin.
    Either
    download the form to your local disk and fill it from there
    use a browser that employs the Adobe Reader plugin
    configure your browser to use the Adobe Reader plugin: http://helpx.adobe.com/acrobat/kb/pdf-browser-plugin-configuration.html

  • We have two users that have been using Creative Cloud for almost a year. Recently, sometime in the last 4ish weeks, the users can no longer run Creative Cloud apps. (Yes, our subscription is paid.) Error simply says administrator access is required

    We have two users that have been using Creative Cloud for almost a year. Recently, sometime in the last 4ish weeks, the users can no longer run Creative Cloud apps. (Yes, our subscription is paid.) Error simply says administrator access is required to install. The apps have already been installed. The users cannot run them unless they are in the local admin group.Using "Run as admin" does not work. It gives the same error.
    I have opened a case with adobe support and was basically told to suck it up and put the users in the admin group. Actually, what was said was that it is "mandated that the users have administrative rights". 
    There are a couple of things wrong with this. It was working for both users until recently - a recent required creative cloud update. The users have never been local admins yet the apps were working (poorly, but working).
    We are in an enterprise environment and users simply do not have administrative rights on the computers.
    I have changed permissions on all adobe folders, granting users or authenticated users modify or full control rights, did the same in whatever Adobe registry HKLM keys I could find. Nothing has allowed the users to run the apps - unless they are put in the local admin group.
    Someone has to have a fix for this. Adobe apps have proved to have far too many vunerabilities to even entertain the idea of elevating user rights. I can't imagine that enterprise environments are allowing this.
    Any help or suggestions are greatly appreciated.

    Jeff,
    Thank you for your response. The users in question are "standard" domain users. We do not reduce users permissions below the standard level.
    The apps do not load with their current standard user permissions.
    The thing that makes this odd, is that up until recently they did this issue with cloud apps. The only way I can make it work for them now is to put them in the local administrator group on their pc's - which is not going to happen.
    This is what they now see. As I said before, this was not a problem up until recently they would see all their available apps. If I put them in the local admin group the apps are listed without having to install. Everything is there, just not accessible to the user.

  • I have Lightroom 6 (not CC) on a Windows machine.  I'm prompted to log into Creative Cloud when I restart my computer (I don't have, use, or pay for Creative Cloud), and then when I launch Lightroom, it tells me to use the application I have to log into m

    I have Lightroom 6 (not CC) on a Windows machine.  I'm prompted to log into Creative Cloud when I restart my computer (I don't have, use, or pay for Creative Cloud), and then when I launch Lightroom, it tells me to use the application I have to log into my Adobe account...AGAIN!  And then to further add insult to injury, I'm prompted to enter in the license number of my product.  I've gone through this process a dozen times now...SCREAM!!!

    Paulou12 what type of a Creative Cloud Membership do you have?  You can find details on how to update Lightroom using the Creative Cloud Desktop application at Install and update apps - https://helpx.adobe.com/creative-cloud/help/install-apps.html.
    Finally if you are in a managed environment then please work with your I.T. department to apply the update.

Maybe you are looking for

  • ABAP Dump issue while accessing Gateway

    Hi We have recently upgraded our Gateway server to SP03. Eversince after service generation while accessing the XML/Metadata from the consumption page we get an HTTP error with Dump. Has anyone faced this problem before.   <?xml version="1.0" encodin

  • External drive corruption after 10.8.5 update

    Hi, After the upgrade to 10.8.5. my Mini server at home, which had been running for months on end without a hitch prior to that, started having big problems. I have a late 2012 Mini, with a Sharkoon 5 disk cabinet hooked up through USB3.0. The cabine

  • G4 AGP running OSX doesn't boot from original OS 9.0 CD

    I need to re-install OS9.0.4 on my g4 using the original CD. i cant open software install or restore, because Classic is not there. I cant boot from the CD's either. I tried pressing c on boot, setting the boot disk in system preferences - the blue f

  • Load .flv into empty symbol?

    hi is it possible to load an .flv file into a symbol? i know it is possible with a .swf file. but it does not seem to work with an flv. am i doing somethiing wrong or is it not supposed to work? basically i am trying to make different movies load int

  • Exent AOD Gecko Plugin Exent AOD Gecko Plugin - What is this & how do I update it?

    When I check to see if my plugins are updated, this one is listed as an unknown plugin. Researching doesn't really seem to tell me exactly what this plugin is, why I have it or how to update it.