CS4.0.1 Audio vanishes while on timeline

Hello,
We have a problem with audio going missing on the timeline. The project's clips are selected and added to the timeline as usual, but after a few save/load cycles, we find that the audio and video of a clip in the timeline become unlinked, and the audio itself becomes silent. Its filename/clipname is still correct. The waveform display in the timeline is nothing but a flat line, and the clip when played from the timeline is silent. However, linking audio and video once more, and doing a match-frame produces a clip in the source monitor which, from the same stored media, DOES have working audio.
I also find that sometimes the mere act of pressing M to match the frame results in the audio magically re-appearing in the timeline even without replacing the whole clip.
This is making it impossible to edit to any schedule. Can this be resolved?
Thank you for reading this,
yours,
J

Eddie,
While it could well have re-surfaced with the update, I encountered this exact behavior in PrPro2. It happened to me, after a Render of the Timeline. There was a long discussion thread on the loss of the Audio and the Waveform Display going "flat-line." Unfortunately, that was just before the first Adobe forum change and that article disappeared. Stanley Jones found it in a "lost" archive, but that was just before the recent forum change.
There were many comments and suggestions that followed that thread. Unfortunately, I do not recall what the exact resolution to the issue was. It had not happened to me before, and has yet to happen again. I was able to manually change out the Audio on the Timeline with the sources from the Project Panel, so I was able to get on with the editing. The "resolution" came too late to save me the work - but it was an "all's well, that ends well" sorta' thing.
In one form, or another, this behavior has been around for a bit. If I can ever locate that thread, I'll post a live link to it. I fear, however, that with two Adobe forum changes, it's gone to Byte-Heaven.
To the OP,
I was able to do as described above - replace each Audio Clip with the one from the Project Panel, and the problem never surfaced again for that, or any other, Project on my computers.
Good luck,
Hunt

