My Sine Wave File sounds different in Logic than iTunes

I am working on creating musical compositions with embedded sine wave patterns (which I am generating in a foriegn application). These sine waves are designed to entrain the brain to different frequencies to facilitate in stimulating meditative states of consciousness in the listener.
Unfortunately, when I import my sine wave audio file (in .wav format) Logic changes it and the rhythm is frequency is twice as fast! When I play the file in iTunes it sounds just the way I generated it, but when I import it into Logic through the audio bin or simply drag and drop onto the arrange window, it sounds different and cannot work for the precise control I require for my compositions.
Does any one have any idea why this is happening or what I can do to import my audio file without changing it?
Thank you so much for any ideas/assistance,
Devlin Dewitt Donnelly

Hi DD Smooth,
you should check sample rate settings on your original audio files and make them match the sample rate settings on your logic project prior to importing them. Sounds like you are generating 48khz .wav files in your foreign app and Logic must be set to 44.1khz by default. Or the other way around
Message was edited by: Imol

Similar Messages

  • Exported file sounds different inside Audition CS6 - audio channel mapping problem?

    Hi guys. I've been working on some voice reels today, and for some reason my finished and exported files sound different to how they sound in Audition - basically, the music tracks increase in volume whenever the voice actor isn't speaking. As mentioned, this isn't happening in the Multitrack session, just when playing back the exported track in a third-party app, and has only been happening today. I've tried messing around with the Audio Channel Mapping and Audio Hardware settings in the Preferences, without any joy. I'm suspecting something's got messed up on the sound card, but just wanted to check that I haven't missed something painfully obvious inside of Audition!
    Specs:
    Windows 7 Home Premium, SP1, 64-bit
    AMD Phenom II X64 2.8 GHz, 8GB RAM
    Adobe Creative Suite 6 Production Premium
    M-Audio Delta Audiophile 2496
    NVIDIA GeForce GTX650Ti 2GB

    Can't answer that without quite a bit more information about the third-party apps, what exactly you're exporting, workflow, etc. It won't be a mapping issue though - that will only affect the output of Audition to a hardware device.
    But if you are exporting a single file with everything on, and it plays okay in Windows Media Player, for instance, then whatever is happening isn't with Audition, but whatever you are putting it back into. It sounds as though some sort of auto-leveling system is at work - and Audition wouldn't do that unless set up very specifically to do so.

  • Logic 7 songs sound different in Logic 8 - why?

    i am not guessing. bounce, phase invert, mix the two, and it is really strange.
    what i've seen quickly, that the adaptive limiter plugin has changed a little.
    setting a -0.1dB ceiling in 7 causes -0.1dB peak, in 8, it will be 0.
    but there must be something else. or is it the adaptive limiter plugin that has changed?
    can't be. the comparsion above shows it will be something else.

    SteveDjokes wrote:
    1) Did you try phase canceling the bounces b4 converting them to Mp3? If so What happened
    2) Have you compared the wave files at close zoom - to see if they seem to differ somehow
    3) Did you bounce without any plugs running at all - if not it would surely interest the H out me if you were to.... and then compare
    Hi Steve,
    This was all mentioned in that original thread, but I realize it got kind of long, so I'll reiterate here.
    First off, all my tests were done with 24 bit/44.1k files. The mp3's only came into existence once I decided to post the files on-line.
    My first test was to bounce a section of that song in version 7, using no plug-ins. I then opened that same mix in version 8, and hit bounce. Phase flipped the mix in version 7, against the mix done in version 8, and it completely cancelled.
    I then added some Logic EQ's and compressors, as well as one Space Designer verb (used only a bit on the snare) in Logic 7, and then bounced. Opened the new mix with plug-ins in version 8, and then bounced. Phase flipped those two mixes, and they did not cancel.
    I never did look closely at the waveforms to see if anything visibly was happening. Although the mix that didn't null wasn't "almost" nulled, the acoustic guitars were quite audible, and the drums, although they sounded distant (which I chalked up to the use of the Space Designer verb) were very audible as well.
    What I found REALLY interesting though, was I had some compression on the bass, and some EQ on the electric guitars, and both those instruments completely cancelled in the null test.

  • Broadcast Wav files from PT to Logic not moving to original record position

    Okay, my system needs upgrading but I'm stable (at least I think I am til now!) I have a TV network sending me broadcast wav files from PT. They shoot their video on a 24 hour clock. I'm to be editing and mixing (in Logic) their audio tracks from PT and send them back as broadcast wav files for them to sync back to their video. After years and years of recording and producing music, this TV world is a first for me. 2 issues at hand that are causing trouble.
    NUMBER 1: The wav files will not snap to original record position. I keep getting an error message about "out of range" and of all craziness with a negative SMPTE number. ??? The prompt suggests an offset error. But there isn't I can find. Start time is set to 0:0:0.0.0 here and at the TV studio. They film at 29.97d. That matches as well. Sample Rate is correct at 48k 24bit. I've uncovered every thing I can think of. I did have to set the tempo down to 5 BPM in order to see a full 24 hours in SMPTE.
    NUMBER 2: I can't figure out how to see the timestamp start time of the audio files in the audio window. I have every option turned on in the VIEW option, I can see length, but I see nothing about start time of original record time. Am I missing something simple here? Seems like a very standard option that should be easily accessible. It would allow me to prepare the location on the time line.
    Overall, I'm hoping I can do all the above with my current rig but realize that the clock is ticking toward a whole new system with Logic 9.
    Help please. Don't want to lose this client.

    Sure do appreciate everyone's willingness to help. Setting SMPTE start to 24:00:00.0.0 didn't work either. I confirmed with the studio manager at the TV station also that they run a 24hour clock with 0 being midnight.
    I'm really hoping that the error is on their end.
    *It would help me if anyone knew how to VIEW the Timestamp info attached to the wav files. That would at least give me an approximate idea of where they should be.*
    I'm supposed to be editing and mixing the voice dialog from numerous different scene takes that were shot throughout a day of filming. It's critical that I can see all these different takes that were captured over hours of open recording. Some of the files are almost 4 hours long. It's a big project and I'm sure hoping I can stay inside Logic to get it all done with excellence.

  • Playing wav files at different pitch

    Hi!
    I get the impression that the java sound package is overcomplicated.
    What I want to do is to generate music by playing sound files at different pitch (nothing special, I think).
    This means, program start -> load some files.
    mouse click -> play a sample at a pitch (sample rate factor) defined by the mouse position.
    Does anyone of you have some example code where this works?

    So, what I would like is a simple class like this.
    SoundClip soundClip = SoundClip.loadFromFile("glassbreak.wav");
    float volume = 40;
    float frequencyFactor = 2; // play at double speed = +1 octave
    soundClip.play(volume, frequencyFactor);
    I know there is a class AudioClip in the sound package, but it's all so complicated get this thing to play!!!

  • Imported Wav file sounding poor quality

    Hi I have a wav file that I've imported, which sounds completely fine on regular playback but becomes very poor quality when imported into the timeline.  I know on FCP7 you had to convert to an AIFF but I've not had this issue before on X.  Any suggestions?

    Don't worry problem solved - I converted to aiff and it's ok.  Obviously just prefers the mac format

  • Software loops sound different in Browser than in track window

    After dragging some of my software loops (all .caf's) from the browser to the track window, the sound does not play correctly. For example, a harpsichord in the browser sounds fine, but when I drag it into the track space, the resulting midi-file sounds more like some type of an organ when played. I'm using the same key and tempo.
    If I play (doubleclick) the .caf from the "Apple Loops for GarageBand" library file, it plays fine from QT Player.This is only apparent on some loops...not all.....I do have a midi keyboard attached, but the same thing happens if it is disconnected.
    Thanks for any help!

    Try and Re-Index all your Loops?
    Go to your Loops Library, and right click in the actual loops section at the bottom where it shows all your loops. Click on the Re-Index User Library. That should put everthing in place again, if you still have all the files.
    P.S.
    My loops were also sounding very funny, almost chorus like. When I'd put the loop into my timeline it would sound normal. Once I re-indexed everything the files sounded fine again, in both the Loops Library and on my timeline.
    Good Luck

  • I can't move music files to different folders in my itunes library

    First, I have not created files in my itunes library for a while, and I could swear it was a lot easier years ago! ALL that I want to do is add the new music I've purchased or recently added to a folder that already exists in the playlist.
    1) All my recently added songs have been purchased through my iphone, I'd like to move them to a folder.
    2) When I connect my phone to my computer, I see the tab to click on my phone. I do, and it opens the content of Music in my iphone.
    3) In this content, there are folders to the left listed, beginning with Music, Movies, Purchased, Recently Added, Recently Played, "My Name" Favorites, another specific folder I labeled to seperate music, and then another Purchased folder.
    4) I WANT TO MOVE or copy my newly purchased music file to these folders so when I play them on my phone, I can SIMPLY choose the file that is asscoiated with my Favorites or other choice.
    Why Is This So Difficult to do! Or is it that easy and I'm overlooking the past hour I've spent trying!
    Second part of my aggravation, why can i NOT sort the files in a music folder by song name anymore?! We used to be able to click at the top of the listing, Name, Aritist, Albulm etc. to sort them alphabetically and make a search easier depending on , but now I can no longer do this.

    This happened to me too but I only tried one song and then gave up. I thought it was a fairly popular song.

  • File size different in LR than in "file info"

    After cropping an image (36MB) and doing some adjustments and then saving as a standard JPEG - high quality - I go back into LR and the new image shows it's 10.2 MB. When I quit LR and do a "get file info" on the same file it tells me that the image is 1.2 MB's. What gives?

    Based only on what is included above, I would guess that the 36MB file was in RAW format which you then converted to a JPEG. Would that be correct? Going from 36MB to 12MB just doing a conversion to JPEG is not all that unusual. If you set up your camera to record both a RAW and a JPEG image for the same photo, you would see this sort of radical size difference because the lossy compression algorithms used in the conversion to JPEG will often just throw out up to 2/3 of your image data. The typical dSLR will record data at 12-bit or 14-bit color and Lightroom internally stores a RAW image at 16-bit color depth. A JPEG uses only an 8-bit color depth so there goes most of your data. Another thing to check is what resolution you used when you did the conversion. By default, the conversion is set up for screen which uses a resolution of 72-ppi. Great for display on the typical monitor but not much else. You will want to use at least 240-ppi for printing and 300-ppi for anything else.
    Finally, unless you are intending to either send the photos to a web server or print them, I would not recommend converting them to JPEG. There is a massive loss of image data that is incurred and then, each time you save the image, it is compressed again and even more image data is lost. After the third compression, your JPEG image is pretty much useless as the quality is so bad. I convert my RAW images to DNG (my personal preference) and they are archived that way. When I am ready to print an image or send it to a web site, I export the image as a JPEG and store it separately, outside of my catalog though I will create a new collection for the image(s) or add them to an existing one so I know the status of the image but I always maintain the original in a RAW format.

  • Why does recording sound different when bounced to iTunes?

    What I hear in GarageBand - a nicely mixed finished song with great fidelity - sounds tinny and flat once bounced to iTunes.  How do I get what I'm hearing in GarageBand to be what I hear in iTunes?

    Good point, Christoph
    OfViceandMen, are you using iTunes '11?
    The playback settings are distributed:
    In Preferences > Playback are "Sound Enhancer" and "Sound Check",
    In the "Window" menu is the "Equalizer".
    Happy Easter to you all!

  • Audio/Movie Files Open in QuickTime Rather than iTunes

    I work with online classes at a college, and we have been posting m4a and m4v files in our online courses. we put the actual files on our Mac server and post the links to the files on course webpages.
    Question: In the past, when students clicked on an audio/video link, they got the option to "Open/Save/Cancel" (on a Windows machine), or, if they had the files associated with iTunes, clicking the link would trigger the file to open in iTunes. Now, all the links are automatically launching with QuickTime with no options given.
    We really need files to either open with iTunes or have the save option. Any ideas about how to stop QuickTime from grabbing the files?
    sue
    PowerBookG4   Mac OS X (10.4.8)  

    I had a similar problem a few weeks ago, but nobody gave me a reply. I don't know if it helps in your case, but I eventually found out it was my firewall blocking the download.
    I could view SD trailers but not the HD ones for some reason.

  • How do I manage radio stations in a different playlist other than itunes's main library?

    First of all, I don't remember having this problem before. Second, for being apple's flagship software product, it's still really really buggy, but I digress.
    In anycase I have some radio stations that I want to put into a play list on itunes. The problem is that they show up in my main music library as well, this is an issue when I just want to listen to my playlist and they pop up. I want my radio stations to be contained differently from my main music stash. As I said earilier, I don't remember this being like this before. Pretty much, ever since apple change the iTunes icon, I've been less and less thrilled about the changes being made to itunes.
    Sincerly,
    (Someone who is Grumbling about how itunes doesn't handle album art very well, and gets annoyed when itunes inadvertanly delete's it.)

    This question is no longer relevant. I now have a wonderful MacBook Pro and am happy using iTunes

  • Suddenly after syncing...Library organization different on ipod than itunes

    Does anyone know how to fix the organization of albums on ipod? I have everything organized as it should be in itunes "Album/by Artist" and everything is in the correct order. Recently upon adding new albums, after syncing, some albums are simply moved to end and no longer in alphabetical order, but only on my ipod. Most still are, but some have moved. Not even the newly added...just random ones. I've tried resyncing. Itunes is organized correct and ipod is not?

    Hey there...I eventually found a common thread with all albums that got moved to the end of the alphabetical list on the ipod. Ipod and Itunes must sort with slight differences. All the albums at the end of my list were checked as "part of a compilation". This might be the same problem you are having. Often on a album, if there are any "guest artists" listed with even one song, if they are listed (artist & so and so) with the "artitist" in that sorting field, the album will be listed as a compilation. I haven't found any problems with simply unchecking "part of a compilation". This also moved the albums back to the alphabetical ordering on the ipod. Find a album that may be in the correct spot on iTunes, but not in your ipod...select it...select entire album/all songs...either under file or by right clicking, go to "get info". You will be asked if you want to edit for entire album, select yes. Go to the "options" tab and deselect "part of a compilation" and click "ok". If this was your problem, it should appear in alphabetical order on your ipod after that. Lemme know if it works...Rock on!

  • How come my music will not download to my phone when i get music from a different source other than itunes?

    I am having trouble transfering music on to my phone when i get music from another source like amazon mp3. Anyone know why that is?

    You don't dial *228 on a 4G LTE phone to reprogram it or update the PRLs ... that's handled by the SIM card. 
    You might try a new SIM card; they're free at your local Corporate Verizon store or by calling Customer Service.

  • Audigy 2 NX - intermittent interrupted sound while playing 997Hz sine wave f

    I just now bought Audigy 2 NX last week. When I play a 997Hz -3dB sine wave sound file, the sound coming out from SPDIF and analog output jacks are not continuos, it is interrupted intermittently. The sine wave audio file is provided by a famous audio instrument company Audio Precision. I must play the sine wave file to verify my Audigy 2 NX. Unfortunately, the sound is not continuos. The sine wave file can be played very smoothly a nd correctly on other notebook PCs. Is there any one who knows what happened to my Audigy 2 NX ?
    Why do I play the 997Hz sine wave file ? I am responsible for design notebook PC hardware. I must test my audio design to see if I can pass Windows Vista Logorequirements or not. My company bought the Audio Precision instrument for the test. In order to test Microphone Input characteristic with the instrument, I must buy Audigy 2 NX to play the recorded audio file. Audio Precision recommend me to buy Audigy 2 NX for the measurement. The analog output of Audio Precision is connected to the Mic-In of my notebook PC. The notebok PC will record the 997Hz sine wave sound from Audio Precision. After recording the sine wave sound, I play the recorded file on my notebook. The file will be sent to Audigy 2NX from USB port, and then the Audigy 2 NX will send the sound to Audio Precision through SPDIF. Audio Precision will analyze the sound coming in from the SPDIF port. So I can measure Mic-In quality.

    Nikopoika wrote:
    I have same kind of problem with my "Soundblaster Audigy 24-Bit", cos' I can't enable the "Advanced HD" effect in FEAR and Quake 4. I've heard that it can be fixed with a patch but I'm not able to install any of these patches I have downloaded from creative.com, everytime I try to install some of these patches it causes a fatal error which says "Make sure you have installed previous drivers correctly". I have tried everything but nothing seems to work.
    Hello fellow sufferer
    As I've found out so far the Advanced HD in F.E.A.R. is EAX Advanced HD 4.0 and our SoundBlasters are, whysoever, limited to EAX 3.0. I guess the patch you tried to install was the EAX 4.0 patch for the Audigy 2 series (of course my NX is not included,arghh...).
    When I read "EAX ADVANCED HD Game Effects deli'vers mind-blowing gaming realism." in the Audigy 2 NX description on the creative site I did not realize that this "mind-blowing gaming realism" is strictly limited...

