Interruption of sound in a downloaded sequence

I have transfered several video sequences into my project. One of them (the last one) has an interrupted sound  in its second part while the sound is present throughout this sequence in the original file saved.
This happened once already in a sequence placed first of a long serie in another project. The sound was interrupted for one minute or so in the middle of the sequence.
What can I do to save this silent part?
Thank you

Dear Bill,
Sorry for the late answer to your mail. I am a little puzzled by all the hypotheses that have been made...
Finally, this afternoon I placed Adobe Premiere elements 10 in another computer and it worked all right!
Therefore, as the key is now shared by my two computers, how can I disconnect the key from the computer which is not working?
I am going to change it anyway. So, what is the procedure to move the program from one computer to the next?
Thank you for your help.
AM
Message du 25/03/12 18:29
De : "Bill Hunt"
A : "amuzet"
Copie à :
Objet : interruption of sound in a downloaded sequence
Re: interruption of sound in a downloaded sequence
created by Bill Hunt in Premiere Elements - View the full discussion
I save the clips on my computer with the PMB program.
I wonder if the PMB program is doing something, that PrE is having an issue with.
Just is just speculation, but with flash media, there are file size limitations, and most cameras "span" those smaller segments, to then seamlessly assemble them later. At the point of the "spanning," I have read of issues arising. Think about the problem files. Could they be spanned on your card?
If you just Copy one of the problem files from the card to the computer's HDD (say with Windows Explorer), and then use PrE's Importing module, Get Media, do you get a problem then?
Just thinking of possible causes here, so straws ARE being grasped at. I think that there is a similar thread in the PrPro Forum (not sure if it was in CS 5/5.5, or CS 4 and Earlier?), that also had two common elements - a Sony camera and the PMB program. Unfortunately, I have not been able to find it. IIRC, that user's problem was major OOS (Out Of Sync) where the files spanned, once Imported into PrPro. If I can find it, I will link to it, just in case there is something useful in it.
Wish that I had more.
Hunt
Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4290186#4290186
To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4290186#4290186. In the Actions box on the right, click the Stop Email Notifications link.
Start a new discussion in Premiere Elements by email or at Adobe Forums
For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

