How do I make my own sounds and put them on a Midi controller?

I want to be able to make my own sounds and program then into my midi controller.
Is this possible? If so How do I go about doing it?

Hey man, am I right in thinking you want to make your own sounds entirely and then map them so that they can be triggered to play by your midi controller? If so, the method I'm thinking is you're going to have to start coding. The program PureData http://puredata.info/ is a good place to start, it's free and there are a lot of online tutorials if you can be bothered looking, but you'll have to put in the effort of learning how to code it properly. This might be worth it if what you are asking is what I'm thinking you're asking. Otherwise, you'll have to make do with the sounds that Logic Express can create, which isn't exactly a limited set... Hope this helps.

Similar Messages

  • TS1538 Have a new ipod nano 7, have music on my pld Windows laptop and myGot a new ipod nano 7. Have music on both Windows 7 laptop and mac. How do i pull music from both and put them on my ipod. Thanks

    Got a new ipod nano 7. Have music on both Windows 7 laptop and mac. How do i pull music from both and put them on my ipod. Thanks

    Yes.
    tomfromlong beech wrote:
    "Remember one one level of subfolders is allowed."  Does this mean that you can have as many subfolders as you want, but they can only be one level deep under the main folder?

  • HT204364 How do I make different greeting cards and send them to the same address in a bulk - not having to pay $3.99 shipping for each card

    In Iphoto, I would like to produce a bunch of greeting cards with different pics for different people and I would like all these cards to be sent to my home address in one shipment.
    The way I understand it, I can only prodce one card and order multiple copies of the same card.
    I am looking for a way not to spend $0.99 + $3.99 (shipping)....
    Can this be done?
    Or is there an app that allows that?
    Or how can I save each card and have them printed somewhere else?
    Thanks!

    Not really because the format is an odd size and when you save it as a pdf file there's a white border around the card. 
    There are 2 tutorials on how to print them yourself if you have a 3rd party image editor that supports layers or Pages from iWork: iP06 - Printing a iPhoto Greeting Card and iP07 - Printing a iPhoto Greeting Card to Standard Stock Sizes.  Apple has made it difficult to print them borderless unless the card color is the same as the card stock.
    OT

  • How to count the per group-entries and put them in the new table

    Hello Guru,
    I want to sort the table cdhdr.
    for example :
      SELECT objectclas objectid changenr   *******
      INTO TABLE cdhdr_data
      FROM cdhdr
      WHERE ( ********) AND
            objectclas = i_objectclas
    The problem that I need to order the table by objectclas and objectid.
    Let say objectclas is always MATERIAL.
    Let's assume our key is changenr. May be our key will change to "objectclas objectid".
    So, my problem that I need to get the number of the same "objectid" with different "changenr".
    And also I need to put the count number of each object id with different changenr in the table cdhdr_data.
    For example
    objectclas        objectid       changenr      count
    MATERIAL      00***001      1                   3
    MATERIAL      00***001      4                   3
    MATERIAL      00***001      7                   3
    MATERIAL      00***005      2                   2
    MATERIAL      00***005      6                   2
    MATERIAL      00***003      5                   2
    MATERIAL      00***003      3                   2
    So later I'm going to use it.
    LOOP AT cdhdr_data FROM sy-tabix TO ( sy-tabix + cdhdr_dat ( sy-tabix ) + count - 1 )
    some optimized cdpos processing
    IF entry found.
    *don't loose time
    *change the boundery
    sy-tabix = count
    ENDIF.
    ENDLOOP.
    Best Regards,
    Kais

    Hi Marcin,
    Thanks for replying.
    I'm having a trouble.
    Let say I got an error on insert into ****.
    It says me that the object (i_)cdhdr_data is not known.
    Why, should I avoid to put objectclas = i_objectclas there.
    I need to have MATERIAL OR DOKUMENT.
    I can't just put 10000entries like that.
    I'm also sceptic about how much this operation will cost.
    Because I need to proceed the data with cdpos.
    And This's why I'm doing that.
    Later with this implementation I'm gone use LOOP AT *** FROM sy-tabix TO ****.
    If I use my method, it will cost lower than inserting, changing, ...
    I rather ignore the objectid and don't make any processing.
    But with your solution I can say its rapidly.
    Let assume there's n entries in cdhdr and m entries per n in cdpos.
    So my algorithm will select n entries and will follow n*m entries but some of them will be proceeded an other not.
    in cdhdr :
    for n entries : n * 1 selecting
    in cdpos :
    always : n*m comparing,
    processing between : n1 - nm
    With you algorithm we will do :
    in cdhdr :
    for n entries : n* (1 selection + 1 modifing + 1 appending) <=> each operation cost O(1)
    in cdpos :
    for comparing between : n1 - nm
    processing between : n1 - nm
    Let see the middle value :
    your case :
    in cdhdr  we have : n * O(3) ~ n * O(1) ~ O(n)
    in cdpos :
    O(c(nm)/2) + O(p(nm))2) ~ O((cp)((nm)/2)) ~ O(d(nm))  d= (cp)/2 ~ p/2
    we know that O(c*n) ~ O (n) ; c ist a constant
    c : comparing cost
    p : processing cost
    p >> c
    my case :
    in cdhdr  we have : n * O(1) ~ O(n)
    in cdpos :
    O(c(nm)) + O(p((nm)/2)) ~ ? maybe O(d(nm)) d = c + (p/2) ~ p/2
    c : comparing cost
    p : processing cost
    p >> c
    Ok, this in theorie, but in reality I've no idea.
    Is there a mathematician there ?
    Regards,
    Kais
    FORM get_cdhdr_data_modified_1
      USING
        i_from_date TYPE dats
        i_from_time TYPE terf
        i_to_date TYPE dats
        i_to_time TYPE terf
        i_objectclas TYPE j_objnr
      CHANGING
        cdhdr_data TYPE SORTED TABLE.
    types: begin of t_cdhdr_data,
                objectclas type cdhdr-objectclas,
                objectid type cdhdr-objectid,
                changenr type cdhdr-changenr,
                count type i,
          end of t_cdhdr_data.
      DATA : i_cdhdr_data type table of t_cdhdr_data with key objectclas objectid changenr with header line.
      DATA: st_index LIKE sy-tabix, count TYPE i.
      SELECT objectclas objectid changenr
      INTO TABLE i_cdhdr_data
      FROM cdhdr
      WHERE ( ( udate GT i_from_date AND udate LT i_to_date ) OR
              ( udate EQ i_from_date AND udate NE i_to_date AND utime GE i_from_time ) OR
              ( udate EQ i_to_date AND ( udate NE i_from_date OR utime GE i_from_time ) AND utime LE i_to_time )
            ) AND
            objectclas = i_objectclas.
      INSERT INTO i_cdhdr_data FROM i_cdhdr_data.
    ENDSELECT.
    LOOP AT i_cdhdr_data.
      AT NEW objectid.
        "remember start position
        st_index = sy-tabix.
      endat
      at end of objectid.
      count = sy-tabix - st_index + 1. "count accual position
      cdhrd_data-count = count. "now you have how many entries are in each objectid
      MODIFY TABLE i_cdhdr_data FROM i_cdhdr_data.
    ENDAT.
    ENDLOOP.

  • How do i transer songs from ipod and put them into itunes ?

    We have a 160gb ipod, and it has around 700 songs, but we are unable to transfer the songs FROM the ipod, onto our itunes account. The songs were loaded via cd's, someone please help, as we don't want to loose all the songs on our ipod. We are are using a MacBook Pro. Please help ASAP .....

    https://discussions.apple.com/message/1723974#1723974
    From the  More Like This  section on the right.

  • Hello, how can i record my own ringtones and acti...

    Hello,  how can i record my own ringtones and activate them for listening?
    thanks a lot for a feedback
    kind regards
    nils

    What device are you currently using?
    Nokia C6-00 user.

  • Good morning, i would like to know how to take pictures from iphoto and put them in a folder on desktop

    Good morning: would like to know how to take pictures from my iphoto and put them in a folder on my desktop

    To take photos from iPhoto and put them onto a folder on Desktop, first create a folder on Desktop. Right-click on Desktop and create a new folder.
    Then, open iPhoto, and you have two ways to export photos:
    1. Select the photos you want to copy to Desktop with Command key (or go to Edit menu > Select All, if you want to copy all photos), and then, drag them to the folder on Desktop.
    2. Select the photos you want to copy to Desktop with Command key, go to File menu > Export, and follow the steps.
    You can choose the one you prefer

  • How can i make my video card and sounds work on Windows 7 on my Macbook Pro 2.2? Help please...

    How can i make my video card and sounds work on Windows 7 on my Macbook Pro 2.2? Help please...

    i lost my Mac OSX dvd...

  • How can i make mt own radio station on iPad or iPhone.....and how to use mobile terminal ???

    How can i make mt own radio station on iPad or iPhone.....and how to use mobile terminal ???

    what do you mean radio station as in you would be transmitting fm to the airwaves?

  • How i can make  my own connection in java source of a jsp page

    How i can make my own connection in java source of a jsp page (How to get connection from JNDI datasource address) ?
    imagine that i have a rowset in a web page , now i want to do some operation using
    plain JDBC , so i will need a connection object.
    I tried to get one of my rowsets connection but it return null ?
    what is best way to retrive a connection from JNDI datasource that we define for our project?
    for example if i have
    myRowSet.setDataSourceName("java:comp/env/jdbc/be");
    in web page constructor
    now i want a pure connection from the same datasource ? JNDI
    Thank you

    It is not hard to get your own connection from datasource.
    in your case you need to do like the the following code.
    i provide sample to show you how to catch the exception and create an statement .
    Connection con =null;
    try{
    InitialContext ctx = new InitialContext();
    DataSource ds = (DataSource)ctx.lookup("java:comp/env/jdbc/be");
    con = ds.getConnection();
    java.sql.Statement st =con.createStatement();
    }catch(SQLException sqlex){
    sqlex.printStackTrace();
    sqlex.getNextException().printStackTrace();
    catch(NamingException nex){
    nex.printStackTrace();
    hth
    Masoud kalali

  • How do I make a song sound as if its played outside?

    I am currently editing a video of a charity music concert, recorded outside. I have had to subsitute one song with a version from Itunes. Does anyone know if and how I can make that song sound as it it also is played outside?
    Thanking everyone for ideas.
    Juliainuk

    Hi there cfarrington18,
    You may need to remove and redownload the tracks that giving you troubles. Take a look at the article for more information.
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/HT2519
    -Griff W.

  • How can i make my own LookAndFeel

    How can i make my own LookAndFeel ??
    please help, if you have some tutorials or something like this

    http://www17.homepage.villanova.edu/william.pohlhaus/is/doc/Java%20Look%20and%20Feel.htm
    and Google.

  • Dropped my ipod and now it makes a clicking sound and won't turn on at all. is it cheaper to get a new one or fix this one?

    i have tile floors and i dropped my ipod classic flat on its back while it was off. i tried turning it on after that and it now it makes a clicking sound and won't even turn on. all it shows is a dead ipod and told me to go to apple.com/support/ipod. i'm not sure how to fix it or if it's even fixable. or is it just cheaper to get a new one?

    If the phone will not power on try these three things:
    Connect it to your phone charger
    Connect it to your computer and open up iTunes
    Perform a hard reset (Hold down the sleep/wake (top) button at the same time as the home (circle) button for 45 seconds. When the apple appears on the screen let go of both buttons.

  • My computer space is full and i want to remove some of my itunes movies from my computer but i dont want to loose them completely how do i make it so i can find them under my purchased on icloud?

    My computer space is full and i want to remove some of my itunes movies/ t.v shows from my computer but i dont want to loose them completely how do i make it so i can find them under my purchased on icloud?

    You can't do that. iCloud does function that way.
    Allan

  • How can I record an audio sound and convert it to a ringtone?

    How can I record an audio sound and convert it to a ringtone?

    Record your voice using iPhone (for ringtone only 35 secs or under are valid), sync iPhone with iTunes.
    In iTunes the recorded voice is listed under Music as some_numbers.m4a.
    Right click on the item and choose Create AAC version.
    Drag the converted voice onto the desktop.
    Delete the voice copy in iTunes. (important step)
    On desktop, rename the some_number.m4a to something_more_intelligent.m4r
    Drag it back to iTunes and you will find it under Tones.
    Now select it (for sync) and connect your iPhone, do a sync.
    If everything works out, it will be in Settings > Sounds > Ringtone.
    Now choose a contact you want to assign this ringtone, tap Edit and add the ringtone.
    Hope this helps.

Maybe you are looking for

  • Hard drive not showing up on desktop

    My hard drive is not showing up on desktop. Hardisc repair says drive is not formatted yet would not format drive or failed after initial attempt. I did put the same drive into USB external case and then it showed up on desktop. I then was able to fo

  • RG1 Register not getting updated

    Hi, Need your help on following. We have a scenario wherein the material is a BOM. The actual delivery happens for lower level items (like MS Angels) whereas the billing happens on Header Material (say entire Structure). Scenario has following steps

  • Download flash web page errors

    I am using Chromium without flash player. I go to this page to install flash player http://get.adobe.com/flashplayer/ and just get an empty div. div id="content-body">              <script type="text/javascript">             registerOnLoad(function()

  • [Solved]Variable read/write speed with WD Passport 1 TB external drive

    I have this drive connected to my Arch Linux box. Whenever I transfer large files (I use it to backup) the write speed drops from 30M/s to sometimes a few KB/s and then speeds up again ! This drive is connected via an USB 2.0 port with a specific cab

  • Can't move to second screen of survey (uses Flash Player 9)

    Hi, I was trying to fill out a survey on www.949thesound.com (The Sound Choice Awards), and when I clicked on the link to access the survey, I was able to place a checkmark in one of the choices on the first page of the survey. It seems like the surv