Similar Messages

  • Audio freezing while playing timeline

    When I play a sequence the audio freezes part way and repeats the same sound over and over while the video continues to play. Only solution so far has been to shut Premiere down and restart computer. Any suggestions on how to fix this?

    Please provide
    these details to help us help you.
    Cheers
    Eddie
    Forum FAQ
    Premiere Pro Wiki
    - Over 250 frequently answered questions
    - Over 100 free tutorials
    - Maintained by editors like
    you

  • CS4 Not importing audio

    I capture some DV video in CS4 using default settings for audio and video in computer A. After I finished capturing I moved the files to another computer (computer B) for editing but when I play the video on the time line or the Project windows there is no audio. When I check the waveform of the file is completely empty. However, i can play the files using Windows Media Player on either computer. I capture some video from computer B (the ones that doesn't play the audio) and I can capture with audio. The metadata shows audio even though it can play it. Makes me think that is a setting somewhere within CS4 that I'm missing while importing but the import command is very straight forward. Not sure of anything that can be changed.
    I don't want to re-capture all the project again if I don't need to but I really need to figure what's wrong as I usually follow that workflow where one computer captures while another edits. Any help is very much appreciated.

    I have a similar problem.
    Every time I open a project the Pek file are generated all over again.
    It takes hours to finish.
    I can hear the sounds, but I can't see the waveform until the pek file are made.
    My question is how do I make premiere remember the Pek files so it doesn't do the work of making them each time I open the project.
    I can't find a setting that controls where these files reside.
    Everything is slowed down until it finishes.
    I too am using Vista 64 bit.
    On a side note, whenever I goto File there is usually a ten second delay before the drop-down opens.

  • 2 yrs worth of music on my ipod nano 5th gen just vanished while I was trying to add four new tracks.

    Most of the music I've put on my ipod nano 5th gen in the last 2 years just vanished while I was trying to add four new tracks. Stuff from before that seems to be still there (I add stuff manually, not sync, and the ipod wasn't full). It was a bit glitchy as soon as I plugged it in to update - threw up a few error messages, decided to verify my ipod a couple of times, After that, once or twice itunes seemed to lose the ipod completely, although as far as the laptop was concerned it was definitely still connected, so i went for the 'safe to remove hardware' option and reconnected...
    I'm guessing somewhere in the midst of whatever was going on there, something got confused or corrupted, but I have no way to tell what... Ipod seems to think it is using less of its capacity now, but I don't know whether to believe it or not!
    Can I get this stuff back? It's not just stuff I bought from itunes, either - things I put on from cds have gone too. I have all the music either backed up or on cds, but I'm not in the same country as my cds right now - also rebuilding all of my playlists and trying to remember what went where is going to be a pain! Is there a quicker way than just doing it all over again?

    Downloading past purchases from the App Store, iBookstore, and iTunes Storehttp://support.apple.com/kb/HT2519
    Message was edited by: michael08081

  • How to make audio track respond to timeline

    I'm starting a project and need the ability to control the speed of an audio file playback using the timeline.
    There are specific events that happen at certain times in the song, and i need the ability to scrub forward and backward on the timeline, including the audio. is this possible?
    I have a mechanism to scrub through the timeline of a symbol, but i can't get it to recognize the audio track.
    I use this code on the stage in a "composition ready"
    var symDur = sym.getSymbol("timelinePlay").getDuration(); // Get the timeline length of timelinePlay. We'll reference this later in the code. var mySymbol = sym.getSymbol("timelinePlay"); // Get the symbol timelinePlay. We'll reference this later in the code. var scrubber = sym.$("scrubber"); // Touch this to scrub the timeline of timelinePlay var bar = sym.$("bar"); // Bar the scrubber follows sym.$("mobileHit").hide(); // Added an extra invisible div to increase the hit region for mobile (hard to grab otherwise) var dragme = false; // Set the initial dragme function to false // Detect if mobile device, and if so swap out mouse events for touch events. This is pretty much duplicated code with touch events swapped. if (/Android|webOS|iPhone|iPad|iPod|BlackBerry/i.test(navigator.userAgent)) {     sym.$("mobileHit").show(); // Show the extra invisible div to increase the hit region for mobile (hard to grab otherwise)     $(function () {         scrubber.bind("touchstart", function (e) { // Enable the scrubber on touchstart             e.preventDefault(); // Cancels the default action of the mobile device - used to ensure our touch events are fired             dragme = true;         });         scrubber.bind("touchend", function () { // Disable the scrubber on touchend             e.preventDefault();             dragme = false;         });         scrubber.bind("touchmove", function (e) { // Make the magic happen on touchmove             if (dragme) {                 var touch = e.originalEvent.touches[0];                 var possibleX = touch.pageX;                 var leftX = bar.offset().left;                 var rightX = (leftX + bar.width()) - scrubber.width();                 var scrubWidth = rightX - leftX;   // Confine the scrubber to the width of the bar                 if (possibleX < leftX) {                     possibleX = leftX;                 }                 if (possibleX > rightX) {                     possibleX = rightX;                 }                 scrubber.offset({                     left: possibleX                 });                 var relativeX = possibleX - leftX;                 var stopTimeline = Math.ceil((relativeX / scrubWidth) * symDur); // Make the scrubber scrub the timeline length of timelinePlay                 mySymbol.stop(stopTimeline); // Stop the timeline of timelinePlay when the scrubber is released             }         });     }) } else $(function () {     scrubber.mousedown(function () { // Enable the scrubber on mousedown         dragme = true     })     $(document).mouseup(function () { // Disable the scrubber on mouseup         dragme = false     })     $(document).mousemove(function (e) { // Make the magic happen on mousemove         if (dragme) {             var possibleX = e.pageX;             var leftX = bar.offset().left;             var rightX = (leftX + bar.width()) - scrubber.width();             var scrubWidth = rightX - leftX;             // Confine the scrubber to the width of the bar             if (possibleX < leftX) {                 possibleX = leftX;             }             if (possibleX > rightX) {                 possibleX = rightX;             }             scrubber.offset({                 left: possibleX             });             var relativeX = possibleX - leftX;             var stopTimeline = Math.ceil((relativeX / scrubWidth) * symDur); // Make the scrubber scrub the timeline length of timelinePlay             mySymbol.stop(stopTimeline); // Stop the timeline of timelinePlay when the scrubber is released         }     }) }) 
    and have an group called 'scrubber' that contains a div called 'dot' and a box called 'mobileHit.' There's a horizontal bar that's not included in the 'scrubber' div (representation of a timeline) called 'bar' on top of which the 'scrubber' sits.
    the whole contraption controls a symbol called "timelinePlay"
    If there's any way to get the audio included in the timeline and give me the ability to scrub through the timeline /and/ audio, (imagine manually fast forwarding and rewinding a VHS tape) that would be wonderful!!!

    anybody?

  • I'm trying to reverb an audio clip in my timeline and I can't find the effect tab in the browser to drag to my audio clip to reverb. I can reverb the clip in the viewer but can't it won't drag to the timeline. I'm using FCE

    I'm trying to reverb an audio clip in my timeline and I can't find the effect tab in the browser to drag to my audio clip to reverb. I can reverb the clip in the viewer but it won't drag to the timeline. I'm using FCE

    You cannot drag the effects themselves to the timeline.  You add them to a clip in the Viewer, just as you have done. 
    If the clip was already in the timeline when you  opened it in the Viewer (by double-clicking it in the timeline to open it in the Viewer) and then added the reverb effect, there is nothing further to do, you have added the effect to the clip.  You don't drag it back to the timeline.
    You only have to drag the clip to the timeline if the clip was not already in the timeline (for example, if you opened the clip from the FCE Browser; or set different In and Out points in a master clip to use a different portion of the master clip in a different location in your timeline).
    Depending on the effect you add, you may have to render the timeline after adding the effect.  But I don't think reverb requires immediate rendering.  One other note, you said you were working with an audio clip ... audio clips need to be AIFF (not MP3 or something else) and preferably 16-bit stereo.

  • Audio breaks while watching tv in media center

    My Pc model P6270IN with tv tuner and 1gb graphic card.i am experiencing audio breaks while watching tv in media center. I tried searching Internet for this problem but there is no conclusive solution. I tried by recovering pc ,but there is no solution . At first this audio breaks was on some channels but it becoming problem on channels. Pls provide solution for this

    FThanks for the quick reply! I have the X-Fi XtremeGamer, I unplugged the rear speakers and plugged headphones into that jack (I'm assuming that the rear speaker output is also know as line out 2), I had CMSS enabled and when I played a music file, I did hear it through the headphones.

  • Playing audio file while Downloading

    Hello all,
    Can anyone give me an idea on how can I play audio file while downloading.
    Thanks

    Connect the external drive and then launch Disk Utility found in Applications/Utilities. Your external drive while show up in Disk Utility's side bar. It should be Mac OS Extended or OS Extended (Journaled).
    If it isn't:
    Then select it and click the 'Erase tab' at the top.
    Select Mac OS Extended-Journaled formatting from the Volume Format menu.
    Then click the oval Erase button at the lower right. Just remember-this will erase the drive!
    http://danslagle.com/mac/iMovie/usage/5006.shtml
    Sue

  • How do I see the audio waveforms in the timeline

    How do I see the audio waveforms in the timeline
    G5   Mac OS X (10.4.6)  

    In Sequence Setting (cmd-0) set the "Show Audio waveforms" in the Timeline Options tab.

  • Encore CS4 Issues - No Audio & 4:3 Letterbox Colored Artifact

    Vista 64 Ultimate, Quad 6600.
    I have exported SD 16x9 video from Premiere using the preset with the exception of sliding the quality to 5. It is using Dolby as well. The MPEG-DVD video looks and sounds great in WMPlayer. In Encore, I have set the Max bit-rate to 7 instead of 8, as everyone says to be compatible with all DVD players you should do this. I use a 16x9 project in Encore as to allow full screen on 16x9 tvs and then letterbox on 4:3s. First of all, no audio whatsoever. Second, on the 4:3 screen, there are colored horizontal noise lines skipping in and out of the bottom of the video. On a 16x9 screen tv, there is what appears to be slight interlacing, definetly not crisp video. Encore DID re-transcode...possibly this caused the issues? Note there is no audio in the monitor timeline in Encore before burning either. In CS3 it was always said that you should export AVI and then use encore to transcode. Is this carying over? Please, any other suggestions on the problems listed are appreciated.

    If you source .mpg file in En is muxed (audio and video together in one file) and Encore re-transcodes the video, then the audio will be processed as well.
    Export from Pr as separate elementary video and audio streams, then add those to the timeline in En.
    Finally, and most importantly, if En is re-transcoding your MPEG2 DVD footage from Pr, then you have done something wrong during the Pr export.

  • Why can't I see audio waveforms on my timeline?

    Hi,
    I was just upgraded to CS6 Production Premium from CS5 and I can't see any audio waveforms on my timeline in Premiere Pro. Is there some setting I need to change?
    Thanks.
    S.

    There's no setting for this.
    Have you waited for all media to finish conforming?

  • I can't see the Audio Waveforms in the timeline. No triangle button to click. Just switched from FCP. Help!?

    I can't see the Audio Waveforms in the timeline. No triangle button to click. Just switched from FCP. Help!

    When I click on the wrench or right click to customize the box, these are the options I'm given.  I don't see waveform.  I've edited in Adobe Audition for years, and see the waveform panels in all the Premiere Pro tutorials, am I missing something?  (besides a brain?)

  • Can you 'zoom' the audio waveform in the timeline?

    Unable to find a solution in the help or the FAQ, so I'll post my first question here :-)
    I would like to vertically zoom into the audio waveform in the timeline. My situation is that I have a 24-bit audio mix of a classical concert with a fairly large dynamic range, i.e. very loud bits and very quiet bits in one single audio file. I don't see enough waveform detail in the quiet parts, even when I enlarge the track vertically. I haven't found an official way of zooming in, at least in the timeline. The audio-waveform-only display in the source monitor does offer a vertical zoom.
    The official help only offers this:
    "To see more volume detail when viewing an audio waveform in a Timeline panel, increase the track height."
    Which seems to imply that 'zooming' in further to bring out the really quiet parts is not a feature.
    I found a bit of a workaround, which is to adjust the clip gain -- the audio waveform changes accordingly. However I'd prefer not to be changing the audio volume every time I need a different vertical zoom on the waveform.
    Thanks,
    3p

    While you can't zoom and the vertical adjustment is limited (which sucks because you can zoom in Audition)` there are still a few more options that might help increase the vertical size of the tracks window.
    First, to adjust the vertical space of each track in the timeline place your selection tool over the line between the tracks over on the left side of the track where audio controls are and drag the track bottom up or down. You can also increase the workspace of the timeline by dragging it up using the same technique, or if you have another monitor put the timeline over there and make it much bigger.
    Second, use the tilde key to expand the entire timeline window. It's the key to the left of #1 key at the top left. Hit it again to return. It will expand any window that is selected. I use this one to get a better look at the waveform. You can also drag the tracks to make them larger.
    good luck!

  • Loss of audio panning effects with timeline audio of Sync type "Stream"

    I have a Flash animation which is loaded into a parent master Flash file. In the animation, there is voice audio embedded in the timeline which is synced with a character animation. The Sync type of the audio is set to Stream, which is essential for the mouth movements to match the audio. When I try to pan the voice audio so that it comes only out of the right speaker, it sounds fine during preview playback, but after publishing, all of the panning effects are lost. If I change the Sync type to "Event" or "Start", the panning effects work fine, but the audio is terribly out of sync with the animation.
    The source audio is a mono audio file. Not sure if that has anything to do with it. I've tried changing the publish settings for both the parent and the child animation Flash files to be Speech, Mp3 mono, Mp3 Stereo and just about every other option, with no desirable results. I have also tried publishing and running the animation without loading it through the parent file, also no results.
    Is there some kind of rule in Flash about Stream versus Event audio and panning? Do I need to use a stereo audio source file? I don't currently have access to the original audio files, but I can get them. Are all Stream type sounds automatically converted to mono at runtime or something??
    Thank you thank you thank you

    According to the Adobe installation information the trial version of Premiere Elements 11 is fully functional and the watermark is only present until a licence code is purchased.
    I have edited AVI footage from a camcorder using the program with no problems (and no loss of audio sync) and the watermark is also present with this.
    The odd placement of audio and video was caused by my not dragging the clip carefully enough.
    What is odd is that the clip plays completely normally using WIndows Media Player and VLC Media player so I would expect Premiere Elements to be able to handle it without problems.
    I think that there is some sort of bug in Premiere Elements' handling of mpe4 files (both in versions 10 and 11) rather than there being anything wrong with my computer.
    Is there some way of communicating this directly to the Adobe programers ?
    I enclose screenshots of the project settings:

  • Replace audio tracks in a timeline

    Hi all.
    This is actually kind of embarrasing, but here it goes:
    I've made a rough cut of some source material with 4 audio channels, channels 1-2 with environment audio and track 3-4 with interview audio.
    Me being stupid, I did not enable the second audio track on the timeline onto which the clips where going, hence I've got a timeline with only the environment audio, but no voice.
    Is there an automated way to replace the tracks? Edit done in cs6.
    Best regards, Norway.

    I found the solution my self.
    Mark all the clips with wrong audio channels. Hit "Clip" on the upper menu bar, Modify>Audio Channels and do the replacement in the dialog that pops up.

Maybe you are looking for

  • What is the best practice on mailbox database size in exchange 2013

    Hi,  does anybody have any links to good sites that gives some pros/cons when it comes to the mailbox database sizes in exchange 2013? I've tried to google it - but hasn't found any good answers. I would like to know if I really need more than 5 mail

  • How to call the getSystemmessages in script item ?

    Hello i want to make a popup for system messages with getSystemMessages() in the WAD, but i don´t know the right java syntax and how to call it exactly. It is shown in this thread Link: [; but the right code has been deleted. In this  thread is only

  • IMessage on iPad after update

    Anyone elese having a problem with iMessage on iPad after update? Attempting to login says that my internet connection is bad but all other functions working on ipad

  • Storage Space - Inaccessible, reconnect drives

    Hi My 2 HDD Mirror Storage Space is no longer accessible. I cannot see it in explorer, and under Storage Space Manager it says Inaccessible, Reconnect drives. Both disks under Physical Disks are displaying as OK, so I'm really scratching my head. The

  • 7610 says 'contact retail service' when switched o...

    nokia 7610 fell in water. and now when switched on it says contact retail service. please help.