Similar Messages

  • Recently downloaded a whole cd on itunes. However, as it was downloading one of the songs was interrupted and didn't fully download. How do i get the whole song without having to pay again?

    I recently downloaded a whole cd on itunes. However, as it was downloading one of the songs was interrupted and didn't fully download. How do i get the whole song without having to pay again?

    Depending upon what country that you are in (music can't be re-downloaded in all countries) then try deleting the incomplete track from your iTunes library and redownload it via the Purchased link under Quick Links on the right-hand side of the iTunes store home page on your computer's iTunes.
    If you aren't in a country where you can re-download music then you will need to contact iTunes Support - try the 'report a problem' link from your purchase history : log into your account on your computer's iTunes via the Store > View Account menu option and you should then see a Purchase History section with a 'see all' link to the right of it ; click on that and you should see a list of your purchases ; find that song and use the 'Report a Problem' link and fill in details about the problem (iTunes support should reply within, I think, about 24 hours).
    If the 'report a problem' link doesn't work (it's been taking some people to this site on a browser instead of showing a form in iTunes) then you can try contacting iTunes support via this page : http://www.apple.com/support/itunes/contact/- click on Contact iTunes Store Support on the right-hand side of the page.

  • I recently downloaded a whole cd on itunes. However, as it was downloading one of the songs was interrupted and didn't fully download. How do i get the whole song without having to pay again?

    I recently downloaded a whole cd on itunes. However, as it was downloading one of the songs was interrupted and didn't fully download. How do i get the whole song without having to pay again?

    Go to iTunes Store > Purchased ( in Quick Links on the right) and redownload

  • How can I add photos to a video without interrupting the sound of the original video?

    In PE11, How can I add photos to a video without interrupting the sound of the original video?

    RLHeflin
    Thanks for getting your details posted. Good job.
    You further explained
    I am simply wanting to “overlay” a new visual element without disturbing the underlying audio.
    A classical way to do a Premiere Elements Overlay is to hold down the Ctrl key of the computer main keyboard and drag the new clip over the area of the one you want to replace on the Timeline. That should not do anything but replace one portion of the video on the Timeline. No change in duration video or audio track if you are dealing with video linked to audio.
    If you hold down the Alt key of the computer main keyboard, I am envising a scenario where you want to add to (not replace) some Timeline content.
    A just in case note, if you have video on Video 1 and 2 and the video in 2 does not have transparent areas in it, then all you will see is the Video 2 content. I believe that Hunt eluded to that concept as a possible technique for what you might be doing.
    Another just in case, if you have not seen the following Adobe documentation on arranging clips, you might be interested in the following link
    http://help.adobe.com/en_US/premiereelements/using/WS9B8F8208-EAE8-4b49-A79B-9479B46A8981. html
    Please update us on your progress when you get a chance.
    Thank you.
    ATR

  • Where is the javax sound package for download?

    Where is the javax sound package for download? (URL) I got the latest JDK yesterday and tried to compile some audio applet but it looks like all of the Javax stuff is missing from the latest JDK.
    Where do I download the javax sound package ?
    Dan

    This is an audio player that another posted here. I tried to compile and run it but here were the results.
    javac SimplePlayerApplet.javaSimplePlayerApplet.java:9: package javax.media does not exist
    import javax.media.*;
    ^
    SimplePlayerApplet.java:11: cannot find symbol
    symbol: class ControllerListener
    public class SimplePlayerApplet extends Applet implements ControllerListener {
    ^
    SimplePlayerApplet.java:14: cannot find symbol
    symbol : class Player
    location: class SimplePlayerApplet
    Player player = null;
    ^
    SimplePlayerApplet.java:122: cannot find symbol
    symbol : class ControllerEvent
    location: class SimplePlayerApplet
    public synchronized void controllerUpdate(ControllerEvent event) {
    ^
    SimplePlayerApplet.java:44: cannot find symbol
    symbol : class MediaLocator
    location: class SimplePlayerApplet
              MediaLocator mrl = null;
              ^
    SimplePlayerApplet.java:63: cannot find symbol
    symbol : class MediaLocator
    location: class SimplePlayerApplet
              if ((mrl = new MediaLocator(mediaFile)) == null)
              ^
    SimplePlayerApplet.java:68: cannot find symbol
    symbol : variable Manager
    location: class SimplePlayerApplet
                        player = Manager.createPlayer(mrl);
                        ^
    SimplePlayerApplet.java:69: cannot find symbol
    symbol : class NoPlayerException
    location: class SimplePlayerApplet
              } catch (NoPlayerException e) {
              ^
    SimplePlayerApplet.java:130: cannot find symbol
    symbol : class RealizeCompleteEvent
    location: class SimplePlayerApplet
         if (event instanceof RealizeCompleteEvent) {
         ^
    SimplePlayerApplet.java:165: cannot find symbol
    symbol : class CachingControlEvent
    location: class SimplePlayerApplet
         } else if (event instanceof CachingControlEvent) {
         ^
    SimplePlayerApplet.java:166: cannot find symbol
    symbol : variable Controller
    location: class SimplePlayerApplet
         if (player.getState() > Controller.Realizing)
         ^
    SimplePlayerApplet.java:170: cannot find symbol
    symbol : class CachingControlEvent
    location: class SimplePlayerApplet
         CachingControlEvent e = (CachingControlEvent) event;
         ^
    SimplePlayerApplet.java:170: cannot find symbol
    symbol : class CachingControlEvent
    location: class SimplePlayerApplet
         CachingControlEvent e = (CachingControlEvent) event;
         ^
    SimplePlayerApplet.java:171: cannot find symbol
    symbol : class CachingControl
    location: class SimplePlayerApplet
         CachingControl cc = e.getCachingControl();
         ^
    SimplePlayerApplet.java:181: cannot find symbol
    symbol : class EndOfMediaEvent
    location: class SimplePlayerApplet
         } else if (event instanceof EndOfMediaEvent) {
         ^
    SimplePlayerApplet.java:184: cannot find symbol
    symbol : class Time
    location: class SimplePlayerApplet
         player.setMediaTime(new Time(0));
         ^
    SimplePlayerApplet.java:186: cannot find symbol
    symbol : class ControllerErrorEvent
    location: class SimplePlayerApplet
         } else if (event instanceof ControllerErrorEvent) {
         ^
    SimplePlayerApplet.java:189: cannot find symbol
    symbol : class ControllerErrorEvent
    location: class SimplePlayerApplet
         Fatal(((ControllerErrorEvent)event).getMessage());
         ^
    SimplePlayerApplet.java:190: cannot find symbol
    symbol : class ControllerClosedEvent
    location: class SimplePlayerApplet
    } else if (event instanceof ControllerClosedEvent) {
    ^
    19 errors
    So what am I missing ...and where do I get it ??
    Dan

  • When I download a video from verizon cloud the sound won't download. Why is that?

    When I download a video from verizon cloud the sound won't download. Why is that?

        We'll help figure this out, taney! What type of device are you downloading to? Have you tried downloading to a different device? Have you ever been able to download before and gotten the sound? Please provide some additional details, and we will work to resolve this matter.
    Thanks,
    MichelleH_VZW
    Follow us on Twitter @VZWSupport

  • HT201272 COnnection Interrupted and movie didn't download..

    I started downloading a movie, but my connection was interrupted.  When I try to re-enter the code, the computer tells me it has already been downloaded.  When I look in my library, the icon shows it is still downloading, but nothing is.  HELP!

    Hi libbilmt!
    It sounds like you may need to report an issue with this purchase:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBooks Store purchase
    http://support.apple.com/kb/ht1933
    Take care, and thanks for visiting the Apple Support Communities.
    Cheers,
    Braden

  • HT1338 Mountain Lion installation was interrupted - can't restart the download.

    My Mountain Lion installation was interrupted.  Now, when I try to download, it won't do it.  After clicking "Download" it pauses for a moment, and then nothing happens. 
    Any suggestions?  Thanks!
    - Jeff T

    The server is too busy and your connection timed out with the server. Try doing this at night because there is less traffic.

  • Sound Recorder with Wav sequence

    Hi
    I am lookin for sample code of sound recorder which displays the wav sequence while recording...
    something like Windows sound recorder...
    If Anyone knows... pls let me knw..
    Thanks & Regards,
    Chandrakanth

    Look at the JavaSound Demo (http://java.sun.com/products/java-media/sound/samples/JavaSoundDemo/)
    You must run it as a standalone app (java -jar JavaSoundDemo.jar) or modify your policy files, and thats tedious.
    In the app, there are several tabs and select the one of capture / playback.
    R. Hollenstein

  • Distortion of sound when replaying downloaded music CDs or when transferred to ipod

    I have just purchased new HP Pavilion G6 1165SA loaded with Windows 7
    I store my CDs on I-tunes and have successfully transferred all previously downloaded CDs.
    However, having just downloaded from CD  six new CDs I find that while 2 have downloaded successfully, 4 of the CDs have extreme distortion on play back on la top and also when transferred to ipod. Of those downloaded, No 2 and 6 were successful but the others distorted. 
    All Cds play without distortion when played without downloading and on other CD players.
    Can you advise?

    Welcome to the Forum, RDBates,
    This is not my area of expertise - hopefully someone will offer some "expert" help.
    Meanwhile - I will try to help, at least maybe get you pointed in a direction that will help you help yourself.
    There are options for listening to the music while it is on the system.  Most of the time it is not useful to change these options because the onboard speakers and the onboard audio cannot deal with the changes.  However, it depends on how the music was recorded, (and how much you know about the individual recordings), your individual hardware and software...
    Things to try...
    iTunes is fussy.  Turn off all the "EQ" settings, make a plain recording without any bass, treble, anything, and transfer "cold".  I don't know if this is even possible.  I do not know one would do that.  I do know that when it's not working right, reducing the variables is one of the basic troubleshooting steps in most situations.
    Audio Check:
    Make sure your drivers are happy - yes, the system is new, so it's likely all is in order.  Check your audio drivers and make sure they are not showing little errors (yellow bits on the icons).  If you like, right click and check the properties.  If you find anything with a "yellow" warning icon on it, right click on it and update the driver.  If it gets complicated, come back and ask for help.
    Control Panel --> Device Manager --> audio
    Bits:
    Next is the adjustment for sample rate and bit rate.  It is likely too late to adjust significantly once the music has been downloaded, even assuming you knew the original information and could control it (which is usually not possible given the restrictions of the notebook hardware).  Having said that, it may be possible to make the listening experience better by changing this setting.  Keep it down in the 16 Bit range when/if you rip - unless you have some reason to know otherwise about your equipment.  (Putting it at 24bit makes larger files and won't ordinarily increase the quality - it could harm it.)
    Start with "Bit, 48000 Hz (DVD Quality)" and go from there...
    Right-Click on the Sound icon (in your Taskbar)  --> Playback devices --> Properties --> Advanced
    Enhancements:
    It may not help with distortion, but I've heard that this next setting can help with the awful "highs" and "lows" that folks hear from their systems, that is, first something is too loud and then it's too soft.  If this is not a problem, then don't adjust this setting - it's best to leave all Enhancements "Disabled" unless you need them.
    Select and Check "Loudness Equalization" in Enhancements, if needed
    Right-Click on the Sound icon --> Properties --> Enhancements
    NOTE:  There are a couple of other "Enhancements" - "Virtual Surround" and "Room Correction"... this is not a Bose system and you'll probably be better off just ignoring these.  Just my opinion:  adding variables to a bad situation may not help and could just make the mess worse.
    Options for Ripping Music
    If you are using the onboard software (Window Media Player on some systems) for ripping music, then be sure to look at the onboard (system) Help file under (search for) "ripping music".  If you are not using the onboard software, then you might try it as a benchmark.
    Graphics:
    I hope this helps!
    Good Luck!
    I'd be interested to know if any of this helped.
    Kudos are earned!
    Kind Regards,
    Dragon-Fur

  • Sound distortion after downloading artworks

    I am using the latest version of itunes 7.0.1.8
    It has seemed ok, until yesterday i decided to click on get album artwork.
    The artwork was downloaded fine but the noice quality immediately after and since has been awful. I can only describe it as an interferance / distortion. It is a constant sound regardless of teh beat / tone of teh music. When i use any other program to run sounds or music (windows media, audacity, windows sounds) it works fine UNLESS itunes is running. If itunes is running all noise on teh machine is unbearable.
    As soon as i exit itunes, all sound is good again.
    When i first upgraded to itumes 7 i had some sound qulaity issues , thyat were resolved by the latest upgrade, but this is an altogether different and more prevalent sound.

    Goto the PC makers site and update your sound card/drivers
    In Windows goto Control panel>Quicktime>Audio tab check "Safemode" hit OK and reboot the PC for settings to take
    If that doesn't work try the steps here http://docs.info.apple.com/article.html?artnum=93610

  • S.O.S - Video sound loss since downloading latest Quicktime update

    Any help would be much appreciated... I think this started happening right after I received an alert to update my Quicktime software a couple weeks ago and did the download... The sound does NOT play anymore when I hit play on certain (not all) video's around the internet. Not sure if it happens with some of my own personal video's, as I haven't checked them yet (I'll cry if so). I have mostly noticed it here and there, like with certain YouTube.com or Myspace.com video's. Initially I thought it was a glitch within the website, now I'm thinking something is wrong with my computer. This is why I hate doing these downloads,and will probably not wanna update anymore. An update should make things better - not break them!

    The order of installation doesn't really matter, but when you have finished (and I am going to give you the full nine yards below) repair permissions and restart.
    These are the downloads and the settings you need in order to view/hear pretty much everything that the net can throw at you: The setup described below has proved repeatedly successful on both PPC and Intel macs, but nothing in life carries a guarantee!
    It is known to work in the great majority of cases with Safari 3.0.4, 3.1, 3.1.1, QT 7.3, 7.4.x and 7.5 and OS 10.4.11.
    Assuming you already run Tiger versions OS 10.4.11 and have Quicktime 7.2 or above, and are using Safari 2 or 3, download and install (or re-install even if you already had them) the latest versions, suitable for your flavor of Mac, of:
    RealPlayer 11 (which is no longer in beta) for Mac from:
    http://www.versiontracker.com/dyn/moreinfo/macosx/15540
    Flip4Mac WMV Player from http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx (Windows Media Player for the Mac is no longer supported, even by Microsoft)
    Perian from http://perian.org/
    You should read this support page http://perian.org/#support in case you need to delete older codecs.
    Adobe FlashPlayer should first be uninstalled using the appropriate uninstaller available here:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14157&sliceId=2
    and then the latest version obtained from here:
    http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash
    and installed.
    (You can check here: http://www.adobe.com/products/flash/about/ to see which version you should install for your Mac and OS, but please see my footnote if you are running Leopard.)
    In earlier versions than QT 7.1.3 in Quicktime Preferences, under advanced, UNcheck Enable Flash, and under Mime settings/Miscellananeous only check Quicktime HTML (QHTM).
    You should also ensure, if you are running Tiger 10.4.11, that you have downloaded and installed all the correct version for your Mac of Security Updates up to and including 2008-004. (N.B. Security Updates require both a restart and a permission repair.)
    In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them). However it should be noted that Perian is not an internet plugin and will not play DivX files imbedded on a website. For that you will need the DivX Player browser plugin available from http://www.divx.com/divx/mac/
    Now go to Safari Preferences/Security, and tick the boxes under Web Content (all 4 of them) to enable Java.
    Lastly open Audio Midi Setup (which you will find in the Utilities Folder of your Applications Folder) and click on Audio Devices. Make sure that both Audio Input and Audio Output, under Format, are set to 44100 Hz, and that you have selected 'Built in Audio'.
    Important: Now repair permissions and restart.
    You should also consider having the free VLC Player from http://www.videolan.org/ in your armory, as this plays almost anything that DVD Player might not.
    There is an additional 'fix' you could try if you are having problems with Flash and Quicktime, depending on which type of Mac you have:
    On Intel Macs, make sure that you are not running Safari in Rosetta. You can check this, and change it, in the Get Info window.
    On PPC Macs, go to the Hard Disk/Library/Internet Plug-Ins folder, and drag the file 'QuickTime Plugin.webplugin' to the desktop. Quit and restart Safari. If things have improved you can trash that file. If they haven't put it back, as the lack of this plug-in can cause QT content in some widgets to cease functioning.
    And now there is an additional kid on the block: SilverLight. Microsoft has created their own version of what a replacement for Flash should be. You can read more about it here:
    http://silverlight.net/
    So, if you go to any sites that have been designed for this new Silverlight stuff, you can download the plug-in from here (but make certain that you are downloading SilverLight v.1.0 for OS X (10.4.8 upwards):
    http://silverlight.net/GetStarted/
    FOOTNOTE
    If you are running Leopard:
    Some users have mentioned that the latest Flash Player (v.9.0.115.0) conflicts with Leopard, and that they have needed to revert to v. 9.0.47. This can be downloaded from here:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14266&sliceId=1

  • HT4085 Audio sound loss after downloading iOS6 on my new ipad

    After a few weeks of downloading the new software update- iOS6 i've noticed a sudden change on my games...some games loss their sounds and begun to hung up...so i deleted them...just recently when i've noticed my audio sound was gone..no game sounds,can do facetime,yahoo videocall,and skype but i could'nt hear them they can hear me though...went to youtube for tutorial how to troubleshoot it but all things were useless...to the point that i have to reset back again and its still the same...Can anyone tell me what to do?

    i would basic troubleshooting restart,reset, and restore

  • No sound in Multi-cam sequence

    Hello, Good People of this Forum,
    I have no sound in a multi-cam sequence. I have 4 audio tracks in the originating sequence with all but track 4 silenced. The audio plays fine in the originating sequence but it's silent in the MC sequence.
    Any suggestions are greatly appreciated.
    Thanks!
    wsmith

    FAQ:Why is there no audio during multi-camera editing?
    Cheers
    Eddie
    PremiereProPedia   (
    RSS feed)
    - Over 300 frequently answered questions
    - Over 250 free tutorials
    - Maintained by editors like
    you
    Forum FAQ

  • No sound when watching downloaded movies on TV Go App

    I have a Samsung Galaxy S4 with the TV Go App installed. It used to work fine, but it no longer plays sound on downloaded movies, regardless of which quality of video is downloaded. Is there a fix for this issue? My volume is not on mute and head phones/speakers work for all other functions. 

    Not sure why you asked the question here since it has nothing to do with the AirPort Express (AX) nor wireless networking.
    You should post your question in the iPod touch discussion area.

Maybe you are looking for