EXS24 instrument created from audio region- How to  move files?

In Logic Pro X. I have created an EXS24 instrument from an audio region with 3 well-separated sounds. The instrument in EXS24 editor shows a zone with 3 files. Each file is actually the same physical file, but, when examining the three separate "files" (what should I call them??), a different section is highlighted for each tone. I can set a note for each of these "files". This instrument plays perfectly.
So now I have 2 files in my project folder  - a .exs one for the instrument, and ONE SINGLE .wav file somehow representing three different samples. I want to move them to ~Library/Application Support/Logic/folderName, where folderName is , say,  myInstruments (for .exs) and mySamples (for .wav). When I do this, and erase the files in the project folder, I can load the instrument and the sample file into EXS24, but the sample file is recognized as one single tone - that is, in the EXS24 editor, there is only one file rather than 3, and that file has all three audio sounds.
How do I move these files correctly? Is there some way to get them created originally in the correct place?

Hi keystrike,
This article will give you information about how to move files in Logic -
Logic Pro X: Move, copy, and convert audio files
Thanks for using Apple Support Communities.
Best,
Brett L 

Similar Messages

  • How cat I speed up video "Share" from iMovie library in to .mov file?

    How cat I speed up video "Share" from iMovie library in to .mov file?
    I am converting ONLY 18 sec. long video, and it says 88 min. till its completeion. ???
    I have over 1TB of free space and my mac specs are:
    Processor  2.2 GHz Intel Core 2 Duo
    Memory  4 GB 667 MHz DDR2 SDRAM
    Graphics  NVIDIA GeForce 8600M GT 128 MB

    Using iMovie Version 10.0.2 (Mavericks) and importing HD 1920x1080 since I am not interested in any smaller quality.
    in other words, I would like to be able to import videos from my camera (highest available quality) which could be played on QuickTime.
    Is there any way I can avoidaving my videos saving in " iMovie Library.imovielibrary" ???
    I am interested in having my videos as (1920x1080 .mov) file and no other.

  • How to move files between folders within Lightroom 3?

    I would like to move a file from one folder to another within Lightroom 3 (let's not discuss why). I searched the threads but couldn't find the answer (maybe I missed it). When I click on a photo within grid view then drag and drop that file onto a different folder in the folder panel (to do the move), a little plus sign (copy) appears and a copy of the file is placed in the second folder. If I try to delete the photo from the original folder (to get the move), both copies of the file are removed. I've tried holding down all sorts of keys on the imac but cannot get the move to work. Ideally, I'd like to move a group of photos but cannot even move one. Does anyone know how to move files between folders in Lightroom 3?

    Your suggestion works. Thank you for posting it.
        Ron
    2010/10/28 Dorin Nicolaescu-Musteață <[email protected]>
    Try selecting the photos, right-clicking the target folder and choosing
    "Move Selected Photos to This Folder".
    >

  • How to move files not copy

    how to move files from mac to an external hard drive. Copy leaves the files on the mac hard dive. I am trying to free up space on the mac hard drive.

    Whenever you migrate data to an external drive, the files will copy. Once the copy is done, simply delete the files from your internal drive.

  • I don't have the option "Create from Scanner".  How do I scan my documents?

    I am trying to scan multiple documents (to save and email), but I don't have the option of "Create from Scanner" on the Adobe Reader XI.  How do I scan my documents (multiple pages on one file, not each page on a seperate file)?

    Nearly all word processors have the option to "insert" a picture or "aquire" an image so repeatedly accumulate your images in any document

  • How to move files from an external hard drive to a time capsule that is part of an extended network

    What are the steps for copying or transferring 235 GB of files (primarily .mts movie files) that are on a Western Digital external hard drive to a 500 GB Time Capsule that I want to use as an external hard drive?  After the files have been moved, I will be returning the Western Digital external hard drive to my son's coach and will be using iMovie to access the 500 GB Time Capsule to create a highlight video. 
    Currently, I have a 1TB Time Capsule that is serving as the wireless router for my network and for Time Machine backups to two Macs.  The 500GB Time Capsule is set up as an extended part of the 1TB Time Capsule's network.
    I can copy and paste files from the Western Digital exernal hard drive to the Desktop of my iMac but when I try to move a file from the Western Digitial external hard drive to the empty 500 GB Time Capsule, the following error message pops up:
        "The item “filename” can’t be moved because “Linda's Time Capsule (2)” can’t be modified."
    Thank you.  Linda

    Click anywhere on the open desktop so that the Finder menus are displayed at the top of the screen.
    Click Go > Network
    Double click the Time Capsule icon, then double click the icon representing the drive to mount it on the Mac's desktop. It is named "Data" unless you have changed it
    You can drag/drop files to the "Data" icon on the desktop
    235 GB is going to take forever if you try to do this using wireless. If at all possible, connect an Ethernet cable from your Mac to one of the LAN <-> ports on the Time Capsule.
    Even using Ethernet, you are probably looking at 10-12 hours for the file transfer.  All bets are off with wireless only, but a guess would be several days....or even more.

  • How to move files from one folder to another folder in webdynpro java for sap portal

    Dear Experts,
    I wan to move files from one folder to another folder in SAP portal 7.3 programmatically in webdynpro java.
    My requirement is in my portal 1000 transport packages is their. Now i want to move 1 to 200 TP's into Archive folder.
    Can you please help me how to do in through portal or wd java ...
    Regards
    Chakri

    Hello,
    Do you know what the difference between copying a file this way :
    ** Fast & simple file copy. */
    public static void copy(File source, File dest) throws IOException {
    FileChannel in = null, out = null;
    try {         
    in = new FileInputStream(source).getChannel();
    out = new FileOutputStream(dest).getChannel();
    long size = in.size();
    MappedByteBuffer buf = in.map(FileChannel.MapMode.READ_ONLY, 0, size);
    out.write(buf);
    } finally {
    if (in != null) in.close();
    if (out != null) out.close();
    ================SECOND WAY============
    AND THIS WAY:
    // Move file (src) to File/directory dest.
    public static synchronized void move(File src, File dest) throws FileNotFoundException, IOException {
    copy(src, dest);
    src.delete();
    // Copy file (src) to File/directory dest.
    public static synchronized void copy(File src, File dest) throws IOException {
    InputStream in = new FileInputStream(src);
    OutputStream out = new FileOutputStream(dest);
    // Transfer bytes from in to out
    byte[] buf = new byte[1024];
    int len;
    while ((len = in.read(buf)) > 0) {
    out.write(buf, 0, len);
    in.close();
    out.close();
    And which is better? I read up on what each kind of does but still a bit unclear as to when it is good to use which.
    Thanks in advance,
    JavaGirl

  • How to move files from  one  system  to another in plsql

    Hi all,
    I want to move file from one system to another using plsql procedure .
    Kindly let me know what package i have to use for doing this .
    Thanks,
    P Prakash
    Edited by: prakash on Jul 27, 2011 2:20 AM
    Edited by: prakash on Jul 27, 2011 2:59 AM

    BluShadow wrote:
    That's ok if you want to diet. ;)Ooh look, the strange punctuation is back. Can it be true that the forum software has caught up with the '80s?
    I almost feel like connecting to the internet using a 9600 baud modem to celebrate.
    http://upload.wikimedia.org/wikipedia/commons/5/5d/TeleGuide-terminal.jpg
    Colon dash right bracket.
    (Old habits die hard)

  • Does anyone know a converter from the new iTunes TV/movie file type to one that will work on my 5th generation iPod video?

    I just tried to load some new TV shows from my iTunes onto my 5th generation iPod video and it says the video format is not supported. I currently have dozens of TV shows and movies on the iPod, I just wanted to put some new stuff on there. So I need to know if there is anyway of converting the new iTunes video format into one that will run on my 5th generation iPod.
    Thnaks in advanced.

    When you drag a movie from the Media Browser to the Time lIne in GarageBand, you will see a pop-up "Extracting Audio".
    The Movie and the audio file will appear in separate tracks. You can copy the audio region from the sound track to a different track to keep it safe and then hide the Movie track.
    Léonie

  • Adding a blank audio track to a .mov file

    Hi,
    I have a .mov file that I am trying to convert to MPEG-1 for burning to a VCD. I converted two .mov's that had audio in them, but now need to convert three that do not currently have an audio track. (Converting using ffmpegX)
    I've created a blank audio file in Quicktime that is longer than any of the .mov's. Is there an easy way to add the audio track from the audio file to the .mov file without one? I could probably do it in iMovie if I can't do it with Quicktime, but would rather avoid that....

    Open both files in Quicktime. Select All on the blank audio file, copy, then switch over to the MPEG-1 file.
    Make sure the cursor is at the beginning of the film, then select "Add to Selection & Scale" from the Edit menu.
    That should do the trick.
    All of this, though, only works in QT Pro, which is very much worth it!
    Good luck
    Dual 2.5 GHz PowerPC G5   Mac OS X (10.4.7)  

  • Audio Podcast listed as Movie file in iTunes

    Hi
    Our most recent podcast (yesterday) (produced in Garageband 09 and iWeb 09, uploaded to our MobileMe account) appears in iTunes>Podcast folder with a Movie Icon next to it. The downloaded file does not open/play (no error message appears), nor will it synch to my iPod Touch. Other subscribers have noted the same problem. The warning message from the iPod synch: "xxx was not copied because the video format is not supported by iPod". This is the first time I have encountered this type of problem. Our iTunes page may be found here.
    The latest version of the show appearing on our web site may be found here. Not sure why iTunes is now interpreting this file as a Movie? Perhaps this is an iWeb 09 bug?
    All previous downloaded shows play correctly in iTunes and synch to the iPod Touch. Oddly, if I simply double-click the current show in iTunes i.e. don't download it, it plays as a Movie file would play. A separate screen appears with the slideshow magnified (blurry) to the full size of the screen. Other shows play as an audio file would play.
    I read this Apple article, however it does not apply as I'm using the latest version of Quicktime -7.6. Our iTunes page may be found here.
    In My User Account>Applications Support>iWeb>Domain Sites2> I see all shows, including the current one correctly coded as .m4a.
    Appreciate any feedback or steps I can take to resolve this conundrum.

    Thanks Roger. I appreciate the feedback. I did a search, but it seems I didn't go far enough back in time. As I haven't had this problem before, I suspected it was something new brought about by either Garageband and/or iWeb in their latest renditions.
    As a test, I shared the podcast directly with iTunes. Then, via the Finder I had a look at the shared file in my iTunes Library folder. The file was saved correctly as a m4a file. So, I copied the file, then opened iWeb. In the Quicktime panel which held the original file shared from Garageband, I pasted the copied file. After saving, then publishing to MobileMe, I pinged iTunes again. By this morning, the m4a file had replaced the .mov file. All now is well.
    Crazy to have to go through this type of workaround just to publish a podcast. Bug must be in the Garageband sharing to iWeb process. Finding it is another matter. I posted feedback to Apple via Garageband.
    Thanks again for pointing me in a different direction. Appreciate it.

  • HOW TO MOVE FILES BETWEEN FOLDERS ON APPLICATION SERVER

    Hi ,
    I want to move files between folders on application servers and also on presentation server.
    Is any ABAP code available for it.
    Can anybody help me out in this.
    Waiting for reply.
    Thanks & regards,
    Nitin

    I am also interested in this post. The FB  ARCHIVFILE_SERVER_TO_SERVER workes fine for copying the file, however I also need to remove the file from its original location.
    Does anybody have a sugestion on how I can do that (in coding).
    Regards,
    Minim

  • Question on how to move files in iTune Liabrary

    All my file types--music, podcasts, and audiobook--are located in Music folder in the Library. I wish to move podcast files to Podcast folder and audiobook files to Audiobook folder.
    After trying the intuitive Windows' methods like drag & drop, I searched both online documentations and preexisting discussions on the subject, but no avail.
    Does anyone know how I can move files (Podcasts and Audiobook) from Music folder to other folders in my Library ?

    Although I can not completely claim to understand your question, I think that you are concerned with how to put together two or more songs of the same Artists' group when each songs are loaded at different times. If that is your concern, I might have a suggestion.
    You can group two or more songs, added at different times, with various groupings. The varying groupings are by Artist, Album, Genre, etc. Since if you knew how to do it with one, then you can do other ways as well; let's pick Genre for my suggestion purposes.
    First, you need to select two songs that you wish to group together. You can select both of them by highlighting the first one, then the second one by clicking the second one while holding "Ctrl" button. You should see both songs highlighted.
    After both songs are highlighted, you want to edit information of both songs at the same time. To do so, you first need to get the Form called Multiple Item Information. You can get this form by first moving your cursor over one of the two highlighted songs, then "Right" click. You might get a dialogue box, which is to verify whether you really want to modify information on multiple items. When you get such dialogue box, click on "YES." After that, you should see the Form I mentioned--Multiple Item Information.
    In this Form, you might see some or most of the fields already filled. If not, you might want to manually type in whatever you wish. For our purpose of grouping them together, you need to modify two fields--Boxes named "Compilation and Gapless Album." For each of those boxes, you will want to select "Yes" from its drop-down menu. Each drop-down menu is located at the right corner of each Box. You will also want to fill in the check boxes, located on the left them, by clicking in them.
    After sequentially following all those steps above, you can now click on the "O.K." button of the Multiple Item Information Form. If you followed those steps successfully, you should see both songs grouped together.
    Any further help or clarification needed, reply back with your specific concerns to which I can try my responses.

  • How to Move file / call UNIX command using ABAP Program

    Hi, ABAP Guru.
    I need to Cut & Paste file (Move file from one location to another location) on Network Shared Drive using ABAP program.
    But I can't figured out how to do this and what ABAP Command / FM / Method (and maybe UNIX command) that being used.
    Please give me the advice.
    Best regard and Thank you all.
    Nattapash C.

    all methods for your requirements should be in class CL_GUI_FRONTEND_SERVICES

  • Removing color profile (if any) from over-exposed Canon 5D mov file's

    I am working with some footage from a cameraman's Canon 5D, they are in mov format, but I am having a problem when I import them to FCP (they look the same way when I play them in QT too).
    The color saturation is extremely high, and I know it was not filmed that way on set, I want to know if there is some color profile in the mov files that Canon 5D's record and if so how do I remove them?
    Basically everything looks way over-exposed and I know the 5D is not that poor of quality.

    Below is the FCP info from one of the video files:
    It appearently uses the h.264 codec for the video stream.
    I know that the picture was not over saturated during the shoot because we reviewed it then on set, but now it looks different.
    I even put both my arms on my camera guy's shoulder and looked him square in the eyes and told him that "the Canon 5D has a reputation for being over-exposed and over-saturated, I want under-exposed, make sure you pay attention to that and review every shot". (don't worry I was being nice to him, we're friends).
    I should mention one more thing, when I place the video in a sequence on FCP's timeline, sometimes when I apply affects to it and forget to render it, there is a moment when the video looks properly exposed and then goes back to looking over-exposed when I quickly run the scrubber over it and not let FCP a chance to display properly.
    So I know, or at least have reason to believe there is a color profile in there somewhere that is causing it to look over-exposed and over-saturated. I just can't get rid of it.

Maybe you are looking for

  • Help with link to MP4 Video

    I need some help figuring out why the link to my Mp4 movies are not working. I created my website in Dreamweaver on a mac. On the video page I have direct link to several Mp4 movies which are located is the dame folder as the website is on a remote s

  • How to start a new line in BBM Blackberry Z 10?

    I'm wondering how can i press (enter) to start a new line when a BBMing in my Blackberry Z10? the same when I want to type a new Text Message!!  As when I press enter it send the message, and what i want is to add a new line to start a new sentence b

  • Issues upgrading from iOS 7.1.2 to 8.1.2 on my iPhone 5c.

    I recently returned from a deployment overseas.  While I was away, iOS 8 was released and I am now attempting to update my 16GB iPhone 5c from 7.1.2.  I have attempted to do this via wifi which gives me an error message reading "Software Update Faile

  • Content of message deleted to save memory

    Hi experts, When I click on "details" tab in message Monitoring. It gives message "Content of message deleted to save memory" and does not show the Payload of the messages too. Please let me know wht does this means"Content of message deleted to save

  • Gradients aren't displayed properly

    For some time, I have been struggling with this issue. Whenever I create a gradient in image editors such as Photoshop Elements or Pixelmator, or in the animation software I use, obvious bands can be seen. (They become more visible when I crank up th