16 bit stereo

Hi, I'm converting mp3 to wav then modifying the wav and saving it to a new wav file. The saved wav files comes out as 16 bit mono. I need it to be 16 bit stereo like the original. I realize the following code does not account for the stereo (only 4 channels), but if someone could point out how I can correct it so the saved wav is stereo I would appreciate it. Thanks.
...snip     
if(numChan==4) {
   try {                          
      for (int r=0; r < audioByteData.length-4; r+=4) {
         loByte = audioByteData[r+0];                
         hiByte = audioByteData[r+1];
         //convert bytes to int
         sample = (hiByte << 8) | (loByte & 0x00FF);
         //raw audio sample array                
         audioInData[r/4] = (short)sample;  
   } catch (Exception ex){ex.printStackTrace();}                 
}

I have a similar problem with Audigy 2 using Soundforge. I found that if I set the recording device to Microsoft Sound Mapper instead of the asio driver it will work. Not sure of the implications of this. It seems to imply that the card is only ever receiving 48K and so the mapper needs to resample on the fly. Anyone know if this is the case? If so would I be better to record at 48K and then resample in Soundforge? (I am guessing that sf may do a better job). Thanks

Similar Messages

  • 16 bit stereo question

    Hi, I'm converting mp3 to wav then modifying the wav and saving it to a new wav file. The saved wav files comes out as 16 bit mono. I need it to be 16 bit stereo like the original. I realize the following code does not account for the stereo (only 4 channels), but if someone could point out how I can correct it so the saved wav is stereo I would appreciate it. Thanks.
    ...snip     
    if(numChan==4) {
       try {                          
          for (int r=0; r < audioByteData.length-4; r+=4) {
             loByte = audioByteData[r+0];                
             hiByte = audioByteData[r+1];
             //convert bytes to int
             sample = (hiByte << 8) | (loByte & 0x00FF);
             //raw audio sample array                
             audioInData[r/4] = (short)sample;  
       } catch (Exception ex){ex.printStackTrace();}                 
    }

    Hi
    I have tried your vis and they run fine. In the stereo one, think you are selecting columm 1 for the two spectrums ( same channel), and one should be 0.
    See attached file.
    Sorry. Signal was 1000 Hz square
    Check the windows mixer settings to see they are correct.
    Hope it helps
    Alipio.
    "Qod natura non dat, Salmantica non praestat"
    Attachments:
    fft3viresults.doc ‏72 KB

  • Cannot Play 44100Hz, 16-bit, Stereo wav files ni a VOIP based program.

    Hi,
    I have a VOIP program that makes the user at one end who calls the running java program to listen to the .wav file once the program picks up the incoming call from a sipphone. I have used SIP libraries in this project.
    CASE 1:
    When I provide a .wav file whose AudioFormat=PCM, Audio Sample Rate = 8000Hz, Audio Sample Size = 8-bit, Channel = 1(Mono), BitRate=128Kbps it plays well and i can hear the audio over the internet at the other end. In the code at one place I provide the following formats to the AudioFormat() function as mentioned below:
    format = new AudioFormat(8000, 8, 2, true, true);where -
    1st param = float sampleRate - the number of samples per second
    2nd param = int sampleSizeInBits - the number of bits in each sample
    3rd param = int channels - the number of channels (1 for mono, 2 for stereo, and so on)
    4th param = boolean signed. - indicates whether the data is signed or unsigned
    5th param = boolean biEndian - indicates whether the data for a single
    sample is stored in big-endian byte order (false means little-endian)
    Then I pass this format variable to transmit the audio format just formed. "format" is of the following type:-
    //set of import statements in the file.
    import javax.sound.sampled.AudioFormat;
    import javax.sound.sampled.AudioSystem;
    import javax.sound.sampled.LineUnavailableException;
    import javax.sound.sampled.TargetDataLine;
    import javax.sound.sampled.Mixer.Info;
    private AudioFormat format;
    *_The Java Program console output is..._*9-17-2009 10:54 - Listener initiated. Listening Now...
    --------------AFTER I CALL-------------
    9-17-2009 10:55 - Incoming Call...
    SIP/2.0 100 Trying
    Via: SIP/2.0/UDP 10.0.2.30:5060;rport=5060;branch=z9hG4bK-d8754z-f24ed87f010f565d-1---d8754z-;received=10.0.2.30
    To: "Java Program"<sip:[email protected]:5060>;tag=402319264639678169
    From: "Kris" <sip:[email protected]:5060>;tag=ff7a573a
    Call-ID: MjYxYjNhOTdkYzcxY2U2Y2EzYjllZmYxYTg2ZDkzOTg.
    CSeq: 1 INVITE
    Content-Length: 0
    Call Event: 1: CALL_INCOMING_INVITE, CALL_NORMAL
    Open log file: F:\logs\jmf.log
    9-17-2009 10:55 - Created RTP session: 10.0.2.58 18216
    Call Event: 1: CALL_CONNECTED, CALL_NORMAL
    9-17-2009 10:55 - Media End Of File Event Received
    9-17-2009 10:55 - Created RTP session: 10.0.2.58 18216
    *_JMF LOG OUTPUT - START_*#
    # JMF Version 2.1.1e
    ## Platform: Windows XP, x86, 5.1
    ## Java VM: Sun Microsystems Inc., 1.6.0_07
    ## DataSource created: com.sun.media.protocol.file.DataSource@1b48197
    $$ Profile: instantiation: 16 ms
    ## Processor created: com.sun.media.processor.unknown.Handler@1385660
    ## using DataSource: com.sun.media.protocol.file.DataSource@1b48197
    $$ Profile: parsing: 15 ms
    ## Building flow graph for: file:///F:\audio_message.wav
    ## Building Track: 0
    ## Input: LINEAR, 8000.0 Hz, 16-bit, Mono, LittleEndian, Signed, 16000.0 frame rate, FrameSize=16 bits
    ## Custom options specified.
    ## A custom codec is specified: com.sun.media.codec.audio.ulaw.Packetizer@203c31
    ## An output format is specified: ULAW/rtp, 8000.0 Hz, 8-bit, Mono, FrameSize=8 bits
    ## An output content type is specified: RAW/RTP
    ## Here's the completed flow graph:
    com.sun.media.parser.audio.WavParser@16925b0
    connects to: com.ibm.media.codec.audio.ulaw.JavaEncoder@297ffb
    format: LINEAR, 8000.0 Hz, 16-bit, Mono, LittleEndian, Signed, 16000.0 frame rate, FrameSize=16 bits
    com.ibm.media.codec.audio.ulaw.JavaEncoder@297ffb
    connects to: com.sun.media.codec.audio.ulaw.Packetizer@203c31
    format: ULAW, 8000.0 Hz, 8-bit, Mono, FrameSize=8 bits
    com.sun.media.codec.audio.ulaw.Packetizer@203c31
    connects to: com.sun.media.multiplexer.RTPSyncBufferMux@914f6a
    format: ULAW/rtp, 8000.0 Hz, 8-bit, Mono, FrameSize=8 bits
    $$ Profile: graph building: 188 ms
    $$ Profile: realize, post graph building: 93 ms
    $$ Profile: prefetch: 47 ms
    ## Computed latency for video: 20 ms
    ## DataSource created: com.sun.media.protocol.file.DataSource@1402d5a
    $$ Profile: instantiation: 0 ms
    ## Processor created: com.sun.media.processor.unknown.Handler@9cfec1
    ## using DataSource: com.sun.media.protocol.file.DataSource@1402d5a
    $$ Profile: parsing: 0 ms
    ## Building flow graph for: file:///F:\audio_message.wav
    ## Building Track: 0
    ## Input: LINEAR, 8000.0 Hz, 16-bit, Mono, LittleEndian, Signed, 16000.0 frame rate, FrameSize=16 bits
    ## Custom options specified.
    ## A custom codec is specified: com.sun.media.codec.audio.ulaw.Packetizer@edf389
    ## An output format is specified: ULAW/rtp, 8000.0 Hz, 8-bit, Mono, FrameSize=8 bits
    ## An output content type is specified: RAW/RTP
    ## Here's the completed flow graph:
    com.sun.media.parser.audio.WavParser@21e554
    connects to: com.ibm.media.codec.audio.ulaw.JavaEncoder@15718f2
    format: LINEAR, 8000.0 Hz, 16-bit, Mono, LittleEndian, Signed, 16000.0 frame rate, FrameSize=16 bits
    com.ibm.media.codec.audio.ulaw.JavaEncoder@15718f2
    connects to: com.sun.media.codec.audio.ulaw.Packetizer@edf389
    format: ULAW, 8000.0 Hz, 8-bit, Mono, FrameSize=8 bits
    com.sun.media.codec.audio.ulaw.Packetizer@edf389
    connects to: com.sun.media.multiplexer.RTPSyncBufferMux@126f827
    format: ULAW/rtp, 8000.0 Hz, 8-bit, Mono, FrameSize=8 bits
    $$ Profile: graph building: 47 ms
    $$ Profile: realize, post graph building: 0 ms
    XX Error: Unable to prefetch com.sun.media.ProcessEngine@af72d8
    $$ Profile: prefetch: 15 ms
    *_JMF LOG OUTPUT - END_*
    *_....contd..... in the next post_*
    Edited by: codebuster on Sep 16, 2009 10:59 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    _....contd of the post above...._
    CASE 2:
    BUT, when i play which is a big file(20MB suppose), wherein - AudioFormat=PCM, Audio Sample Rate = 44100Hz, Audio Sample Size = 16-bit, Channel = 2(Stereo), BitRate=1411Kbps.
    I did the following changes in the parameters in the AudioFormat function -
    format = new AudioFormat(44100, 16, 2, true, true);The Java Program console output is...
    9-17-2009 10:54 - Listener initiated. Listening Now...
    --------------AFTER I CALL-------------
    9-17-2009 11:08 - Incoming Call...
    SIP/2.0 100 Trying
    Via: SIP/2.0/UDP 10.0.2.30:5060;rport=5060;branch=z9hG4bK-d8754z-04215a630a579a34-1---d8754z-;received=10.0.2.30
    To: "Java Program"<sip:[email protected]:5060>;tag=402319264639678169
    From: "Kris" <sip:[email protected]:5060>;tag=ff7a573a
    Call-ID: NGQ2ZjJjZjI1NDE4YTE3MmMxYTViZjJkOGE0ZTM2MzY.
    CSeq: 1 INVITE
    Content-Length: 0
    Open log file: F:\logs\jmf.log
    An error has occurred. Check jmf.log for details.
    Exception in thread "Thread-20" javax.media.NotRealizedError: getDataOutput cannot be called before realized
    at com.sun.media.ProcessEngine.getDataOutput(ProcessEngine.java:379)
    at com.sun.media.MediaProcessor.getDataOutput(MediaProcessor.java:138)
    at com.sipresponse.onlinevoipcallmgr.plugin.jmf.Transmitter.createProcessor(Transmitter.java:392)
    at com.sipresponse.onlinevoipcallmgr.plugin.jmf.Transmitter.start(Transmitter.java:127)
    at com.sipresponse.onlinevoipcallmgr.plugin.jmf.Transmitter.<init>(Transmitter.java:118)
    at com.sipresponse.onlinevoipcallmgr.plugin.jmf.JmfPlugin.initializeRtpSend(JmfPlugin.java:117)
    at com.sipresponse.onlinevoipcallmgr.internal.actions.AnswerCallAction.startMediaSend(AnswerCallAction.java:228)
    at com.sipresponse.onlinevoipcallmgr.internal.actions.AnswerCallAction.run(AnswerCallAction.java:99)
    The process of decoding is not completed i think.
    JMF LOG OUTPUT - START*
    # JMF Version 2.1.1e
    ## Platform: Windows XP, x86, 5.1
    ## Java VM: Sun Microsystems Inc., 1.6.0_07
    ## DataSource created: com.sun.media.protocol.file.DataSource@105b99f
    $$ Profile: instantiation: 15 ms
    ## Processor created: com.sun.media.processor.unknown.Handler@ac6a45
    ## using DataSource: com.sun.media.protocol.file.DataSource@105b99f
    $$ Profile: parsing: 15 ms
    ## Getting the supported output formats for:
    ## LINEAR, 44100.0 Hz, 16-bit, Stereo, LittleEndian, Signed, 176400.0 frame rate, FrameSize=32 bits
    ## # of nodes visited: 1016
    ## # of formats supported: 308
    $$ Profile: getSupportedOutputFormats: 1109 ms
    ## Building flow graph for: file:///F:\audio_message.wav
    ## Building Track: 0
    ## Input: LINEAR, 44100.0 Hz, 16-bit, Stereo, LittleEndian, Signed, 176400.0 frame rate, FrameSize=32 bits
    ## Custom options specified.
    ## A custom codec is specified: com.sun.media.codec.audio.ulaw.Packetizer@3ef810
    ## An output format is specified: ULAW/rtp, 8000.0 Hz, 8-bit, Mono, FrameSize=8 bits
    ## An output content type is specified: RAW/RTP
    XX Failed to build a graph for the given custom options.
    XX Failed to realize: com.sun.media.ProcessEngine@12452e8
    XX Cannot build a flow graph with the customized options:
    XX Unable to transcode format: LINEAR, 44100.0 Hz, 16-bit, Stereo, LittleEndian, Signed, 176400.0 frame rate, FrameSize=32 bits
    XX to: ULAW/rtp, 8000.0 Hz, 8-bit, Mono, FrameSize=8 bits
    XX outputting to: RAW/RTP
    XX Unable to add customed codecs:
    XX com.sun.media.codec.audio.ulaw.Packetizer@3ef810
    XX Error: Unable to realize com.sun.media.ProcessEngine@12452e8
    javax.media.NotRealizedError: getDataOutput cannot be called before realized
    at com.sun.media.ProcessEngine.getDataOutput(ProcessEngine.java:379)
    at com.sun.media.MediaProcessor.getDataOutput(MediaProcessor.java:138)
    at com.sipresponse.onlinevoipcallmgr.plugin.jmf.Transmitter.createProcessor(Transmitter.java:392)
    at com.sipresponse.onlinevoipcallmgr.plugin.jmf.Transmitter.start(Transmitter.java:127)
    at com.sipresponse.onlinevoipcallmgr.plugin.jmf.Transmitter.<init>(Transmitter.java:118)
    at com.sipresponse.onlinevoipcallmgr.plugin.jmf.JmfPlugin.initializeRtpSend(JmfPlugin.java:117)
    at com.sipresponse.onlinevoipcallmgr.internal.actions.AnswerCallAction.startMediaSend(AnswerCallAction.java:228)
    at com.sipresponse.onlinevoipcallmgr.internal.actions.AnswerCallAction.run(AnswerCallAction.java:99)
    JMF LOG OUTPUT - END*
    Am I making any mistake in the set of parameters I have provided? Can you suggest me something to get this working?How do i give the support to the program to read huge .wav files? Is there anything i need to focus on?
    Thanks in advance
    Edited by: codebuster on Sep 16, 2009 11:04 PM

  • Apple ProRes 422 32-bit Stereo Audio Creates New Audio Track

    I imported some Apple ProRes 422 files into Premiere Pro CS5.5 in my Mac, using all the correct ProRes Sequence Settings. But the audio creates a new Audio Track 5 and cannot be moved to any of the first 4 audio tracks. Why?

    That single speaker icon is telling you that it is a 1-channel Track, so a 2-channel, or 6-channel (5.1) Clip will not go there - only a 1-channel Clip.
    One can set up their Default Sequence with any number of each type of Audio Track, and any number of Video Tracks. My guess is that your Default Sequence is set for 4 1-channel Audio Tracks.
    For more background on Audio Tracks and channel-count, see this article: http://forums.adobe.com/message/3757977#3757977 [Note: some of the illustrations are from older versions of PrPro, but the basics are all the same.]
    Note: PrPro CS 6 changed how Audio Tracks and channel-count are handled, but PrPro CS 5.5 still used the old method.
    Good luck,
    Hunt

  • How do I import AVI video with stereo audio (and keep it that way)?

    Today I just discovered that all the AVI video with stereo audio I've ever imported into a Premiere Pro CS6 project has been mysteriously converted to mono. And I can't find any import setting anywhere that enable me to change this.
    Here's the deal...
    I've have an AVI file with stereo audio (the file is actually a stereo sound test that I downloaded to prove that I wasn't imagining things). On my hard drive, I right-click and view the properties:
    Video
    Length: 00:00:36
    Frame width: 320
    Frame height: 240
    Frame rate: 25 frames/second
    Audio
    Bit rate: 128kbps
    Channels: 2 (stereo)
    Audio sample rate: 44 kHz
    I click on it to play and listen with headphones--everything is playing in the correct part of the stereo spectrum. Then, I import it to Premiere, click the file name in the left content menu, and check the properties, suddenly they read:
    Type: AVI Movie
    File Size: 1.1 MB
    Image Size: 320 x 240
    Frame Rate: 25.00
    Source Audio Format: 11025 Hz - 16 bit - Mono
    Project Audio Format: 11025 Hz - 32 bit floating point - Mono
    Total Duration: 00:00:36:15
    Pixel Aspect Ratio: 1.0
    Sure enough, I drag it into the sequence, listen to it, and it's indeed playing mono. Outside of Premiere, the original source file still reads and plays correctly with stereo sound.
    When I import stereo WAVs and MP3s, it keeps the original stereo channels without me having to do anything special. I even just imported the same exact file as a MOV with stereo audio, and it showed up in Premiere as:
    Source Audio Format: 44100 Hz - 16 bit - Stereo
    Project Audio Format: 44100 Hz - 32 bit floating point - Stereo
    What is going on here with AVIs? Am I doing something wrong? Are there settings I'm missing somewhere?
    (And before anyone suggests I only use MOV in the future... that's not exactly the answer I'm looking for.)

    Thank you for that info.
    For video, the codec is MPEG-4 Video (XVID) and for audio it says MPEG Audio Layer 1/2/3 (mpga).
    There are two issues with that file:
    The first is the Xvid CODEC (not meant for editing), and then the MPEG Audio/MPGA. I would convert that file, to something that is more editable.
    Good luck,
    Hunt

  • CS5: Green Pixelated Video in Source Monitor playback for clips w/ 44100 hz - Compressed - Stereo

    I am having issues with 2 of the 14 clips I have imported into a new project.  I am using Adobe Premiere Pro CS5. -- I have enclosed the properties of a few clips + a screen shot
    The two clips giving me issue differ from the other clips the following way:
    44100 hz - compressed - stereo
    the other 12 clips were encoded with the following and they play back properly in the source monitor/sequence
    44100 hz - 16-bit -stereo
    Here are the full properties of the bad clip(s)
    OBvid11.mov
    Type: MPEG Movie
    File Size: 513.3 MB
    Image Size: 1920 x 1080
    Pixel Depth: 32
    Frame Rate: 24.00
    Source Audio Format: 44100 Hz - compressed - Stereo
    Project Audio Format: 44100 Hz - 32 bit floating point - Stereo
    Total Duration: 00:04:44:18
    Average Data Rate: 1.8 MB / second
    Pixel Aspect Ratio: 1.0
    Here are the properties of a good clip - you see it shows way more information
    OBvid10.mov
    Type: QuickTime Movie
    File Size: 5.2 MB
    Image Size: 1920 x 1080
    Pixel Depth: 24
    Frame Rate: 24.00
    Source Audio Format: 44100 Hz - 16 bit - Stereo
    Project Audio Format: 44100 Hz - 32 bit floating point - Stereo
    Total Duration: 00:00:02:17
    Average Data Rate: 1.9 MB / second
    Pixel Aspect Ratio: 1.0
    QuickTime Details:
    Movie contains 1 video track(s), 1 audio track(s) and 0 timecode track(s).
    Video:
    There are 64 frames with a duration of 1837/44100ths.
    Video track 1:
    Duration is
    Average frame rate is 0.01 fps
    Video track 1 contains 1 type(s) of video data:
    Video data block #1:
    Frame Size = 1920 x 1080
    Compressor = H.264
    Quality = Normal (3.00)
    Temporal = Normal (3.00)
    Audio:
    Audio track 1 contains 1 type(s) of audio data:
    Audio data block #1:
    Format = 16 bit - Stereo
    Rate = 44100 Hz
    Compressor =  16-bit Little Endian
    I dont actually need the audio from any of the clips.  Is there a way that I can fix this?
    Thanks so much for taking the time to read this.

    Thanks Ann.
    Is that true for all GoPro video formats or just some of the newer (higher resolution/frame rate) one?  The GoPro has several different pre-sets and I typically like to get as much resolution as possible for my source and for highspeed subjects like sports I try to use higher framerates as well.  Are you suggesting that I convert the source files to Cineform avi and then edit those resulting AVI's in CS6?

  • Our Setup: XP 64-bit or Vista 64-bit?

    Let me break down the situation here:
    A year ago we built a computer from scratch. I'll list some of the basic specs here:
    A nice Tyan motherboard (can't remember the model)
    4 GB of RAM (4 x 1 GB sticks)
    an nVidia GeForce 8800 GTX video card
    TWO Dual-Core AMD Opteron 270 (2.0 GHz) - [dualcore + dualprocessor]
    10k Raptor hard drive for operating system
    3x500GB RAID as "video" hard drive
    Adobe Premiere Pro CS3
    Now, after building this computer over a year ago, Windows Vista had JUST been released, so we weren't interested in installing Vista yet, due to not knowing how great it would be. So with this awesome computer, we ended up just installing regular 32-bit ole' Windows XP on it.
    Now it's been a year, and the computer is in need of a good format. We're trying to decide which operating system to install now. Obviously, XP32 is the SAFEST choice, but probably the slowest, considering we have dual-core dual-processor here and 4GB of RAM, and want to take advantage of all of this.
    So I guess we're kind of wondering what to expect if we go to XP64 or Vista64. Which is going to give us better performance? This computer is basically ONLY for video editing, not much else. Literally installing Adobe's software, and maybe small needed things like Nero and whatnot. I haven't really heard too much about XP64, and a lot of the stuff I hear about Vista is conflicted. AND also keep in mind that next month, XP will be upgrading to SP3 and Vista will be upgrading to SP1, and VistaSP1 sounds quite promising.
    All of the hardware and software we have apparently has Vista drivers (I've checked online), so there should be no concern here.
    So it's simple. We're on XP32 at the moment. Should we go up to XP64 or Vista64, and if so, and which one and why?

    Adobe Dynamic Link "Import After Effects comp" fails in Vista Business 64 bit
    I am posting this, since in my search, I found no other reference to this problem on the web. If someone has a fix then great. Should someone have the same issue, it may confirm a glitch running CS3 Production Premium in Vista 64 bit. I run XP 64 bit and Vista 64 bit on a dual boot (same hardware) so it was easy for me to troubleshoot the " serious error" Premier gave me when I tried to import an After Effects comp through Dynamic link in Premier Pro. Below is the scenario.
    1. The following sequence for Adobe Dynamic Link>New After Effects Composition works fine in both Win XP Pro 64 bit and Vista Business 64 bit :
    I open After Effects CS3 to an untitled composition then leave AFX running in the background. Next I Open Premier Pro CS3 to create a new project in the following format:
    Standard NTSC video (4:3 interlaced). 48kHz (16 bit) audio.
    Editing mode: DV NTSC
    Timebase: 29.97 fps
    Video Settings
    Frame size: 720h 480v (0.900)
    Frame rate: 29.97 frames/second
    Pixel Aspect Ratio: D1/DV NTSC (0.9)
    Fields: Lower Field First
    In Premier Pro CS3 I choose File> Adobe Dynamic Link>New After Effects Composition. My project window now has a 11 sec dynamic link linked comp 0 movie file which is black video. I return to After Effects and find a new comp named "dynamic link Linked Comp". I import a Microsoft DV 720 X 480 48.000kHz/16 bit stereo 30 sec video into the AFX Project window then drag it to the timeline. I return to Premier Pro and find the 30 sec movie in the Premier timeline. I am able to make changes to the movie in AFX and they reflect in the Premier timeline.
    2. The next sequence for Adobe Dynamic Link>Import After Effects fails running on my Vista Business 64 bit OS. It works perfectly running on Win XP Pro 64 bit.
    I open After Effects, import an NTSC Microsoft DV 720 X 480 48.000kHz/16 bit stereo 30 sec video, drag video into the "create a new comp button" at the bottom of the project file then save the comp. I open a new Standard NTSC video (4:3 interlaced) project in Premier Pro CS3 then choose File>Adobe Dynamic Link>Import After Effects Composition. I get an Adobe Premier Alert " Sorry, a serious error has occurred that requires Adobe Premier Pro to shut down. We will attempt to save your current project." I click OK and Premier closes.
    System: Dual boot Win XP Pro 64 bit and Vista Business 64bit, 3.2 GHz Pentium D 940 Dual core, Asus P5WD2 Premium motherboard, 8 gig Crucial DDR-2 667 ram, WD 5000AAKS and WD 7500AAKS SATA hard drives, Dual Asus EAX300 Video cards.
    The above comparisons were done on a fresh load of both OS's with the latest drivers and the only programs I had installed were Microsoft Office 2003 Pro, Quicktime, Firefox and Acrobat. I have all the latest CS3 updates for Production Premium and the latest Windows updates.

  • Audio bounced as 32 bit AIFF, when 16 bit requested

    Hello - I'm bouncing 16 bit audio to 16 bit stereo aiff and the results are 32 bit files I cannot use - does anyone know why this is happening - been through all the prefs and everything seems to be fine - please help
    also, although I don't need to dither these files as they're already 16 bit, if I try dithering it exceeds the 2gb limit - is this due to the length and number of files being bounced?
    Many thanks

    The only thing that I can think of is that your system is corrupt.
    Now the next step is to find if it's the OS or Logic.
    Just to try:
    1. repair permissions
    2. verify disks and disk space
    3. trash Logic preferences
    4. restart the mac with the Shift key pressed until it's completely up then restart
    5. upgrade to 10.4.11 (don't use Automatic updates but download the combo version and install manually)
    6. remove Logic completely and make a fresh install
    Obviously if one of the step should go well you would not need to execute the other (the points until 4. included can't be bad, anyway).
    cheers
    rob

  • Sequence audio format stuck on 32-bit Floating Point

    Hi,
    The audio format for all my sequences is set to 32-bit Floating Point when I check them in the browser's Aud Format field. When I manually change the format in the sequence settings nothing changes in the browser and choosing a new sequence set up doesn't seem to help. What I don't understand is that there isn't even an option for 32-bit Floating Point in Audio Settings. Anyone else experience this?
    I am using v6.0.6 on osx 10.5.8
    Thanks,
    Tom

    16 bits per channel equals 32 bits stereo. Floating point means that you can, but don't have to, have a non-integer value for your audio.

  • Adobe Encore DVD: Importing 96k/24-bit PCM Audio

    I seem to be unable to import a 96kHz 24-bit stereo PCM audio file in to Encore 2.0 - Is there a special way of doing this? Is it even possible?
    Thanks for your help

    Hi
    Thanks for the replies. Most of the people who view my videos probably have a DVD-Audio player or a decent DVD-player so I'm not really worried about the audio sounding ugly. Many of the new lower mid-range players have 96kHz DACs in them. I think a few years ago using 96kHz/24-bit for DVD-Video wouldn't have sounded as good. With the newer HD and BluRay players coming out I think they also have 96kHz/24-bit DACs as well.
    For Adobe it would be one way to say Encore handles audio up to 96kHz etc... I haven't even looked at CS3.

  • 12 bit into 16 bit audio?

    Hi there,
    I have footage from a camera which, when capturing in FCP told me it was 12bit audio as opposed to the other footage I'd captured at 16 bit. On the FCP forum I was told that 48Khz was 16 bit and 32 Khz was 12 Bit...so I sent the audio from FCP into Sound track and highlighted all the audio and said "resample to 48KHz". I then relaid the track in FCP and I thought..happy days..but I'm looking along the time line in FCP and later on the mouths seem to be out of sync which makes me think it hasn't worked.
    Does anyone know an actual setting to ensure that the audio is indeed set to 16 Bit from 12 bit?
    Hope you can help (as always).
    Thanks
    Carol Ann

    I have a similar problem. I got a tape from a client and the audio was in 12bit and not 16bit and FCP does not like it and then the audio drifts and becomes out of sync. It also appeared to be a huge pain even to figure out how to capture in FCP with 12 bit audio.
    Here is my solution...
    #1 - Confirm that the audio is in 12bit. Put tape in camera and play it back with it not connected to the camera. Turn the "display" on so it shows the details of the recording over the video. The camera should be able to show you the bit depth of the audio.
    #2 - Capture the clips with 12 bit audio with Apple iMovie. Save out the project and quit out of iMovie
    #3 - iMovie will save one file to your hard drive. This is actually a folder with the details of your iMovie and the raw footage. Right clip on your iMovie file and select "Show Package Contents". This will open up the folder and then in the "Media" folder you will see the raw clips captured.
    #4 - open the clips in Quicktime Pro. Go to the "get info" and confirm the clips are captured with audio as "DV, Stereo, 32.000 kHz".
    #5 - convert audio only to 16 bit 48 kHz You can do this with Quicktime Pro or with another sound utility.
    a) with Quicktime Pro with your original video clip open select Window > Show Movie Properties. Then when that is open select the sound track and click Extract. This will open a new Quicktime window with only the audio file in it.
    b) now "export" this new audio file as 48 kHz 16 bit stereo
    c) open the new audio file and select all of the file with the play head then do a command "C" to copy it all
    d) go back to the original movie file and with the properties window open select the audio file and click on the delete button at the top of the window.
    e) position the playhead at the begining of the clip and select Edit > Add to Movie. This will paste your 48 kHz 16 bit audio in with the video track.
    f) save this movie out and import this into FCP
    Kind of a round about way of doing things but I found it pretty easy although cumbersome.

  • Exporting SD 4:3 to 8 bit uncompressed for DigiBeta

    I need to deliver an 8 bit uncompressed file 1920 X1080 of an SD 4:3 18 minute video to a lab for transfer to DigiBeta. The film includes titles, still images, SD and HD video. The DigiBeta will then be delivered to TV station, where they'll take care of readying for broadcast, captioning, etc.  I've only done this once before with trial and error, but for Digi Beta theater projection. I had to fiddle with settings to lose some artifacting (cost a couple trips to lab).  I thought I took good notes, but not sure if thorough enough.
    First, Sequence Settings: NTSC DV/DVCPRO 720X 480   Field Dominance set to "None" (this was the last change the last time that fixed the artifacts that I thought deinterlacing would take care of)
    Render YUV
    Setting when exporting:
    Uncompressed 8-bit, Quality medium (no other option)  1920 x 1080 HD, letterbox checked "preserve aspect ratio, checked deinterlace.
    Sound Linear PCM 48 kHz 24 bit stereo, Little Endian checked.
    IMac OS 10.5.8  2.4 gHz  4 GB Ram  Final Cut Academic 6.0
    Need any more information?
    I'd like to get this right the first time.
    Am I on the right track? 
    Thanks in advance,
    Dennis

    Broadcast is about bit-depth and Digibeta is a 10bit 4:2:2 format and supports high bit rate audio. HDcam also has a 10bit 4:2:2 hence why they asked for that too. In lamens terms it means it holds a huge amount of colour information. Imagine a stripe, one side is black and the other pure white and in the middle is grey scale- with 10bit the scale is really smooth, whereas 8bit is noticably chunky in comparison- espeically near the blacks.
    DVD is a compressed format and to make the file size fit onto a DVD they basically (in lames terms) strip away parts of the grey/colour scale so that is perceptually like the original, when in fact it is missing lots of the colour/grey range. But the audience won't know, unless they are viewing it on a screen capable of showing the range / resolution. You'll notice the lack of shadow detail in DVD's and if a broadcaster were to use it, it would be extremely blocky, grany saturated etc, because the broadcasters will encode/compress it too so they need the best quality.

  • I-Tunes bit transparent? / Best Audio Grabber / AIFF vs WAV files?

    I am trying to rip my CD's in the best possible quality. Somebody recommended EAC (http://www.exactaudiocopy.de/) as audio grabber, but it does not seem to exist for Mac's (I'm using a Macbook Pro).
    What audio grabber can you recommend for the best quality files?
    So far I have been ripping my CD's as AIFF files (44.1kHz, 16 bit, stereo). Would anyone recommend WAV over AIFF? Is there a difference in audio-quality?
    Does anyone know whether i-Tunes is "bit-transparent", or whether it at all alters the data in any way shape or form when I use it to rip my CD's?
    What I am trying to do is get the best quality file possible, and then go out directly to A high-grade DAC like the Benchmark (http://www.benchmarkmedia.com/dac1/) through toslink or USB.
    Any suggestions how to get the best quality files? Does i-Tunes alter the date even if I send it out via toslink or USB? Is there a media-player that would give me a better quality?
    Thanks so much for helping out, appreciate it!
    Markus
    macbook pro   Mac OS X (10.4.8)  

    Apple Lossless?
    iTunes Encoding Strategies
    Regards,
    Colin R.

  • Burning Car-stereo usable CDs

    I am having trouble burning a CD in Audition, which will play back in my car stereo.  (my car is fairly new, 3 years old and has a real good factory system).
    I'm certain that the trouble is that I am not burning it using the standard AUDIO cd sample rate of 4100 hz and 16-bit rate.
    *I do need to point out that I have been able to get around this by using the wonderful program iTunes, BUT, obviously since my audio creations are done in Adobe Audition I would like to be able to output to a "car-stereo-user" cd player without going through the intermediate step of burning the cd by adding the contest to the iTunes playlist.
    Thanks.
    Kevin
    P.S. I'm running version 3.0 on a Gateway computer with Vista OS.

    Bob Howes wrote:
    Just for the record, when I mention problems with CDs burned in Audition, I wasn't specifically talking about a car stereo--unless I manually convert to 44.1/16 bit, they're the wrong sample rate and bit depth.  When I've checked the faulty CDs, it turns out that AA3 has burned them at whatever the original spec was despite claiming to have done the conversion. 
    That is a bit weird, Bob. The problem is that whatever audio signals are sent to the CD writer, the 16-bit words are split into 8 bit words, and these are each  converted to a 14-bit symbol. The process is decoded by comparing these symbols with 16-bit words in an EPROM lookup table, and that's what comes out. The process is clocked by hardware, and it's only 16-bit stereo audio that it's possible to process at all with this process.
    Which means that if Audition has written them at the wrong rate, then they are data files that were written, not audio ones. And Audition has never had the ability to write data files in the CD-writing section...
    So what's really going on?

  • Yet another question about 24-bits

    I have just combined an Echo Audio Indigo IO with Adobe Audition 1.5 in hopes to have a reasonably good laptop recorder. That need is met quite well.
    There are a number of discussions about bit depth in these forums. The answers become obfuscated by internal conversions done in audio cards, software, and Windows drivers. My current interest is simply how to get 24 bits of unadultered data from a D/A convertor to a data file using Audition. This data will be used to analyze pitch, frequency and intonation and any changes to the data will affect the results.
    Both the Indigo IO and Audition claim 24-bit support and I am convinced that both meet these claims fully. In spite of this there is no evidence that the card, Windows, and the software together will actually meet this claim without a 16-bit conversion along the line. What really matters is whether or not 24-bits of audio can travel from the card to the data file without any changes.
    Question 1: In Audition 1.5 for Windows under "Options/Device Properties/Wave In/Supported Formats" for the Indigo IO the highest density recording listed is 16-bit stereo at a 96K sample rate. What properties do other users find for their 24-bit cards?
    Question 2: The wave programming calls (waveInGetDevCaps) don't include capability definitions for anything beyond 16-bit depth at a 96K sample rate. Where in Windows is there evidence of true support for anything greater than 16-bit Audio?
    Question 3: What software is there that will go directly to the sound card or driver and write 24 unadultered bits to a file?

    I had trouble setting up my 24bit/96k ADAC to record 24-bit in audition. The best way to be sure audition is getting the 24bit samples as 24 bits is to check the status bar when recording. If it says 'Recording as 24 bit' then it's all setup right. If it says 'Recording as 16 bit' then the 32-bit float driver or the 24-bit driver reported an error and audition tried to fall back on the 16 bit version and succeeded. The problem I had was that the driver didn't handle 32-bit floats so it errored out and audition recorded as 16 bits. The only solution was to select the 24-bit option under "Options/Device Properties/Wave In(or out)".
    Just a note. A true 24-bit ADC will send 24 bits to the driver and the driver itself will convert the bits to whatever format it supports. If the driver is instructed to convert to normalized floats the software will simply do something like this:
    SampleOut = SampleIn / 8388608.0;
    This doesn't add any coloration to the audio because a float is really just a 24 bit integer with 8 bits added to tell the FPU where to put the decimal point. Converting down from 24-bits of course degrades quality and converting from 24 bits up to a true 32 bit integer would NOT add any quality to the audio. When stored in a file, 24 bits is 24 bits whether its a float or an integer.
    >Question 2:The wave programming calls (waveInGetDevCaps) don't include capability definitions for anything beyond 16-bit depth at a 96K sample rate. Where in Windows is there evidence of true support for anything greater than 16-bit Audio?
    The website showing waveInGetDevCaps function information doesn't show all the possible format tags or even the sample rates. It is only showing the most compatible forms for drivers. The WAVEFORMAT and WAVEFORMATEX structures used for the drivers are also used in the 'fmt ' chunk of RIFF WAVE files. I've written a lot of software for parallel use with audition using wave files and windows and I can say from experience that when recording 24 bits with audition you're getting the full 24 bits. If your driver truly supports 24 bit samples then audition will allow you to select the 24 bit samples option under "Options/Device Properties/Wave In(or out)" and audition will display 'Recording as 24-bits' when recording. Once recorded Audition no doubt converts ALL bit depths to its internal format which I believe is 32 (or 64) bit float, and if you don't process the file and wish to save as 24 bit integers then the samples saved will be exactly what the ADC sent to the driver.

Maybe you are looking for

  • MRP run in background - ONhold

    hi Off late, the MRP background job scheduled weekly is taking a very long time. more than 4 hours and when i check the status in SM50, it shows the job shows status ON HOLD and reason as ARFC. In SM66 , i can see the job is STOPPED. But after a long

  • We have 3 kids with ipods, all on one apple id and they complain that they get each others messages, apps etc.  what can I do to change this?

    We have 3 kids with an ipod touch each.  All are on one apple id (mine, so they have to come to me to authorise purchases) and they complain that they get each others messages, apps etc.  What can I do to set this up differently, so they can each man

  • Linking 2 folders together

    I created 2 accounts on my computer. I want to like the music folder in on account to the one account in another so itunes can open music in that folder from that account. Im wanting to restrict an account but still allow my itunes music to be open i

  • How does task flow code know if it is in a WebCenter app

    Hi, I'm developing a bunch of bounded task flows, and want to be able to drop them in a regular ADF web application as well as a WebCenter Portal Application. If the task flows are dropped in a WebCenter Portal Application, I'd like my code to be abl

  • Output synchronization

    The output from SQL Worksheet in SQL Developer appears after the end of the executed procedure. Can I have immediate output, or output always appears after the finish of the executing procedure. Regards, Kostadin