Since 10.0.1 dropping wave files in the arranger leads to a empty region.

Logic X 10.0.0. had no problems with the directly dropping .wav files from the finder in the arrangement area.
since upgrade to 10.0.1 this leads to a event with just a bit noise in it.
When I import it via the menu function, the same process leads to a functional event with the wave file.
Am I the only one?

Hmmm... I can't reproduce the issue you have... Works normal here with LPX 10.0.1

Similar Messages

  • Logic Won't Let Me 'Drop' .Wav Files Into A Session??

    Hi all,
    Trying to simply drag and drop .wav files from a folder on an external hard drive into an empty Logic Pro 9 session.  The audio tracks are stereo (have also tried mono) and the input/outputs seem to be fine.  The session is also saved to the external.  I am not using an external audio interface.
    I have also tried importing using the 'File-->import' commands and this allows me to import one file at a time, but not in bulk.  This seems odd as I could've sworn I didn't have this problem in past attempts.
    Let me know your thoughts please!
    Ps. Logic rules, but I'm very tempted to get acquainted with Pro Tools!

    GTBannah wrote:
    Are you sure they are audio tracks, and not MIDI or Instrument tracks?
    Ha ha... Yes I am sure.  A good thought, though I did double checked this before posting the problem.
    Could it be something to do with the sample rate?  Ie. the audio files were recorded at a certain sample rate and now I need to make it match with the sample rate in Logic?

  • Visual wave files in the play bar

    How do I bring back the visual wave files in the play bar? They've disappeared since the last upgrade.

    On my 8 year old iTunes there's a little triangle on the left you click to change displays.  Have you tried clicking around on things there?

  • Drag-n-drop a file on the Browse button?

    Hi,
    Recently discovered I can drag-n-drop a file onto the Browse button in web applications prompting for file upload. Would like to find out more details about this capability. When was it implemented? What are the details of the implementation? Is it a standard capability I can count on for my application use?
    -Scott

    http://techreport.com/news/18147/firefox-3-6-supports-drag-and-drop-uploading
    https://hacks.mozilla.org/category/drag-and-drop/by/comments/as/complete/
    https://wiki.mozilla.org/Firefox/Feature_Brainstorming:Form_handling_and_text_areas
    Above link tells you about drag n drop feature of firefox along with video

  • If I actually import full files into FCP, can I then drop source files into the trash?

    If I actually import full files into FCP, can I then drop source files into the trash?   I'm editing now and want to free up HD space.

    Just to confirm: in Preferences, Import, Files..."copy to library storage location" is selected.
    So I assume I can dispose of source files.
    Thanks for quick reply and also the the cautionary note. 
    This is low-level family footage I export to .mov and share on YouTube, so originals are not critical.

  • I put my ibook author file in the trash and then accidentally emptied my trash. Is there a way to recover the file? Does iBooks Author have a backup?

    I put my ibook author file in the trash and then accidentally emptied my trash. Is there a way to recover the file? Does iBooks Author have a backup?

    if you use time machine, you should be able to get it back that way. Although IBA saves changes on an ongoing basis, it doesn't create a back up or supplemental copy elsewhere on your drive.

  • Cannot hear imported wav files in the output

    Hi, I am using Macromedia Captivate. Version 1.01.1447
    I have imported a wav file and when I am playing the slide containing the audio file everything is fine, in particular I hear my audio file. However, when going to the preview of the entire slideshow (or just 5 slides), or if I preview the show in the browser, I do not hear anything. Also, when exporting the movie as a standalone file, I don't hear anything.
    Does anyone know a solution for this issue?
    Thanks!

    If you can get to the instrument editor, drag and drop your regions or files onto the keyboard and answer the following questions. To preview it have an EXS24 loaded up with EXS Instrument #5678 (or whichever number it happens to be.

  • How do you load wav files in the EXS24?

    Hey all - I'm new w/the EXS24 and am trying to import wav files off a sampler CD I bought. I can't figure out an easy way to do it. When I imported some Akai CD's before, it was as simple as opening AKAI convert and inserting the CD. Now, when I go to the "load mult-sample" for these wav's - it wants me to do everything one at a time. Surely, there's got to be an easier way than loading hundreds of samples one at a time. Any suggestions from all you EXS24 pros out there?

    If you can get to the instrument editor, drag and drop your regions or files onto the keyboard and answer the following questions. To preview it have an EXS24 loaded up with EXS Instrument #5678 (or whichever number it happens to be.

  • How to play a wave file through the DAQ board?

    Hi there,
    we want to play a wave file that is saved on the harddrive via the DAQ board. Means we want to connect a amp to the analog output of the DAQ to amplify the sound and play it through a speaker.
    We couldn't find any VI that does that. Can anybody tell us how to play a wave file, or perhaps even send us a VI that can do that?
    Thanks a lot for your help
    Martin - Physical Optics Corporation

    Hi Martin,
    The only example that I could find on how to do this was using our
    older Traditional DAQ drivers version 6.9.3.  If you're using Traditional
    DAQ drivers, the vi can be found here. 
    The example reads a 8-bit mono .wav file (an example .wav file is included in the .zip file) and writes it to the analog out of your DAQ card.  I've updated the
    example to work with our newer DAQmx drivers and attached it here.  
    I hope this helps,
    Paul C.
    Message Edited by Paul C. on 08-14-2007 05:47 PM
    Attachments:
    daqmx_wav_file_to_ao_output.zip ‏27 KB

  • Play WAV files into the .jar

    Hello,
    I'm doing small application Java with Netbeans.
    I need is to play .wav file sounds are incorporated into the jar.
    I do not want to use external libraries or external sound files, etc.. I want to go with my .JAR to the office, home, etc ... just need the JAR to hear the sounds.
    I've created a folder "Sounds" in "src" and in that place I have my sounds. (Project / src / sounds). It's a way to incorporate a JAR file, or am I wrong?? Run independently of the sound files.
    At the time of reproducing the sound I do the following:
    Clip sonido = AudioSystem.getClip();
    File f = new File(getClass().getResource(/Sonidos/alarma.wav).toURI());
    sonido.open(AudioSystem.getAudioInputStream(f));
    sonido.start();
    If I run the program with netbeans, I play sounds, but which only transfer my .JAR to another computer, does not play ...
    Any ideas?
    Thank's.

    I don't understand, before I had done as you have written me, but did not work, but now it works.
    Problem solved. Thank's.
    Posting the code here:
    InputStream path = getClass().getResourceAsStream("/Sonidos/alarma.wav");
    try
    sonido = AudioSystem.getClip();
    sonido.open(AudioSystem.getAudioInputStream(path));
    sonido.start();
    }catch(Exception fail)
    System.out.println(fail);
    Edited by: 892291 on 19-oct-2011 10:37

  • Audio CD iso from wav files on the shell

    I googled around for this but haven't found a solution.  I want to take a directory of wav files and write them to an iso file that can be burned off to a CD (a functional audio CD) at a later time.  Closest I found is using /usr/bin/genisoimage but it doesn't make an audio CD image, rather, just a data iso.
    genisoimage -o test.iso ./music/*.wav

    graysky,
    this is how a simplified single process script could look like:
    #!/usr/bin/python
    import os
    # Grab all subdirectories within the current directory
    search_sub ="find ./* -type d"
    dirlist = []
    for subdir in os.popen (search_sub):
    dirlist.append(os.getcwd() + subdir[1:-1] + '/')
    for cur_dir in dirlist:
    os.chdir (cur_dir)
    os.popen ("shntool cue *.flac > foo.cue")
    os.popen ("shntool join *.flac")
    You might want to give it a shot at a trial copy of your audio directories.
    Edit:
    A quick prototype for multiple encoding processes:
    #!/usr/bin/python
    import os
    import multiprocessing
    def bincue ():
    while not q.empty():
    cur_dir = q.get()
    os.chdir (cur_dir)
    os.popen ("shntool cue *.flac > foo.cue")
    os.popen ("shntool join *.flac")
    # Init Queue for found sudirectories
    q = multiprocessing.Queue()
    # Grab all subdirectories within the current directory
    search_sub ="find ./* -type d"
    for subdir in os.popen (search_sub):
    q.put (os.getcwd() + subdir[1:-1] + '/')
    cores=multiprocessing.cpu_count()
    for i in range (cores):
    process = multiprocessing.Process(target=bincue, args=())
    process.start()
    Last edited by Darksoul71 (2012-07-05 14:47:54)

  • How to return Firefox to playing .wav files without the vlc plug-in?

    Win XP, Firefox 33.11. In an html document are links to PCM, 16 bit .wav files and
    other links to .mp3 files. Opening the document with Firefox and clicking on an .mp3 link
    plays in the `native' Firefox player OK. However clicking on a .wav link seemed to fail to
    play. Using Tool/Options/Applications, wav files were associated with VLC. Now clicking
    on a .wav link plays OK in a Firefox screen displaying the vlc logo.
    However, later the following was found this under the Firefox help information
    "Firefox can play the WAV container format (.wav, .wave file types) containing uncompressed
    audio in PCM at 8 or 16 bits per sample".
    It seems the .wav files should play with the `native' Firefox player.
    How can the link to vlc be removed. Removing the plug-in is not a solution as it is used
    for many other file types.

    Firefox will only use the HTML5 media player when the AUDIO tag is used.
    If EMBED or OBJECT is used then Firefox will always use a plugin.
    *http://developer.mozilla.org/Apps/Build/Audio_and_video_delivery

  • Is it possible to import your own wave files into the EXS-24?

    I have been wondering if it is possible to create your own samples and import them into the EXS-24.
    I just created some short wave files of a voice and want to recall them whenever I need them. Is that possible? And if yes? How exactly?
    Thanks!

    Sure, open an empty patch in EXS, hit the edit button and drag the wavs from your finder into the sample zone, a menue will show up asking you what samples to map to which keys. Read the manual about the EXS, it sure helps...

  • Itunes won't let me drag-n-drop .m4r files into the 'TONES' library (for ringtones)

    Can anyone help?  I have created ringtones by converting my song to AAC, then shortening it to 40 seconds, then saving it as .m4r file extention.  I have changed my preferences to show "Tones" library in my iTunes.  Only problem is, iTunes won't accept the ringtone when I try to add it.  I tried to add it by grabbing it from Finder and dropping it into iTunes...but nothing adds???  Any suggestions?

    In order to drag and drop, you need to have the box next to "Manually manage..." on the iPad summary pane checked.
    This was changed (in V 10.0?)
    Items dragged to the iPad/iPod will still get copied over, even when not manually managing.
    Select the tabs across top and the dragged items show up at the very bottom under *Manually added*.

  • Loading WAV file with the EXS

    I created a new instrument in the options menu in the EXS24, then created a new zone, then clicked on the audio file option in the zone parameter box to bring up the option to select the audio file. I loaded the WAV sample in and when I play my MIDI keyboard I get the Default EXS sound and not the sample whats going on?

    You have to:
    - SAVE the instrument, giving it a name. The best workflow is to save the song as a project, then save all the exs instruments that you create for that song ("specific" to that song, like vocals for example) in the "sampler Instruments" folder that you will find inside the project's folder. If you bound to create more "generic" exs insts, then you can save them in the main Sampler Instruments folder (I've created sub folders named "my drums", "my bazz", "my fx", etc.)
    - LOAD the inst that you've just created in the EXS (black and green slot)
    You're done.
    BTW... exs is not that intuitive, isn't it?

Maybe you are looking for

  • A strange power problem I can live with, but would like to know what it is

    Ok, for about 6 months or so, my 1 GHz 12-inch PowerBook with 768 MB of RAM, has been having a strange problem with charging the battery. The problem has recently gotten a little stranger, but nothing too major (it could probably be fixed with a part

  • Having problem in visible/hidden

    I am using same script under two subform section 1 and section 2. When click on button under section1, this script is working well, but section 2 not working. Again if I click on the button section 2, it is working well, but section 1 not working the

  • SCOM 2012 UCS Management Pack Configuration/Administrator Guide

    Hi, We are planning to use SCOm 2012 for UCS Monitoring and Reporting purpose.  Is there any detail configuration/Administrator Guide available? Is there any best practice document availble to monitor critical ports( Network uplink/Storagre Uplink) p

  • TS2446 What if I can't receive the rest password email and can't  remember the answers to security questions

    I want to reset the account since it is secured. However, I can't remember the answers to security question. Also, I can't receive the mail for reset password. What shplould do?

  • Sshfs/fuse

    sshfs/fuse does not work anymore when you compile it yourself (like from Ports). This is a severe regression in functionality. The problem appears to be related to kernel module signing: 30/10/2014 14:18:38,979 com.apple.kextd[19]: ERROR: invalid sig