Why are all the sound levels so different!?? With VST's and in Ultrabeat...

I'm having so much trouble with the audio levels in logic pro. It seems every VST has a completely different level when the volume on the vst is set to 100. Miroslav Philharmonik is EXTREMELY quiet..., and when I load drums into ultrabeat, they immediately peak like crazy. I tried loading my drums up in battery 3 after that, and all the drums where extremely quiet compared to my other vst's YET it showed in the mixer that they were peaking????? I don't understand what's happening, I know you have to mix but this never happened in any other daw that I've used.

I'm having so much trouble with the audio levels in logic pro. It seems every VST has a completely different level when the volume on the vst is set to 100. Miroslav Philharmonik is EXTREMELY quiet..., and when I load drums into ultrabeat, they immediately peak like crazy.
It's one of a the reasons mixers have volume controls.
Seriously - an orchestral instrument is likely to have hundreds of parts all playing at once. If each part was designed to hit close to 0dB, then it would be impossible to do anything as the resultant mix would be massively loud - you'd have to turn everything down all the time.
Drums are probably going to be peaking fairly loud in a mix, as they do contain a lot of the energy.
There is no standard. A mono synth will often have hotter levels than a polysynth part, as the polysynth could be playing 8-32 voices all at once. Also, different patches, and different instruments themselves will be programmed to have different volume levels.
This is all true regardless of DAWs, and is nothing specifically to do with Logic.
All all the instruments, and mixer channels have volume controls, to let you control their volume and place them where they need to be for your needs.

