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.

Similar Messages

  • Audio Channel Mapping problems

    Hi Everyone,
    I can't seem to find a solution to my problem.
    I use Audition in two situations.
    Firstly, with the internal soundcard (Mac Book Pro) when I'm out and secondly, when I'm at home with my focusrite scarlett.
    When I'm out, Audition won't play as it can't find the focusrite.
    Question: How do I use Audition in both situations?
    My work around is to start up Audition with the shift key when I don't have the focusrite with me.
    Any solutions that anyone can suggest?
    With Logic, it just shows up a message saying my Focusrite isn't available.
    Many thanks!

    Thanks, ryclark for your reply!
    When I'm not using the Focusrite:
    The "Device Class" only shows "CoreAudio."
    "Default Output" only shows "Built-in Output."
    On the "Audio Channel Mapping" page, it has 
    "Output":Device: Scarlett 2i2 USB" and
    on "File Channels":  "1[L] Unknown-Device query failed."
    So, it's remembering the Focusrite Scarlett, but then can't find it, so stops.
    Weird!
    Surely there's a workaround?
    Thanks!

  • QuickTime Pro Scripting - Audio Channel Mapping

    Does anyone know if there is a way to script audio channel mapping and renaming in QuickTime Pro 7? I deal with a lot of 5.1 audio that needs to be channel mapped and renamed to its specific channel  for iTunes uploading. I'm currently doing this task manually in QuickTime Pro, but I'd love to know if there is a possibility to automate this task. I'm new to scripting, and its been very helpful with a lot of my day to day tasks, but I can't seem to figure this one out. Any suggestions would be awesome! Thanks!

    Hello
    A QT file contains sound tracks and a sound track contains audio channels.
    If you mean your QT file has 4 sound tracks each of which contains one audio channel marked as "Mono", you may try the following script. Please make sure you have complete backup of files in advance, for this script will overwrite the files.
    Script is basically the same as the one posted in the following thread except for the channel_layouts_map definition.
    Quicktime Pro Applescript - Assign audio channels
    https://discussions.apple.com/thread/6055790
    Notes.
    * You need to have QuickTime Player 7 Pro. QuickTime X Player is useless for this.
    * You need to enable GUI scripting.
    cf.
    OS X: Using AppleScript with Accessibility and Security features in Mavericks
    http://support.apple.com/kb/HT5914
    Briefly tested with QuickTime Player Pro 7.6.6 (1710) (QuickTime version 7.6.6 (1800)) under OS X 10.6.8.
    Good luck,
    H
    on run
        open (choose file with prompt ("Choose movie file(s)") ¬
            of type {"com.apple.quicktime-movie", "public.mpeg-4"} ¬
            with multiple selections allowed)
    end run
    on open aa
        set channel_layouts_map1 to {¬
            {1, 1, {"Unused"}}, ¬
            {2, 2, {"Unused"}}, ¬
            {3, 3, {"Mono"}}, ¬
            {4, 4, {"Mono"}} ¬
        set channel_layouts_map1 to {¬
            {1, 1, {"Unused"}}, ¬
            {2, 2, {"Unused"}} ¬
        repeat with a in aa
            set f to a's POSIX path
            set k to count_sound_tracks(f, {_close:false})
            if k = 4 then
                remap_audio_channels(f, channel_layouts_map1)
            else
                -- ignore it (just close it)
                close_document(f, {_save:false})
            end if
        end repeat
    end open
    on count_sound_tracks(f, {_close:_close})
            string f : POSIX path of QT movie
            boolean _close: true to close document, false othewise
        tell application id "com.apple.quicktimeplayer" -- QuickTime Player 7 Pro
            open (f as POSIX file)
            tell (document 1 whose path = f)
                repeat until exists
                    delay 0.2
                end repeat
                set k to count (tracks whose audio channel count > 0)
                if _close then close
            end tell
        end tell
        return k
    end count_sound_tracks
    on close_document(f, {_save:_save})
            string f : POSIX path of QT movie
            boolean _save: true to save document (if modified), false othewise
        tell application id "com.apple.quicktimeplayer" -- QuickTime Player 7 Pro
            tell (document 1 whose path = f)
                if exists then
                    if _save and modified then save
                    close
                end if
            end tell
        end tell
    end close_document
    on remap_audio_channels(f, channel_layouts_map)
            string f : POSIX path of source movie
            list channel_layouts_map : list of {trk, trk_new, layouts}
                trk = (string or integer) name or index of source sound track
                trk_new = (string or integer) new name for source track (integer i denotes original name of sound track i)
                layouts = list of audio layout for channel(s) in source sound track
                    Mono
                    Left
                    Right
                    Center
                    LFE Screen
                    Left Surround
                    Right Surround
                    Left Center
                    Right Center
                    Center Surround
                    Rear Surround Left
                    Rear Surround Right
                    Left Total
                    Right Total
                    Discrete-0
                    Discrete-1
                    Unused
                e.g. 1
                   {{"Sound Track 1", "Left", {"Left"}}, ¬
                    {"Sound Track 2", "Right", {"Right"}}, ¬
                    {"Sound Track 3", "Center", {"Center"}}, ¬
                    {"Sound Track 4", "LFE Screen", {"LFE Screen"}}, ¬
                    {"Sound Track 5", "Left Surround", {"Left Surround"}}, ¬
                    {"Sound Track 6", "Right Surround", {"Right Surround"}}, ¬
                    {"Sound Track 7", "Left Total", {"Left Total"}}, ¬
                    {"Sound Track 8", "Right Total", {"Right Total"}}}
                e.g. 2
                   {{1, 1, {"Left", "Right"}}, ¬
                    {2, 2, {"Center", "LFE, Screen"}}, ¬
                    {3, 3, {"Left Surround", "Right Surround"}}, ¬
                    {4, 4, {"Left Total", "Right Total"}}}
            * this handler behaves as follows:
                1) open f
                2) scan sound tracks of document 1 for each trk and remap the track's audio channel layouts as specified
                3) scan sound tracks of document 1 for each trk and rename the track as specified
                4) save and close document 1
                * if specified trk is not found, it is ignored and no remapping is performed on the track.
                * if specified layout is not found, it is ignored and no remapping is performed on the layout.
                * if specified layout count is greater than channel count of the target track, excessive layouts are ignored.
                * if specified layout count is smaller than channel count of target track, excessive channels are ignored.
                * if trk and trk_new denotes the same track, renaming is not performed on the track.
        script o
            property map : channel_layouts_map
            property pp : {}
            property qq : {}
            -- get name and id of sound tracks
            tell application id "com.apple.quicktimeplayer" -- QuickTime Player 7 Pro
                activate
                open (f as POSIX file)
                tell (document 1 whose path = f)
                    repeat until exists
                        delay 0.2
                    end repeat
                    tell (tracks whose audio channel count > 0)
                        set {pp, qq} to {name, id} -- name and id of sound tracks
                    end tell
                end tell
            end tell
            -- remap audio channel layouts as specified
            tell application "System Events"
                tell (process 1 whose bundle identifier = "com.apple.quicktimeplayer")
                    -- open movie properties window
                    keystroke "j" using {command down}
                    tell (window 1 whose subrole = "AXDialog") -- properties for movie
                        repeat until exists
                            delay 0.2
                        end repeat
                        repeat with m in my map
                            set {trk, undef, layouts} to m
                            -- [TRK:
                            repeat 1 times
                                if trk's class = integer then
                                    if trk < 1 or trk > (count my pp) then exit repeat -- TRK:
                                    set trk to my pp's item trk
                                end if
                                tell scroll area 1
                                    tell table 1
                                        tell (row 1 whose text field 1's value = trk) -- target sound track whose name = trk
                                            if not (exists) then exit repeat -- TRK:
                                            select
                                        end tell
                                    end tell
                                end tell
                                tell tab group 1
                                    click radio button 3 -- audio settings
                                    tell scroll area 1
                                        tell table 1 -- channel assignment table
                                            set ix to count layouts
                                            repeat with i from 1 to count rows
                                                if i > ix then exit repeat
                                                tell row i -- channel i
                                                    tell pop up button 1
                                                        click
                                                        tell menu 1 -- channel assignment menu
                                                            tell (menu item 1 whose title = layouts's item i)
                                                                if exists then click
                                                            end tell
                                                        end tell
                                                    end tell
                                                end tell
                                            end repeat
                                        end tell
                                    end tell
                                end tell
                            end repeat
                            -- /TRK:]
                        end repeat
                        -- close movie properties window
                        click (button 1 whose subrole = "AXCloseButton")
                    end tell
                end tell
            end tell
            -- rename sound tracks as specified
            tell application id "com.apple.quicktimeplayer"
                tell document 1
                    repeat with m in my map
                        -- [RENAME:
                        repeat 1 times
                            set {x, y} to m's items 1 thru 2 -- {old name or index, new name or index}
                            if x's class = integer then
                                if x < 1 or x > (count my pp) then exit repeat -- RENAME:
                            else
                                set x to my _index_of(pp, x)
                                if x = 0 then exit repeat -- RENAME:
                            end if
                            if y's class = integer then
                                if y < 1 or y > (count my pp) then exit repeat -- RENAME:
                                set y to my pp's item y
                            end if
                            set p to my pp's item x
                            set q to my qq's item x
                            if p ≠ y then set track id q's name to y
                        end repeat
                        -- /RENAME:]
                    end repeat
                    if modified then save
                    close
                end tell
            end tell
        end script
        --tell o to run
        run script o
    end remap_audio_channels
    on _index_of(xx, x)
            list xx : source list
            anything x : item to be searched in xx
            return integer : the first index of x in xx if {x} is in xx, or 0 if not.
        script o
            property aa : xx
            local i, j, k
            if {x} is not in my aa then return 0
            set i to 1
            set j to count my aa
            repeat while j > i
                set k to (i + j) div 2
                if {x} is in my aa's items i thru k then
                    set j to k
                else
                    set i to k + 1
                end if
            end repeat
            return i
        end script
        tell o to run
    end _index_of

  • After opened test wav file on my audition CS6, audio file looks strange.

    Hello,
    Now I'm using Audition CS6 while other my colleges are using CS3.
    Even I checked the audio test file is well opened and played on CS3 with 26s total length, but on my CS6 this test file is reduced to 13s(half) and sound is heared faster twice.
    As for normal wav. file works well, but it's happened my test wav. file. I think there is automatically converted when opening the file. Converting has some problems on my CS6.
    Thanks,
    Alvin

    This sounds like an incorrect setting somewhere in the system for the Sample Rate. Could be to do with some settings for your local computer's audio hardware. Alternatively problems opening files a correct sample rate can sometimes be down to problems with the information stored in the .wav file header telling the software what the sample rate should be. What format, bit depth and sample rate id the Test file stored as?

  • 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

  • PPro cs6 - Audition cs6 - PPro, round trip problem

    I'm having trouble completing the round trip. I got my audio tracks from PPro CS6 to Audition CS6 without problems, right by the manual. But I'm having trouble getting that audio work back  into PPro.
    I'm working a mid-sized project (one hour class, two cameras, etc. headed for DVD). Got edit lock. Everything is done now except for cleaning up audio. After the audio I can send the whole lot to Encore for DVD making. But first, audio.
    Took the entire sequence to Audition  via PPro's  "Edit...Edit in Adobe Audition...Sequence..."  path. This worked just fine. It pushed all the audio files to Audition, Audition opened up and gave me a "make an Audition project" dialog box, etc. Nearly 100 files came over to Audition, on the right tracks, in the right order. Very nice. Made my changes. So far so good.
    What I've read in the manual says that all I have to do when I'm done is "File...Save" in Audition, then PPro will have and use the changes. Sorta like Dynamic Link, but different. So I did the the project save.
    At this point, things deviated a little from the plan. I started up PPro, opened the project, and no sign of the Audition work. Can't find a file anywhere in the project panel that says Audition on it. The files on the timeline are still the dark green of the multi-camera edit, not the lighter green of an Audition file. When I've done this for individual clips, I've gotten back a file with a name like "*Audio Extracted_1.wav" that shows up with the same green as the Audition icon on my desktop.
    So I thought, fine. Not as easy as I had hoped. I'll just have to import it manually. But PPro doesn't seem to have any idea how to deal with a *.sesx file, which is the project file from Audition.
    Should I be exporting, say, a *.wav file from Audition (how?) and import that into PPro? And if I do, is there a good workflow to re-sync this audio with my video tracks?
    I'm confused. Don't know what I did wrong. Don't know what do to fix it. Don't know how to avoid this in the future. So any help gratefully received.
    Bruce Watson

    OK, now I *am* confused.
    Just did it again (a different DVD project however), as described in my original post. This time PPro stayed open for me. So I sent all the sequence audio files to Audition via the "Edit...Edit in Adobe Audition...Sequence..." comman, then did my editing in Audition, and saved it the Audition project. Go back to PPro, and... nothing. No sign of any file from Audition in the project panel. No sign on the time line. No sign of any Audition file anywhere in PPro that I can find.
    What gives? What am I doing wrong?
    What I did get was a folder at the same directory level as my PPro project file, a folder in it with the project_name I gave Auditon when it opened from the PPro  "Edit...Edit in Adobe Audition...Sequence..." command, and then two files for every clip in the project (a *.wav and a *.pkf), and finally two more files, a project_name.xml and a project_name.xml.sesx.
    I suppose I can export a *.wav file to PPro manually. Worked before. But I'd like to learn the "correct" way, the way Adobe intends it to work.
    Darned if I can figure out what I'm doing wrong though. Help???

  • Audio Channel Mapping in Premiere Pro CS6

    I am using Premiere Pro CS6 6.0.5. Double clicking on an imported 5.1 ac3 file in my bin brings up the 6 channels in waveform in Source panel. The channels are mapped L,R,Ls,Rs,C,LFE. This does not conform to Dolby Digital standard L,R,C,LFE,LS,RS. I have tried to set the channles this way in Audio Output Mapping in Preferences to no avail.
    Question 1.-Is there a way to change the mapping to conform to Dolby Digital?
    Question 2.- I use the Surcode plug-in. Will Surcode automatically map the channels properly upon export?
    Thanks!

    Hi DAC1x,
    Have you tried to modify the audio channels from the project panel. If not, please try the steps and check if it helps
    In the Project panel, select the clip or clips you want to map.
    Select Clip > Modify > Audio Channels.
    Under Track Format, click 5.1
    Regards,
    Vinay

  • Audio track mapping problem

    I am trying to set up my audio tracks so the left channel is on audio track 1 and the right channel is on track 2. I have tried, mono, stereo and adaptive tracks and they always put both channels on only one track. How do I change this?

    Here are some other great tips -
    http://www.larryjordan.biz/premiere-pro-cs6-isolate-audio-channels/

  • Need to export file with different layers selected automatically

    I have a file with a background and various text layers.
    I want to select each text layer individually and export them to a file, but I don't want to do this manually because it would take a lot of work.
    My question is, how would i tell photoshop to export X numbers of files. Where X=number of text boxes.

    I still don’t quite follow: Should the resulting files combine one of the text-layers with the lowermost layer or display only one of the layers?
    Because I thought Export Layers to Files would do the second.
    Anyway, the following might help, You would have to enter Your intended gif-settings in the Script manually though (see »Photoshop CS4 JavaScript Ref.pdf« or ExtendSctipt Toolkit’s Help > Object Model Viewer for the correct nomenclature for the various options).
    And You should adjust the naming-procedure to Your liking, I didn’t use the actual layer-names to avoid possibly overly long names.
    Paste the following text into a new file in ExtendScript Toolkit (part of Photoshop’s installation) and save it as a jsx-file into Photoshop’s Presets/Scripts-folder.
    After restarting Photoshop theScript should be available under File > Scripts and can be assigned a Keyboard Shortcut directly, recorded into an Action or (in CS4) be used in a Configurator-Panel.
    // saves gif-copies of the backgoud-layer with one of the other layers visible in the same location as the original file;
    // existing files of the same names will be replaced without callback;
    // use it at your own risk;
    #target photoshop
    if (app.documents.length > 0) {
    var myDocument = app.activeDocument;
    // get the name;
    var docName = myDocument.name;
    var basename = docName.match(/(.*)\.[^\.]+$/)[1];
    //get the location;
    var docPath = myDocument.path;
    // get all non-layerset-layers;
    var theLayers = collectLayers (myDocument);
    // gif options;
    var gifOpts = new GIFSaveOptions();
    gifOpts.colors = 256;
    gifOpts.dither = Dither.DIFFUSION;
    gifOpts.ditherAmount = 75;
    gifOpts.forced = ForcedColors.NONE;
    gifOpts.interlaced = false;
    gifOpts.matte = MatteType.WHITE;
    gifOpts.palette = Palette.LOCALSELECTIVE;
    gifOpts.preserveExactColors = true;
    gifOpts.transparency = true
    // hide all but the background layer;
    for (var m = theLayers.length - 1; m > 0; m--) {
    theLayers[m].visible = false
    // save the copies with one additional layer visible each;
    for (var n = theLayers.length - 1; n > 0; n--) {
    theLayers[n].visible = true;
    var layerName = theLayers[n].name;
    // duplicate image before saving to avoid flattening-dialog;
    var thecopy = myDocument.duplicate (thecopy, true);
    thecopy.saveAs((new File(docPath+"/"+basename+"_"+n+".gif")),gifOpts,true);
    thecopy.close(SaveOptions.DONOTSAVECHANGES);
    theLayers[n].visible = false
    ////// function collect all artlayers //////
    function collectLayers (theParent) {
    if (!allLayers) {
    var allLayers = new Array}
    else {};
    for (var m = theParent.layers.length - 1; m >= 0;m--) {
    var theLayer = theParent.layers[m];
    // apply the funtion to layersets;
    if (theLayer.typename == "ArtLayer") {
    allLayers = allLayers.concat(theLayer)
    else {
    allLayers = allLayers.concat(collectLayers(theLayer))
    return allLayers

  • Audition CS6 - won't record sound but will play...

    Hi,
    Hoping someone can help. I'm using audition CS6 and having a problem recording. When I arm a track and press record the song I have recorded will play, the record button highlights red, however, no waveform bar appears on the selected track and as such no audio gets recorded.
    To give you some background information - I haven't come across this problem before. I have a driver booster software that upgrades drivers when new versions are available. When my built-in mic (using a laptop) driver was updated I noticed the sound recording was terrible. I'm unable to perform a system restore due to a disk error that I can't fix so I went back to the old version of the driver. I couldnt then record - it was giving me the sample rates dont match error but I managed to change the sample rate of the speakers and input to 48000Hz to match the sample rate of the session. Another thing I adjusted was the input as it was selected as none.
    This hasn't helped, unfortunately. If I create a new session I am able to record no problem but I have sessions I'm still working on that won't let me record audio to.
    Sorry for the long winded story but any help would be greatly appreciated and if you require any further info let me know. Also go easy on me as I am new and won't be as advanced as most of you on the technical side!
    Stephen

    For style council, I think ryclark's idea is a good one.  If the saved session is a different sample rate than your system is set to, it could be an issue.
    For orbsphere, one suggestion is that you go to your Windows control panel (assuming you're on Windows--I assume Mac has similar but don't know about it) and shut down all system sounds.  Also, when doing sound recording shut down things like browsers etc. that may try to grab your computer's sound system and change settings on you.
    Also, it involves spending money, but an external USB sound card with ASIO drivers will both improve quality and bypass the internal sound system with one that won't be "grabbed" by other programmes.

  • Audition CS6 Mac Won't Play Audio Interface Preference Issue

    Hi Im having some problems with Audition CS6 mac. I have the full master collection and only encounter this issue with Audition.
    On my Macbook pro
    I use my internal speakers/audio or a vrm box audio interface, occasionally Ill use a fasttrack pro to record. My problem occurs after I use the audio interface. When I next open Audition set up for the built in speakers/audio and hit play, it says playing but nothing plays. 
    When I open Audition after using a external interface going back to my built in macbook audio I get a pop warning that:
    "Your systems audio hardware settings have changed. Would you like to go review Audition's audio hardware preferences?"
    I click yes,  go to that everything is set for internal mac audio,
    hit play, says playing bottom left, then  just sits there.
    I noticed today when it did this, that it if I go into the Audio Channel Mapping Preference, it shows what ever audio interface I used last on the output/not working on it. I am unable to change theses settings.
    I reboot after changing audio interfaces, etc.
    I can delete my Audition preference files in my user folder and it functions again, but that also entails rescanning all plugins which takes some time.

    I just found that removing MachineSpecificSettings.xml in the user/preferences/adobe/audition/5.0/  folder will get it to play again under the internal audio settings. And when I look at channel mapping it shows the internal audio.

  • Adobe audition cs6 play problem

    Hello!
    i've just installed audition cs6, but when i open a song and hit the play button nothing happen, if i want to create a tone, same thing, i just cannot play anything on cs6, i have windows 8 and i updated audition to the latest version, what is the problem ?
    Maybe it's a windows 8 problem, that wouldn't be the fist time, but i check the technical preferences and windows 8 is there, i've changed some settings in the audio hardware (in the preferences menu) but still nothing, i still cannot play something in cs6
    Can somebody help me to solve this 'bug...'
    Thank you
    Stephan
    you can email me at [email protected]

    Hi Stephan
    Thank you for the additional information on your sound card.
    it is always helpful to give as much information as you can about your setup so that
    people can give you more appropriate help.
    Are you on CS6 Adobe,this supports MME cards.
    If you are on CS6, go to edit, preferences, Audio Hardware,
    MME should be shown as the device class.
    Below this your Default input and output should be your Soundblaster sound card.
    The Master clock should also be the Soundblaster, if you haven't got any additional cards
    attached to your computer the Soundblaster should be the only option.
    Set the latency to 200 and the sample rate to 48,000, The Soundblaster cards are usually set to 48Khz
    sample rate, so make sure this is selected.
    Then go to Audio Channel mapping and make sure that the input is showing Soundblaster for both left and right
    channels.
    The output should be set the same,depending on the model of card,both input and output may show
    more inputs and outputs, Always select input Channel 1 Left (Mono) and Channel 2 Right
    Hope this helps
    What you need to do is to download Asio4all from the internet,

  • Help needed in getting my Alesis Multimix Firewire 16 to work with Audition CS6

    I've just bought a new Fujitsu AH 532 Lifebook Laptop with a Windows 8, 64 bit OS. I've installed my Adobe Audition CS6 on it and I've connected my Alesis Multimix 16 Firewire to it via my StarTech 34mm Firewire Express Card which has a Texas Instrument Chipset. AA CS6 sees the mixer but only allows a stereo track input but it also does not want to record. I've attached some images of the audio channel mapping, audio hardware setup, and also the multitrack recording view. Also I'm using the Alesis Windows 7 driver for the mixer. You will also see that I cannot select the sample rate in the audio hardware setup panel, the sample rate is stuck on zero. In the multitrack view there's no signal when I press the record button.
    All suggestions and help will be highly appreciated.
    Regards,
    Donovan.

    It's probably nothing but this is from the Windows Dev Center
    "In Windows Vista, Windows Server 2003, Windows XP, Windows 2000, Windows Millennium Edition (Me), and Windows 98, audio drivers conform to the Windows Driver Model (WDM) and make use of the kernel streaming (KS) components, which operate in kernel mode and are part of the operating system."
    I don't see any mention of Windows 8 - maybe nothing?
    Just a thought - why not try the asio4all driver just to see if it makes a difference?
    You can install it and then select that driver in Audition - you can always switch back
    http://www.asio4all.com/

  • Adobe audition cs6.exe can't started

    my adobe audition cs6.exe collapse
    失敗的應用程式名稱: Adobe Audition CS6.exe,版本: 5.0.0.708,時間戳記: 0x4f70c4f6
    失敗的模組名稱: unknown,版本: 0.0.0.0,時間戳記: 0x00000000
    例外狀況代碼: 0xc0000005
    錯誤位移: 0x00000000
    失敗的處理程序識別碼: 0x106c
    失敗的應用程式開始時間: 0x01cd655ed5ffb793
    失敗的應用程式路徑: C:\Program Files (x86)\Adobe\Adobe Audition CS6\Adobe Audition CS6.exe
    失敗的模組路徑: unknown
    報告識別碼: 2052df18-d152-11e1-9bbc-b870f4b065a6
    失敗的套件完整名稱:
    失敗的套件相關應用程式識別碼:
    this is the report form Event Viewer
    os:windows 8 release preview x64
    6gb ram
    cpu:i5-2410m
    gpu:nvidia 540m
    i can start the audition cs6 in early time.but not now.
    i can't start now.
    someone said it may is the problem quicktime
    but i try to uninstall the quicktime.
    it is useless.

    adobe x suite wrote:
    i can't run the cs6 after i delete the keygen.exe.
    So a quick Google search looks like that the existance of this file is indicitave of spyware or other malware coming on your system, and is probably not an issue with Audition per se, and is not necessarily indicitave (on its own) that you have a pirated version.
    Please see the following links:
    http://forums.techguy.org/virus-other-malware-removal/689062-removing-keygen-exe.html
    http://www.bleepingcomputer.com/forums/topic142479.html
    http://www.geekstogo.com/forum/topic/94844-keygenexe-hijackthis%26nbsp%3Bresolved/
    Sometimes malware hijacks how applications are launched on Windows and can cause issues like the ones you're seeing.  I can't guarantee that removing the malware will fix your problem, but I think it would be prudent to make sure that the system is clean before we keep troubleshooting your particular issue.  I've been running Audition CS6 on my Windows 8 machine with no issue so far.

  • Adobe Audition CS6 and Alesis Multimix 8 Firewire multitrack problem

    I have the Alesis Multimix 8 Firewire mixer and am using Adobe Audition CS6 for my recording program.
    I'm trying to connect 4 microphones via XLR and have them run in individual channels in Audition but I can't get more than 2 to show up on the program even though I have 3 plugged in right now. On top of that, I have to run input 1 and input 2 as mono channels instead of stereo channels to get it to work at all.
    I'm looking to do a Podcast with my set up, is there a better program to use to record and edit? Or am I missing a driver for Audition or the Multi Mix?
    Thanks!

    Well, first the easy bit.  Microphones ARE mono devices so using mono channels is absolutely correct.
    Beyond that, you mention drivers.  There are no special drivers for Audition but it is worth going to http://www.alesis.com/multimix8firewire to see if there are any driver updates for your mixer.
    You don't mention what Operating System you're using but whichever it is, you should go to the Audio Setup page for Windows (i.e. not in Audition) and make sure it's detecting all the channels from the Alesis properly.  You may have to set the Alesis as your default audio device for this.
    On the Edit/Preferences/Audio Hardware Setup menu in Audition, make sure you have the proper device type selected--I'd guess ASIO for a start.  Make sure your Alesis is selected as the default hardware.
    On the Edit/Preferences/Audio Channel Mapping menu, make sure you can see all the channels from your Alesis.
    Finally, on the Multitrack screen, set the Input for each track to be the appropriate channel from the Alesis.  If you're going to do this regularly, I recommend you get everything set up then save it as a Session template.
    And I can't think of anything better than Audition for what you want to do...that's why it's used in thousands of radio stations around the world!

Maybe you are looking for

  • NAMED_SEQUENCEs: The transaction is no longer active

    Hi all,           I am currently trying to get Petstore 1.3.1 going on WLS 7.0.0.1 an got           into quite some trouble (btw, does anyone have experience with this           cofiguration?). After successful deployment in /application I tried the

  • Add buttons in ALV Report output

    Dear Friends, I am developing one ALV report in PP moule for calculating Shelf Life. The output is coming properly in ALV.   But my additional requirement is ADD coustomise buttons in ALV Reports. Please give me an idea how can I insert buttons in my

  • Can i combine aperture libraries?

    i have aperture running on three different machines and i wondered if there is a way to "combine" the three aperture libraries into a new library. how do folks use aperture with a desktop and a laptop for syncing work from the feild? thanks, glenn Ma

  • In search of a sample application

    Folks, I 've been searching for hours for a simple sample jsp application that uses beans to interact with a database and has add, edit, delete functionality. I'm sure their are oodles of them out there somewhere but it's proving a nightmare trying t

  • Load balancing on RMI Server Application

    Hi there, I'd like to know more detail about load balancing on RMI server application, been digging the web for some time, but couldn't find much information, does anyone know any website or has the knowledge of load balancing on RMI to share? Sort l