Should a string quartet be EQ?

I am recording music for String Quartet in Logic and are now in the final mixing stage which would be normally EQ and Compression. But should I do this and how much? I have to admit that I know only the basics of these things but because this is part of finishing a music project it's what I am wondering about now.
Am I correct in thinking that there are 2 parts in EQ, nml:
1: when an instrument is covering up the frequency region of an other instrument while not using it himself, cut down that frequency region to create a cleaer sound in that other instrument.
2: When an instrument sounds a little flat even when not being covered by the frequency range of another instrument, pull up this frequency to clear up this instrument in that range.
Hope to get some more info on this, I don't want to over-EQ the recording especially because it's a classical string piece, I hear that some people not using EQ at all on this kind of music.
André

Thanks for the info, I will let you know how it goes. Here are some string quartets I did a while ago:
http://www.andrevanharen.com/stringquartetmoments.htm
I a working on writing a string quartet tutorial at the moment, what forces me to go into detail for every aspect in the recording proces, what actually is really good for me to learn this. I noticed that the best way to learn things is to teach them to others!
best,
André

Similar Messages

  • In creating a playlist in iTunes of two different versions of a classical string quartet, can the movements be alternated in play order. In other words, Movement 1 by group A, followed by Movement 1 by group B?

    In creating a playlist in iTunes of two different versions of a classical string quartet, can the movements be alternated in play order. In other words, Movement 1 by group A, followed by Movement 1 by group B? 

    In creating a playlist in iTunes of two different versions of a classical string quartet, can the movements be alternated in play order. In other words, Movement 1 by group A, followed by Movement 1 by group B? 

  • External java function that should return String array

    Hi everyone,
    I have a split function in plsql that takes 10 times longer a java tokenizer function that i was written. So, i want to use java external function to split my plsql strings into pieces.
    I can write a java external procedure that returns types like int, float and String types. I have no problem about it.
    My problem is returning an array of strings. I found a book that has an example about how can we get directory list in plsql with java external procedure.
    (code)
    import java.io.File;
    import java.sql.*;
    import oracle.sql.*;
    import oracle.jdbc.*;
    public class JFile {
    public static oracle.sql.ARRAY dirlist (String dir)
    throws java.sql.SQLException
    Connection conn = new OracleDriver().defaultConnection( );
    ArrayDescriptor arraydesc =
    ArrayDescriptor.createDescriptor ("DIRLIST_T", conn);
    File myDir = new File (dir);
    String[] filesList = myDir.list( );
    ARRAY dirArray = new ARRAY(arraydesc, conn, filesList);
    return dirArray;
    CREATE OR REPLACE FUNCTION dirlist (dir IN VARCHAR2)
    RETURN dirlist_t
    AS
    LANGUAGE JAVA
    NAME 'myFile.dirlist(java.lang.String) return oracle.sql.ARRARY';
    (code)
    I could compile this source file in localhost but not remotehost. There are jar files ( import oracle.sql.*; import oracle.jdbc.*; ) that should be added to remote classpath. ( others have already added java classpath ). But, which classpath i should add? Oracle has own JVM and Classpath, probably i should upload these jar files to oracle classpath. Am i wrong? How can i do? Can you explain in detail? How can i return string array from java external function in Oracle ?
    I am using Oracle 11.1.0.7 on Solaris Sparc Machine.

    Hi,
    What do you mean "compile in remote host"
    Aren't you using the loadjava tool? - that should be enough, the RDBMS already "has" the jars needed.
    [A must read|http://download.oracle.com/docs/cd/B28359_01/java.111/b31225/chone.htm#BABCFIIF]
    Regards
    Peter

  • How to convert an int to a String

    Hi, just wanting to know is anyone could help me with convertin a primitive int into a String, currently I have
    String mod = Integer.valueOf(n);
    but with this i keep getting an error which says, - cannot resolve symbol - method valueOf(int)
    Can anyone please help me. thanks.

    it should be
    String mod = Integer.toString(n);

  • Strings in a switch?

    I would like to give my switch-statement a string, but that does not seem to work, is it possible in any way?
    public void test(String str) {
    switch(str){
       case "Green":{
                  System.out.println("The color is green");}
       case "Blue":{
                  System.out.println("The color is blue");}
    }

    Java should supports String in a switch statement; however, it should not supports Object (as pointed out in previous reply). Only problem i see is the implementation. Since String is an Object, then wouldn't swicth (obj) works as well. THe compiler would not catch this..but runtime can (if the implementation check to make sure the object is an instance of a String). and frankly, i don't wnt to do a try..catch on a switch statement to catch runtime error...The main purpose of a switch(String) is to make the code more readable.
    I think this is the reason Java exclude String in the switch statement. If you include String, then you must include Object...but how do we compare object? by equals(), hashcode(), reference, or toString().equals(toString())? from the look of it, any comparison is valid..which is the problem because there must be one uniform comparison everyone must agree with to make it work. unfortunately, we know not everyone will agree on which is the best way to perform the comparison.
    still..it would be nice to do switch(myString)

  • String encoding problem - pls help.

    I need to read in a string, let say as aString (in ASCII)
    inside my program will produce astring, bString
    i want the string b in unicode and insert to string a.
    but string a need to be ascii.
    structure like:
    for example:
    aString = "<datetime id number $insertHere>"
    bString = someCharatersInUnicodeFormat
    finalString = "<datetime id number someCharatersInUnicodeFormat>"
    but finalString is in ASCII.
    how to do it in java ?
    do it need to append it in bits level ??
    how to manage the bit level in java ?
    if i want to take a look on the bytes or bits, how to write it out in java ?
    thanks....

    while, of coz it will be fine if i use UTF-8 encoding
    for my file.
    Then it will much easier to write my chinese word.
    But actually, the file is produce for another
    system.
    and that system only accept ascii file.If the other system only accepts ascii files you can't write chinese characters.
    DrClap already tried to make this clear to you.
    What do exactly you mean with ascii. You possibly mean something different than DrClap, all the others here an I mean.
    So i need to make up an ascii file with the chinese
    word in unicode.What do you mean with unicode? Unicode is not an encoding
    Often people say Unicode but acually they mean UTF-16 which is the native internal representation of text in the Microsoft Windows NT, Windows CE, Qualcomm BREW, and Symbian operating systems; the Java and .NET bytecode environments".
    http://en.wikipedia.org/wiki/Comparison_of_Unicode_encodings
    The example i post up there is the correct output.
    Is there anyone know how to make up a such file like
    that ?Independenent of what I think of the idea of mixing up encodings within one file, you can write the first bytes ascii encocded and append an "unicode" encoded part.
    FileOutputStream fileOut = new FileOutputStream("file");
    // whatever this should be
    String unicodeEncoding = "???"; 
    byte[] bytes;
    bytes = "ascii part".getBytes("US-ASCII");
    fileOut.write(bytes, 0, bytes.length);
    bytes = "unicode part".getBytes(unicodeEncoding);
    fileOut.write(bytes, 0, bytes.length);

  • How to retrieve a string value from a PHP function call

    Should this string be the return value of the PHP function?
    Or should it be embedded in the response HTML? Any examples?

    This is what I got so far:
    footer.mxml in Flex Builder 3:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute" creationComplete="ts_request()">
    <mx:Script>
    <![CDATA[
    public function ts_request():void {
    timestampRequest.send();
    ]]>
    </mx:Script>
    <mx:Canvas width="836" height="36"
    backgroundColor="#05075C">
    <mx:Label id="timestamp"
    text="{timestampRequest.lastResult.timestamp}" color="#FEFEFE"
    height="20" y="10" textAlign="left" width="221" x="10"/>
    </mx:Canvas>
    <mx:HTTPService id="timestampRequest" url="
    http://www.ABC.com/timestamp.php"
    useProxy="false" method="POST" />
    </mx:Application>
    Here is the timestamp.php on the www.ABC.com web server. I
    have tested the php by directly access it with
    "www.ABC.com/timestamp.php" and it shows the timestamp correctly:
    <?php
    putenv($timezone);
    $Return = "<timestamp>".date("m/d/Y H:i:s", time())."
    CST"."</timestamp>";
    print($Return);
    ?>
    When I run footer.mxml in Flex 3 Builder, I got an error:
    This file cannot be launched.
    Where did I do wrong?

  • How to send string in RFC by performaned way

    Hi *,
    I need to create a RFC function and send messages to NON-SAP system, and the message type should be string. I couldn't define string in table parameter. If I define in importing paramter as table type, It will heavily reduce the performance for RFC. Is the only way to spilt string to characters?
    Thanks in advance.

    Why does it have to be type STRING?
    I think you can use type BAPI_MSG as well (or any other character type).
    If you want to/have to use type STRING, you can just test the performance using the table type as importing parameter and decide for yourself whether it is too slow. It's not that it's not possible to do it like that.
    Reward if helpfull...
    Cheers,
    Rakesh.

  • String substitution question

    Hello there,
    I have some SQL statements, such as:
    CREATE Table1 ( column1 INTEGER NOT NULL, column2 VARCHAR(20), column3 VARCHAR(30) )
    INSERT INTO Table1 (column1, column2, column3) VALUES (?, ?, ?)where I want to put the names of the columns in square brackets, i.e. substitute the column1, column2 and column3 by [column1], [column2] and [column3], respectively.
    For the INSERT case, I have noticed that one should handle strings occuring after an opening bracket "(" until a comma and after a comma "," until another comma or a closing bracket except the case when there is a ? before the comma, but the CREATE case is trickier...
    Could you please help me out with this? Thanks in advance.

    Thank you very much for your answers!
    I would like to once again thank Monica for her friendly attitude and her willingness to help! I have not followed all of her suggestions exactly, but they have indeed helped me much.
    I am glad to see that the SUN guys have fixed the forum formatting, so that you can read my solution easier. Any improvement suggestions or comments are, as always, most welcome.
    // Sample solution for the CREATE statement:
    String cStmt = "CREATE Table1 (column1 INTEGER NOT NULL, column2 VARCHAR(20), column3 VARCHAR(30))";
    int fw = 0; String new_cStmt = "";
    new_cStmt = cStmt.substring(fw, (fw=cStmt.indexOf("("))) + "( [" +
    cStmt.substring( fw+1, (fw=cStmt.indexOf(' ', fw+1)) ) + "] " +
    cStmt.substring( fw+1, (fw=cStmt.indexOf(",", fw+1)) );
    while(cStmt.lastIndexOf(",") > fw)
      new_cStmt += ", [" + cStmt.substring( fw+2, (fw=cStmt.indexOf(' ', fw+2)) ) + "] " +
    cStmt.substring( fw+1, (fw=cStmt.indexOf(",", fw+2)) );
    new_cStmt += ", [" + cStmt.substring( fw+2, (fw=cStmt.indexOf(' ', fw+2)) ) + "] " + cStmt.substring(fw+1);
    System.out.println(">> New CREATE statement: " + new_cStmt + " <<");
    // Sample solution for the INSERT statement:
    String iStmt = "INSERT INTO Table1 (column1, column2, column3) VALUES (?, ?, ?)";
    int fw = 0; String new_iStmt = "";
    new_iStmt = iStmt.substring(fw, (fw=iStmt.indexOf("("))) + "( [" + iStmt.substring( fw+1, (fw=iStmt.indexOf(",")) ) + "], ";
    // Relevant examination till first closing bracket in the INSERT statement
    while(iStmt.lastIndexOf("VALUES") > iStmt.indexOf(",", fw+1))
      new_iStmt += "[" + iStmt.substring( fw+2, (fw=iStmt.indexOf(",", fw+1)) ) + "], ";
    new_iStmt += "[" + iStmt.substring(fw+2, (fw=iStmt.indexOf(")"))) + "] )" + iStmt.substring(fw+1);
    System.out.println(">> New INSERT statement: " + new_iStmt + " <<");

  • How to Validate this String

    Hi All,
    I want to validate this strange String. I am not very good in REGEX, can anyone help me here.
    The String is like this
    AnyText [link=XXX][link]
    WHere [link=XXX][link] block could be multiple times, XXX must be any number, and it could contain any text after link blocks.
    Any help is highly appreciated.
    Thanks

    This is what I came up with
    public class Test20040906
        public static void main(String[] args)
            String regex = "[^\\[]*(\\[link=\\d+\\][^\\[]*\\[/link\\][^\\[]*)+";
            // Should pass
            String target = "Some rubbish [link=123]Hello World[/link] and some [link=123]Hello World 1[/link] further rubbish";
            System.out.println("Matches " + target.matches(regex));     
            // Should fail
            target = "Some rubbish [link=123]Hello World[/link] and some [link=xxxx123]Hello World 1[/link] further rubbish";
            System.out.println("Matches " + target.matches(regex));     
    }1) It does not use the 'reluctant' match used by yawmark.
    2) It does allow for the repeats and markup text requested.
    3) I does not allow '[' to be part of the markup text.
    I think that an extension of yawmark's approach to deal with the markup text is probably the best.

  • Remove spaces in String

    Lets say I have a String like this " 323232323 3434324". How do I remove the spaces in the beginning so I get the following result "323232323 3434324" ?
    It's not a fixed number of spaces in the beginning. It could also be e.g " 323232323 3434324"

    I think this should work:
    String otherString;
    String yourString = "    12345";
    for( int i = 0; i < yourString.length(); i++ ){
       if ( yourString.charAt(i) != ' ' ){
          otherString = yourString.subString( i );
          break;
    }

  • SIMPLE QUESTION! converting an Enumeration to a String array;

    Enumeration e=request.getParameterNames();
    i have an enumeration that contains some String objects
    how can i convert it to a String array?
    thanks a lot.

    String str = null;
    List list = new ArrayList();
    while(e.hasMoreElements()) {
         str = (String)e.nextElement();
         list.add(str);
    String[] strArray = (String[]) list.toArray();
    Disclaimer: Code not tested; use at your own
    risk ;)Taht piece of code will probably throw class cast exception at the line:
    String[] strArray = (String[]) list.toArray();The array returned is an object array. You should use:
    String[] strArray = (String[]) list.toArray(new String[list.size()]);That methods returns an array of the same type as the argument.
    /Kaj

  • Set string to clipboard

    Hi,
    Photoshop JSX noob here.
    I want to do a very basic thing: copy a selection rectangle as text.
    Ideally if I can get the location of the mouse and copy it to the clipboard, that would be great,
    but bounds is ok as well.
    I've managed to output selection coordinates:
    $.writeln(app.activeDocument.selection.bounds);
    how can I get those coordinates copied into the system clipboard ?
    note: I am using osx 10.5.8.

    Christof, this is related to another post 'Brush Opacity on the mac' but as you have CS4 would you be kind enough to test this…
    #target photoshop
    // Must be Foremost to accept the key commands
    app.bringToFront();
    // If you have the brush tool selected
    // This should keystroke 'enter'
    var sh = app.system("osascript -e 'tell application \"System Events\" to keystroke (ASCII character 3)'");
    sh ? alert('Failed?') : alert('Done…');
    // This should keystroke string value '36'
    var sh = app.system("osascript -e 'tell application \"System Events\" to keystroke \"36\"'");
    sh ? alert('Failed?') : alert('Done…');
    // This should keystroke 'tab'
    var sh = app.system("osascript -e 'tell application \"System Events\" to keystroke tab'");
    sh ? alert('Failed?') : alert('Done…');
    // This should keystroke string value '64'
    var sh = app.system("osascript -e 'tell application \"System Events\" to keystroke \"64\"'");
    sh ? alert('Failed?') : alert('Done…');
    // This should keystroke 'enter' again
    var sh = app.system("osascript -e 'tell application \"System Events\" to keystroke (ASCII character 3)'");
    sh ? alert('Failed?') : alert('Done…');
    You can comment out the dialog stuff. This all works as AppleScript without issue but someone wanted to know if there was a mac workaround with JavaScript…

  • Solo instruments in Logic Express (strings, horns)

    Hello,
    I have imported an audio track (mixdown of bass, drums, piano) into Logic Express. I would now like to make a string quartet arrangement over the track: solo violin, viola, cello. (Same for trumpet, trombone, saxes.) One track for each instrument. I can't find workable solo instruments in Logic.
    I will be recording the actual parts with real instruments and don't need high-quality samples, so Garritan is probably way more than I need. This is strictly for arranging. As I understand, the available Jam Packs do not include solo strings.
    Are there basic MIDI files on a Mac that could be used for this? Or some kind of plug-in? Alternatively, I do have Finale (2004 version, but I can upgrade). Will Finale parts work somehow with Logic Express?
    Thanks.

    Hello,
    Thanks for your reply to my question about solo instrument MIDI tracks in Logic. Pop Strings in the EXS24 is what I have been using, and while there is a solo cello there, I don't see any solo violin options, pizz or arco. There's definitely no viola option. My workaround for now is to have four solo cello tracks, with the top two cello tracks serving as violin parts, the third as viola, and the fourth as cello. Seems kind of silly, but at least they are solo instrument tracks. The ensemble samples are useless for writing parts for actual instruments.
    I'll try exporting a Finale arrangement as MIDI files, importing those into Logic Express, and see if that's better.

  • Pop up window saying Memory is too low to continue in Logic.Why?Way to Fix?

    I recently purchased my IMac OSX 10.6.3 as well as Logic. I have about a half dozen projects on my hard drive now, which is also being backed up to a "time machine" external drive. The projects are pretty small( just piano, or piano and string quartet, etc.) I also just installed Office Suite for Mac and the full Adobe Creative Suite.
    Recently when I have been working in the Score Editor(In Logic Pro 9), a pop up window appears saying something to the effect of "memory is getting low, don't install more plugins and remove any unused ones." Then today, after that pop up, another one showed up and said "memory is too low to continue. we will close project, autosave, etc. etc."
    Why is this happening? Is there not enough memory on my computer? Will this actually effect editing procedures in Logic? (because it seems like some things aren't working like they used to) Is there a quick and easy fix? Is this related to space remaining on hard drive, or is it completely different? Could it be related to the IMAC backing up files to my "time machine" drive at the same time I am working in LOGIC?
    Could someone who has a little time on their hands please answer these questions IN DETAIL? I am new to MAC and LOGIC, so I really have no Idea what's going on with the memory issue. I don't even understand how MEMORY corresponds to available space, quality of running programs, etc.
    Please help. I'm working on a deadline to finish a Master's portfolio and this could potentially be a big bump in the road for me.
    Thanks....

    The System Requirements for Logic Studio call for a minimum or 1 GB RAM with 2 GB recommended. So you should not have a problem with your 4 GB.
    First make sure your RAM is being recognized by your computer. Go to Apple Menu (apple in upper left hard corner and click on "About this Mac". Make sure it say 4 GB. Ram chip at times will go bad or become unseated.
    Now for troubleshooting, here is what I would do. The next time you want to use Logic, restart your computer. Restarting "flushes" the RAM; it may not sound like it but that is a good thing. Then do not open any other programs other than Logic (except ones you may need for it). You listed an awesome group of software you own. Your computer is not set up for all these programs to automatically start up when you turn on the computer, is it??
    So I am betting that you will not get the low memory message when only Logic is working. With some trial and error you will be able to open more and more programs at the same time without effecting Logic.
    You can better understand your RAM by opening Activity Monitor (Applications >> Utilities >> Activity Monitor). Click on the System Memory tab at the bottom and you can visualize what your RAM (Memory) is doing. There is also a list of programs that are open and what resources they are sucking up.
    Good luck with your computer and your masters.
    Arch

Maybe you are looking for

  • DVD Burner: What am I doing wrong

    I'm trying to burn a project I downloaded on quick time....I'd like to not only play it on a comp, but also my home DVD player....any words of wisdom?

  • When trying to watch a video in full screen, the screen goes black. It doesn't happen with other browsers.

    Whenever I try to watch a video in fullscreen mode in Firefox 4.0.1, the screen goes black. This didn't happen in previous versions, and doesn't happen in Safari (which I'm afraid I must switch back to, unless this bug is fixed) Thanks.

  • How to change the name of my podcast

    I need to slighly alter the wording used for the title/name of my podcast and am not sure how to do this. Currently the podcasts name is being pulled from my website's title, in the settings of Wordpress and it reads: Bright Ideas for Marketing Agenc

  • Interactive Report Charts

    When a user creates a chart in an interactive report, is it possible to set it so that clicking on a bar/pie wedge/value would take them to a report view filtered down to the records in that set? An example: we have an IR, and built a pie chart of us

  • Safari has pop ups with any click of the mouse

    When either on Safari or Google chrome no matter if i click a link or click anywhere on the page or even in a box to type ill get a pop up overtime. it sometimes is mackeeper but thats not installed. my popup blocker is running as well so i know that