Maybe you are looking for

  • Spry tabbed panels - Different Hover Class for each tab

    Already posted this in the general Dreamweaver section, but just realized there was a specific Spry section. So, my apologies for the repost. I'm setting up spry tabbed panels, and I'm wanting to use an image for each tab, with the text already on it

  • Billing document number range

    Dear All, With the same billing type how to maintain different number ranges for different branches? Advance Thanks. Thanks with Regards, Srinivasan

  • Taking a datafile offline

    Hello - I am running an Oracle 8.1.7.4 database in archivelog mode. Can I take a datafile offline, rename the datafile, then bring the datafile back online? For example, 1. alter database datafile 'string' offline; 2. rename the datafile at the os le

  • Maximum size of XML files and number of IDocs for IDoc receiver adapter

    Hi Guys, We have an XML file to IDoc scenario where XI picks up an XML file with multiple Customer records in it, it does a simple mapping and creates one DEBMAS06 IDoc per record in the XML file. All IDocs are sent in a single file in XML-IDOC forma

  • Support 4Gb files on Oracle 9.0.1

    Why new version of Oracle Database 9.0.1 on Linux has no support for files more than 4Gb (bug 1759839)? Linux works with large files and modern hard disks are 45-60Gb in size. Oracle 9i on Linux still is a disabled...