Similar Messages

  • In iTunes under my device, under the apps tab, Why are all the options shaded out?  I cannot make any changes, select any apps or do anything with the apps.  I was able to load a few apps and sync but cannot sync anymore to my phone.

    In iTunes under my device, under the apps tab, Why are all the options shaded out?  I cannot make any changes, select any apps or do anything with the apps.  I was able to load a few apps and sync but cannot sync anymore to my phone.

    Hi,
    ( I search for iChat questions when I have finished in the iChat Forum)
    So the menu bar reads iChat, File,  Edit,  View, Buddies, Video, Window and Help
    There is no Buddy List open.
    There is no other window for iChat open.
    In the iChat Menu you only have access to Status.
    Is an item ticked in the list ?
    Is this a green (Available item) or  Red ( an Away one) ?
    Can you access the Accounts option ?  (Sitll in the iChat Menu)
    Is anything in here ticked ?
    In the Window menu any Logged in account should appear in the list  (Between the Next Chat and File Transfer items)
    It would be useful to know which version of iChat this is.
    If no account is ticked (iChat Menu > Accounts) or not showing in the Window Menu, plus you cannot determine the Status and you cannot access the Preferences then you need to access your Home Folder/Library/Preferences
    As the Library in the Home Holder is Invisible in Lion you will need the Finder's Go Menu > Go to Folder option  (you can use it in earlier OS versions if you want)
    Type in:-
    ~/Library/Preferences
    Find the file called com.apple.ichat.plist
    Drag it to the Trash and Restart iChat.
    This will lose all the settings in iChat that you have changed from Defaults but there is no way around this.
    9:23 PM      Saturday; August 27, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Why are all the events in the XML SAX parser not activated?

    Hi everyone,
    I have written a mini server that parses XML files into SQL queries.
    Below is a segment of my code;
              try          {                                                       
                   Class.forName( JDBC_DRIVER );
                   myConnection = DriverManager.getConnection( DATABASE_URL, "username", "password");                                                  
                   EventXMLParser myEXP = new EventXMLParser(directory, myConnection);
                   File[] xmlFiles = directory.listFiles();
                   for (File xmlFile : xmlFiles)               {     
                        myEXP.XMLtoDB(xmlFile);
                        outWriter.println("File:" + xmlFile.getName() + " DONE");
              } catch (SQLException e)     {
                   System.err.println("SQLException for establishing connection");
                   e.printStackTrace();
              } catch (ClassNotFoundException e)     {
                   System.err.println("CLASS NOT FOUND EXCEPTION HERE");
                   e.printStackTrace();
              } catch (Exception e)     {
                   System.err.println(e);
                   e.printStackTrace();
              finally {
                   outWriter.println("PARSING COMPLETED");
                   outWriter.close();
         }Where the constructor EventXMLParser constructs the following:
         public EventXMLParser(File path, Connection connection)     {
              super();
              try     {
                   this.XMLpath = path;
                   this.db_connection = connection;
                   this.xr = XMLReaderFactory.createXMLReader();
                   this.XMLSAXhandler  = new DefaultHandler(); //create a new own handler
                   this.xr.setContentHandler(XMLSAXhandler);
                   this.xr.setErrorHandler(XMLSAXhandler);
                   //System.out.println("DEBUG: db_connection is " + db_connection.toString());
              catch (Exception e)     {
                   System.out.println("Constructor Error!");
                   e.printStackTrace();
         }Below are all my helper methods within EventXMLParser.java
         public void XMLtoDB(String XMLpath) throws Exception  {
              try     {
                   //Input
                   System.out.println("XMLpath is : " + XMLpath);
                   /*FileReader r = new FileReader(XMLpath); debug
                   InputSource in = new InputSource(r);
                   xr.parse(in);
                   xr.parse(XMLpath);
                   /* Note that while parsing, the end of each event, </event>
                    * will trigger sendSQL to execute the query on the database
              catch (Exception e)     {
                   throw new Exception("Error with XMLtoDB!! Exception: " + e);
         public void sendSQL(Event event, Connection sql_connection) throws SQLException     {
                   //JDBC part
                   try     {
                        System.err.println("DEBUG sendSQL");
                        Statement sql_statement = sql_connection.createStatement();
                        ResultSet resultSet = sql_statement.executeQuery( event.toSQL() );
                   catch (SQLException e)     {
                        e.printStackTrace();
         /* Parsing XML
          * From here onwards it's all designed for the SAX Parsing with different event calling methods
         public void startDocument()     {
              System.err.println("Start Document");
         public void endDocument()     {
              System.err.println("End Document");
         public void startElement(String uri, String name, String qName, Attributes atts)     {
              CurrentElement= name;
              System.out.println("This is parsing");
         public void characters(char ch[], int start, int length)     {
              SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
              StringBuffer sb = new StringBuffer();
              for (int i = start; i < start + length; i++)     
                   sb.append(ch);
              String content = sb.toString();
              if (CurrentElement.equals("eid"))
                   temp.setEventID( (Integer.valueOf(content)).intValue() ) ;
              else if (CurrentElement.equals("sd"))
                   temp.setShort_description(content);
              else if (CurrentElement.equals("ld"))
                   temp.setLong_description(content);
              else if ( (CurrentElement.equals("dt")))
                   temp.setDate_Time( formatter.parse(content, new ParsePosition(0)) );
              else if (CurrentElement.equals("repeat"))
                   temp.setRepeat_pattern( (Integer.valueOf(content)).intValue() );
              else if (CurrentElement.equals("valid"))
                   temp.setValid_period(content);
              else if (CurrentElement.equals("status"))     {
                   temp.setStatus( (Integer.valueOf(content)).intValue() );
              else {}
         public void endElement(String uri, String name, String qName)     {
              System.err.println("DEBUG" + temp.toString()); /*debug*/
              if (name.equals("event"))     {
                   try     {
                        /*debug*/ temp.setUserID(1);
                        /*debug*/ System.err.println("DEBUG: " + temp.toString());
                        sendSQL(temp, db_connection);
                        //temp = new Event();
                   catch (SQLException e)     {
                        System.err.println(e);
                   }//end catch
              }//end try
    Where event is a public class Event     {
         //fields
         private int userID = 1; // = 1 only applies for testing
         private int eventID;
         private String short_description;
         private String long_description;
         private Date date_time = null;
         private int repeat_pattern;
         private String valid_period;
         private int status;     //1 for new, 0 for modification and -1 for delete
         SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
         //Constructors
         //every event requires the following: userID eventID and short_Description
         public Event(int uID, int eID, String shortDescrp)     {
              setUserID(uID);
              setEventID(eID);
              setShort_description(shortDescrp);
         public Event(int uid, int eid, String sd,
                                  String ld, Date d_t, int r_p, String v_p, int s)     {
              setUserID(uid);
              setEventID(eid);
              setShort_description(sd);
              setLong_description(ld);
              setDate_Time(d_t);
              setRepeat_pattern(r_p);
              setValid_period(v_p);
              setStatus(s);
         //set
         public void setUserID (int x)                         { this.userID = x ;}
         public void setEventID (int x)                         { this.eventID = x ;}
         public void setShort_description (String x)          { this.short_description = x ;}
         public void setLong_description (String x)          { this.long_description = x ;}
         public void setDate_Time(Date x)                    { this.date_time = x ;}
         public void setRepeat_pattern (int x)               { this.repeat_pattern = x ;}
         public void setValid_period (String x)               { this.valid_period = x ;}
         public void setStatus (int x)                         { this.status = x; }
         //get
         public int           getUserID()                              { return this.userID;}
         public int           getEventID()                         { return this.eventID;}
         public String      getShort_description()               { return this.short_description;}
         public String      getLong_description()               { return this.long_description;}
         public Date        getDate_Time()                         { return this.date_time;}
         public int         getRepeat_pattern()                    { return this.repeat_pattern;}
         public String      getValid_period()                    { return this.valid_period;}
         public int           getStatus()                              { return this.status; }
         //Event to SQL statements;
         public String toSQL()     {
              StringBuffer sb = new StringBuffer();
              ///if ( status == 1)     {
                   sb.append( "INSERT INTO events SET" );
                   sb.append( " userID = " + userID + ", ");
                   sb.append( "eventID = " + eventID + ", " );
                   sb.append( "short_description = " + "\'" + short_description + "\'" + ", "); //String
                   sb.append( "long_description = " + "\'" + long_description + "\'"  + ", "); //String
                   sb.append( "date_time = " + "\'" + formatter.format(date_time) + "\'" + ", ");
                   sb.append( "repeat_pattern = " + repeat_pattern + ", " );
                   sb.append( "valid_period = " + "\'" + valid_period + "\'" ); //String
                   sb.append( ";");
              //} else if ( status == 2)      {
              System.err.println(sb.toString());
              return sb.toString();
    }     My question is: I have taken my SQL query generated by toSQL() method in events and it worked.
    Here is the funny thing:
    Everything is correct syntax wise: No complaints what soever
    The mysql part works: Tested separately.
    So I tend to think that the problem lies within the SAX parser. I have written SAX2 parsers on this machine before and they have worked too. I tried inserting println statements all over startElement endElement etc etc only to find out that the SAX parser did not call any of the methods that I overided!! Why is that so?
    Can you guys spot where my SAX parser fails?

    I see.
    I try to correct this problem by removing super();
    so right now my code looks like this:
         static Event temp = new Event(0, 0, "null", "null", new Date(), 0, "null", 0);
         static String CurrentElement = null;
         static File XMLpath;
         static Connection db_connection;
         static XMLReader xr;
         static DefaultHandler XMLSAXhandler; 
         //Constructor,      Build the SAX Parser
         public EventXMLParser(File path, Connection connection)     {
              try     {
                   this.XMLpath = path;
                   this.db_connection = connection;
                   this.xr = XMLReaderFactory.createXMLReader();
                   this.XMLSAXhandler  = new DefaultHandler(); //create a new own handler
                   this.xr.setContentHandler(XMLSAXhandler);
                   this.xr.setErrorHandler(XMLSAXhandler);
                   //System.out.println("DEBUG: db_connection is " + db_connection.toString());
              catch (Exception e)     {
                   System.out.println("Constructor Error!");
                   e.printStackTrace();
         }This time, I created a new instance of default handler() which can be referenced by as the objects's XMLSAXhandler. However, that did not solve the problem, why does the problem still persist?
    Right now, there is only one instance of a default handler created. So why does all my parsing event functions still get ignored?

  • Why are all the volume sliders resetting to zero when I enable recording on my tracks?

    That's basically all there is to it. I have 8 drum tracks all set at different input levels but when I record-enable the tracks all the volume sliders rest to zero in the mixer. This has never happened before!

    I'm having so much trouble with the audio levels in logic pro. It seems every VST has a completely different level when the volume on the vst is set to 100. Miroslav Philharmonik is EXTREMELY quiet..., and when I load drums into ultrabeat, they immediately peak like crazy.
    It's one of a the reasons mixers have volume controls.
    Seriously - an orchestral instrument is likely to have hundreds of parts all playing at once. If each part was designed to hit close to 0dB, then it would be impossible to do anything as the resultant mix would be massively loud - you'd have to turn everything down all the time.
    Drums are probably going to be peaking fairly loud in a mix, as they do contain a lot of the energy.
    There is no standard. A mono synth will often have hotter levels than a polysynth part, as the polysynth could be playing 8-32 voices all at once. Also, different patches, and different instruments themselves will be programmed to have different volume levels.
    This is all true regardless of DAWs, and is nothing specifically to do with Logic.
    All all the instruments, and mixer channels have volume controls, to let you control their volume and place them where they need to be for your needs.

  • When I open a file folder why are all the subfolders expanded

    When I open my USB flash drive on my mac (snow leopard), all the files are expanded, and I can't figure out why. Then I have to go one by one closing them, and it's frustrating. Is there a way to set it to be collasped or expanded?

    Option-click the triangle for the highest-level folder you can access.
    (67172)

  • When I create a tablet/desktop/phone version of a site, why are all the pages blank?

    Hello, longtime listener/user, first time caller
    I've been using Muse since jumping on the Creative Cloud train a couple years ago, but to date all my experience had been in maintaining and updating a desktop version of a couple small sites.  I loved the idea of Muse being able to assist in the creation of separate desktop/tablet/mobile layouts (ie responsive design), and this past week was my first experience in using it as I worked on a ground-up rebuild of http://www.eridusociety.org.  I started with a Phone layout, with the intention of getting that right and then expanding outward to a tablet version, and once that was finished, adding a desktop layout.
    After completing the mobile site and testing it on Business Catalyst (thanks to all involved in that seamless integration, by the way), I clicked on the +Tablet button and proceeded to build out the tablet layout of the site.  To my dismay, all the pages it built were blank.  I tried deleting and re-doing it with different combinations of the options checked, to no avail.  Then I raced off to the nearest web browser and started searching - surely I missed a step, or the great collective brain of the internet could alert me to some way to achieve this.  Alas, no such luck. 
    The blank pages are intentional, and the way to populate those blank pages is to go back to the phone layout, open the page, then copy all the content, then switch back to the tablet layout, open the corresponding page on the tablet layout, and paste in the content from the source layout... and of course, rinse and repeat for the desktop layout as well (though for my workflow, I copied the finished tablet layout pages to create the desktop version).
    For me, starting with all the page elements from the source layout is much easier than starting from scratch on each and every page.  That way I know I have all the elements on the page, and I can add to (or subtract from) as well as modify the layout in fairly short order.  I've been driving myself a little crazy with all the bouncing back and forth between layouts to copy/paste elements as I work on my site, and for future reference I'd like to know if there's some way that can be avoided in the future?
    Ideally, I would like to see an option in the create layout dialog box to be able to copy content (and choose the source layout to copy from). 
    Beyond that, another great option for this dialog would be to let me choose to switch all the page links to the new layout.  That is, when it copies and pastes all the page content from source layout, Muse would then also update the links to pages within the site so that they link to that layout's pages.  So when I build a phone version and click +Tablet, I can check a box to copy page content from source, specify that source, and then check another box to update links for layout.  After Muse does its magic, I have a tablet layout that's already got page content on it, and it's linking to other pages on the tablet layout (and not to the source/phone layout pages).
    Thanks to everyone on the Muse team for a pretty great product, and to the people manning the Twitter account for responding to my tweet and directing me here.

    Sanjit, I think one of us is missing the point.  It could be me - is there some way to easily and quickly pop open multiple layouts and pages?  Because for me (running a 12-core Mac Pro with 64GB RAM and FirePro D700 GPU's), Muse lets me switch between one layout view and the next (not open them simultaneously), and takes several seconds to do this every single time.  Opening and closing pages (to create separate tabs/windows) is also incredibly tedious. 
    I can appreciate that select and drag works just as well as selecting all and using copy/paste shortcut keys, but that is the least time consuming part of the process.
    Without copying the page contents from the source layout and transpose internal page links to new layout, Muse falls short of the mark of making it really easy to build responsive sites.  It's kind of like trying to take a cab to a destination across town that makes you get out and walk halfway.  No matter quickly or easily the cab made it through town, it still only got you half way there.

  • Where are all the recording levels in Audition?

    In Audition where would I go to set the sensitivity/clip settings, and the overall input level for the recording.
    I'm looking for all available recording level settings Audition has.
    Thanks.

    Audition han no reconding faders. You must use the windows mixer or level controls of your sound module.

  • HT4796 why are all the files on my external harddrive showing as read only?

    I have a harddrive (Seagate) that I have used with my PC to store files.  When I plug it into my Mac, all the files are read only.  How do I fix that?

    Most likely, the drive is formatted NTFS, which OS X can only read natively.
    If you don't want to reformat the disk into something you can use on both, try exFAT.
    If you want to reformat it only for a Mac, use Mac OS Extended (Journaled).
    Either way you'd have to move the files off the drive, format, then reload them
    There are several programs which will allow you to write to NTFS, Paragon, Tuxera, and NTFS-3G (free).

  • Why are all the photo titles in Photobooth the same?

    This question concerns photobooth and using photos taken in iPhoto.
    The problem is this: I took a bunch of photos with photobooth, then imported them into iPhoto. I then attempted to move those photos into a seperate folder on my desktop, but I couldn't since each individual photo was titled "MyPicture.jpg". I could go through the process of renaming all the photos by hand, but is there any automated way to do this and just assign maybe a random filename?

    Hi Isaacprobert,
    Thanks for the question. Based on what you stated, it seems like you still have photos in Photostream. I would recommend that you read this article, it may be able to help the issue.
    My Photo Stream FAQ - Apple Support
    Photos in My Photo Stream are saved on the iCloud server for 30 days.
    Thanks for using Apple Support Communities.
    Cheers,
    Mario

  • Why are all the apple based Apps free for my cousin

    Me and my cousin both have Apple iPad minis and for some reason all his apple based apps like iMovie Keynote and iPhoto are all free and I have to purchase them and have already purchased iMovie fro $10:49

    The apps are free to anyone that bought a new apple device since Sept 2013.

  • Why are all the free tv apps 'grayed out' on my ipad so that I can't download them?  I don't have issues with any other free apps...

    Bought my Ipad whilst living overseas but changed my itunes account accordingly. Seems I can download pretty much any app except those that stream film/tv. Any ideas?

    Hello there, Gwald.
    The following Knowledge Base article offers some great recommendations for troubleshooting your issue:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    Specific to iPad are the following:
    Troubleshoot issues on an iPhone, iPad, or iPod touch
    If you haven't been able to connect to the iTunes Store:
    Make sure your date, time, and time zone are correct in Settings > General > Date & Time.
    Note: Time Zone may list another city in your time zone.
    Make sure that your iOS software is up to date by tapping Settings > General > Software Update (iOS 5 or later) or connecting your iOS device to iTunes and clicking Check for Update on your device's Summary page.
    Check and verify that you're in range of a Wi-Fi router or base station. If you're on a device with cellular service, make sure that cellular data is turned on from Settings > General > Cellular.
    Note: If connected to cellular data, larger items may not download. You may need to connect to Wi-Fi to download apps, videos, and podcasts.
    Make sure that you have an active Internet connection. You can check the user guide for your device for help with connecting to the Internet.
    Make sure that other devices (portable computers, for example) are able to connect to the Wi-Fi network and access the Internet.
    Try resetting (turning off and then on again) your Wi-Fi router.
    If the issue persists, try troubleshooting your Wi-Fi networks and connections.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Why are all contacts changed to United Kingdom on my iPhone and to Deutschland on my iPad after I did a simple backup?

    I backed my iPhone only to find that I lost all the new contacts I entered in the iPhone only or better just lost the details e.g addresses, phone numbers but not the names and also all older contacts now have the country "United Kingdom". Have the same problem with my iPad but here all older contacts now have the country "Deutschland" while again I lost all new entered contacts except for the names. However all addresses in Outlook are with the correct country but again all newly entered contacts are missing all details safe for the name

    Never mind. I got it working now

  • I would like to see a LIST of all the programs that will work with F/Fox and a List of what all F/F attachments do. Bill

    Programs Example: Avast Anti-Virus (a program - I use)
    Attachments Example: Thunderbird - A mail handling program.
    or a non-existing current program: Fox Cloak - A military grade program for encrypting messages and photographs.

    http://www.apple.com/feedback/ipad.html
    If your student is truly disabled to the sense that she can not be taught the morality of changing other people's devices without their consent, and you have to have all the student iPads publically available to her, then the best solution is to lock the entire iPad from her - enable a Passcode lock in settings so that she needs the password to use the iPads.

  • I deleted photos from my Iphone5 using the 'internal storage' in windows with the phone plugged in. Why are all the photos still in photostream when they don't show up as a file in windows anymore?

    Hi all,
    I plugged in my phone, went to my computer, iphone, storage, and deleted photos from there. But in my phones photostream, they are still there. Why is that?
    Cheers

    Hi Isaacprobert,
    Thanks for the question. Based on what you stated, it seems like you still have photos in Photostream. I would recommend that you read this article, it may be able to help the issue.
    My Photo Stream FAQ - Apple Support
    Photos in My Photo Stream are saved on the iCloud server for 30 days.
    Thanks for using Apple Support Communities.
    Cheers,
    Mario

  • Why are all the close tab buttons missing?

    Yesterday, I was using Firefox 25.0.1 with no issues. Today I launched Firefox, only to find that the [X] buttons for the tabs are gone! Instead, I saw a single [x] button on the rightmost side of the tabs bar, which closes the active tab. There were no changes/updates that I made to Firefox between yesterday and today. I checked the browser.tabs.closeButtons parameter, and saw that it was still set to 1. Changing it has no effect. What's going on?
    Thanks,
    Teraforce88

    What really pisses me off is that we have to use an addon to make Firefox work like IT SHOULD. Now FF gets updated again and our addon is broken. The arrogance of the developers who made the call to force a tab bar at all times is astounding. Because they always have tabs open, I guess that means the rest of the internet should too.

Maybe you are looking for

  • Help needed in using oracle rules SDK

    Hi, For testing my rulesets using oracle rules SDK I doing the following: 1. Creation of dictionary, ruleSet. 2. Declared two kinds of globalVariable variables in my datamodel : Final and non-Final.(Type of these varaibles are String and Double only)

  • How to use awr and addm reports

    Hi, to use awr and addm reports does we should have separate license or oracle server software license is enough. which tool do we use to read this awr and addm reports in real time. please give your valuable suggestions. thank you!

  • My ipod nano and itunes won't sync with nikeplus website what do I do?

    Please could anyone advise how I can check why my itunes won't sync with nikeplus.com? I have done several runs and set up a nikeplus account but everytime I try and sync my ipod it won't connect to the website. Any ideas?

  • What are the benefits of arch linux ?

    What are the benefits of arch linux ? default package management /software installation tool .

  • Function with incomplete parameters

    I create a function with many parameters and I call this function through my application but when I call function I must declare all parameter inside this function like ddd("a","b",0,0,0,0,0,0,0) is there a method let function set a default value for