Please help. AVI import question.

Hey everyone, thanks for the help. This has been annoying me for quite some time, and I have tried everything and it still doesn't work. I am using Adobe Premiere Version 7.0, just to let you know. Alright, here we go.
This version of Adobe Premiere Pro doesn't let you capture footage with a USB cable (which they did before, why they got rid of it who knows). I have a firewire port, but it broke a long time ago. Anyway, I can only capture with USB. I use Windows Movie Maker to capture in AVI format. I figure I can capture in WMM and import the AVI files to Adobe Premiere.
When I import the Windows-Movie-Maker-captured AVI files into Premiere, it plays perfectly about 25 percent of the clip before the rest of the clip locks on a still frame and the audio of that frame. I have a 19 minute, 48 second clip, and it only gets to 4:59 before it locks on a still frame for the next 15 mins. Does anyone know why it imports but only renders or conforms the first 25%? I could import wmvs but the quality is so low I'd rather not.
Please, someone help me.
Thanks for your time,
Casey 

Casey,
Welcome to the forum.
I would use Harm's suggestion to convert the Type I to Type II, and the issues should be solved. Normally, Type I's will function OK, with the occasional OOS (Out Of Sync), but it is static (in most cases), and can be easily adjusted for. Still, the conversion is quick and painless. I use DigitalMedia Converter 2.7 (shareware), but there are many free conversion programs, like Prism, that get good reviews.
Do not use any flavor of WMV, as these will cause many issues, with the loss of quality being only one.
Also, unless you have a laptop, a FireWire card would be a very cheap addition, and get you to where you could Capture directly from your miniDV tape camera. I would go with one that has a controller chip for each connection. I've seen these in the US$10 - 20 range for single chip units, and around US$ 30 for multi-chip cards.
Good luck,
Hunt

Similar Messages

  • HT4906 hello, my hard drive broke. I purchased a noew one. Now I have no access to Iphone or any of my old apps. even after I reldownload them. Please help. Important fro work.

    hello, my hard drive broke. I purchased a noew one. Now I have no access to Iphone or any of my old apps. even after I reldownload them. Please help. Important fro work.

    Not ure what this has to do with iPhoto. Perhaps you'd be better off asking on the forum for your MacBookPro.

  • Please help me jmf question

    Hi i want to create custom data source as i have read in different post and also on sun site
    I tried to create one one for my self,
    where am getting stream from tcp port.
    before that i test the data by using socket programming, i saved the input stream into file and played and its working fine and then i transfer that file using avtransmiter2.java and it work fine again its mean it confirm that the data i am getting from skype is working fine . now my question is how to get that input stream and instead of saving to the file i can play it using jmf player or send it on rtp session. i read different post how to create custom data source from inputstreams but have not work for me ... i modified a user code posted http://archives.java.sun.com/cgi-bin/wa?A2=ind0106&L=jmf-interest&D=0&P=25865 in that post some body recommanded to implement seekable so i implemented that one als in that code..... below is the code
    the error is
    LoadInputStream.loadBytes() - realizing player
    Exception in thread "JMF thread: com.sun.media.PlaybackEngine@8ed465[ com.sun.media.PlaybackEngine@8ed465 ] ( configureThread)" java.lang.NullPointerException
    at com.skype.sample.InputSourceStream.read(InputSourceStream.java:89)
    at com.sun.media.parser.BasicPullParser.readBytes(BasicPullParser.java:142)
    at com.sun.media.parser.BasicPullParser.readBytes(BasicPullParser.java:114)
    at com.sun.media.parser.BasicPullParser.readInt(BasicPullParser.java:191)
    at com.sun.media.parser.audio.AuParser.readHeader(AuParser.java:109)
    at com.sun.media.parser.audio.AuParser.getTracks(AuParser.java:76)
    at com.sun.media.BasicSourceModule.doRealize(BasicSourceModule.java:180)
    at com.sun.media.PlaybackEngine.doConfigure1(PlaybackEngine.java:229)
    at com.sun.media.PlaybackEngine.doConfigure(PlaybackEngine.java:193)
    at com.sun.media.ConfigureWorkThread.process(BasicController.java:1370)
    at com.sun.media.StateTransitionWorkThread.run(BasicController.java:1339)
    i need urgent help to this matter so please help me in that i would be very thankfulll ......
    below is the code
    skype use the standard audio format
    Audio format
    File: WAV PCM
    Sockets: raw PCM samples
    16 KHz mono, 16 bit
    Note
    import javax.media.*;
    import java.io.*;
    import java.net.ServerSocket;
    import java.net.Socket;
    import javax.swing.*;
    import java.awt.*;
    import java.util.*;
    public class LoadInputStream extends JFrame implements ControllerListener {
    private Player player;
    /** Creates new LoadInputStream */
    public LoadInputStream() {
    try{
    // declaration section:
    // declare a server socket and a client socket for the server
    // declare an input and an output stream
    ServerSocket SkypeServer = null;
    DataInputStream is;
    Socket clientSocket = null;
    try {
    SkypeServer = new ServerSocket(4447);
    catch (IOException e) {
    System.out.println(e);
    // Open input stream
    clientSocket = SkypeServer.accept();
    is = new DataInputStream(clientSocket.getInputStream());
    loadBytes(is);
    setBounds(100, 100, 300, 300);
    setVisible(true);
    catch(Exception e){
    System.out.println(e);
    /* Loads the given byte [] into the MediaPlayer and starts playing it immediately. */
    public void loadBytes(InputStream is){
    DataSource ds=new DataSource(is);
    System.out.println("LoadInputStream.loadBytes() - Creating DataSource (InputStream)");
    System.out.println("LoadInputStream.loadBytes() - Creating Player");
    try {
    player = Manager.createPlayer(ds);
    } catch(NoPlayerException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    } catch(IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    System.out.println("LoadInputStream.loadBytes() - Adding Controller Listener");
    player.addControllerListener(this);
    System.out.println("LoadInputStream.loadBytes() - realizing player");
    player.realize();
    public static void main(String[] args){
    new LoadInputStream();
    public void controllerUpdate(javax.media.ControllerEvent e) {
    if(e instanceof RealizeCompleteEvent){
    System.out.println("Adding visual component");
    getContentPane().add(player.getVisualComponent());
    player.start();
    =============================Datasource==========================================================
    import java.io.*;
    import java.nio.ByteBuffer;
    import javax.media.*;
    import javax.media.protocol.*;
    public class DataSource extends PullDataSource {
    private InputStream is;
    private byte [] bytes;
    /** Creates new MediaViewerDataSource */
    public DataSource(InputStream is) {
    super();
    this.is = is;
    try{
    int byteCount = is.available();
    bytes = new byte [byteCount];
    is.read(bytes);
    catch (Exception e){
    System.out.println(e);
    public PullSourceStream [] getStreams() {
    PullSourceStream [] streams = new PullSourceStream [1];
    InputSourceStream iss = new InputSourceStream(new ByteArrayInputStream(bytes), new FileTypeDescriptor(ContentDescriptor.RAW_RTP));
    streams[0] = iss;
    return streams;
    public void connect() {}
    public void disconnect() {}
    public String getContentType() {
    return new String("audio.x-wav");
    public MediaLocator getLocator() {
    return null;
    public void initCheck() {}
    public void setLocator(MediaLocator source) {}
    public void start() {}
    public void stop() {}
    public Object getControl(String s){
    return null;
    public Object [] getControls(){
    return null;
    public Time getDuration(){
    return null;
    =================================InputStream======================================================
    import java.io.InputStream;
    import java.io.IOException;
    import java.nio.ByteBuffer;
    import javax.media.protocol.ContentDescriptor;
    import javax.media.protocol.PullSourceStream;
    import javax.media.protocol.Seekable;
    import javax.media.protocol.SourceStream;
    * Build a source stream out of an input stream.
    * @see DataSource
    * @see SourceStream
    * @see java.io.InputStream
    * @version %I%, %E%.
    public
    class InputSourceStream implements PullSourceStream, Seekable {
    protected InputStream stream;
    protected boolean eosReached;
    ContentDescriptor contentType;
    protected ByteBuffer inputBuffer;
    * Construct an <CODE>InputSourceStream</CODE> from an input stream.
    * @param s The input stream to build the source stream from.
    * @param type The content-type of the source stream.
    public InputSourceStream(InputStream s, ContentDescriptor type) {
    stream = s;
    eosReached = false;
    contentType = type;
    * Get the content type for this stream.
    * @return content descriptor for the stream.
    public ContentDescriptor getContentDescriptor() {
    return contentType;
    * Obtain the content length
    * @return content length for this stream.
    public long getContentLength() {
    return SourceStream.LENGTH_UNKNOWN;
    * Query if the next read will block.
    * @return true if a read will block.
    public boolean willReadBlock() {
    if( eosReached == true) {
    return true;
    } else {
    try {
    return stream.available() == 0;
    } catch (IOException e) {
    return true;
    * Read a buffer of data.
    * @param buffer The buffer to read data into.
    * @param offset The offset into the buffer for reading.
    * @param length The number of bytes to read.
    * @return The number of bytes read or -1 indicating end-of-stream.
    public int read(byte[] buffer, int offset, int length) throws IOException {
    int bytesRead = stream.read(buffer, offset, length);
    if( bytesRead == -1) {
    eosReached = true;
    inputBuffer.get(buffer,offset,length);
    return bytesRead;
    * Turn the stream off.
    * @exception IOException Thrown if there is a problem closing the stream.
    public void close() throws IOException {
    stream.close();
    * Return if the end of stream has been reached.
    * @return true if the end of the stream has been reached.
    // $jdr: This is a bug. Need to figure out
    // the "correct" way to determine, before a read
    // is done, if we're at EOS.
    public boolean endOfStream() {
    return eosReached;
    * Returns an zero length array because no controls
    * are supported.
    * @return a zero length <code>Object</code> array.
    public Object[] getControls() {
    return new Object[0];
    * Returns <code>null</code> because no controls are implemented.
    * @return <code>null</code>.
    public Object getControl(String controlName) {
    return null;
    public long seek(long where) {
    try {
    inputBuffer.position((int)(where));
    return where;
    catch (IllegalArgumentException E) {
    return this.tell(); // staying at the current position
    public long tell() {
    return inputBuffer.position();
    public void SeekableStream(ByteBuffer byteBuffer) {
    inputBuffer = byteBuffer;
    this.seek((long)(0)); // set the ByteBuffer to to beginning
    public boolean isRandomAccess() {
    // TODO Auto-generated method stub
    return false;
    }

    Use a BufferedImage where you draw the other images.
    You have to know the size.
    For example if the size is (50*50) for each image :
    int width =50;
    int height = 50;
    BufferedImage bufIm = new BufferedImage(width*3,height*3,BufferedImage.TYPE_INT_ARGB);
    Graphics gr = bufIm.createGraphics();
    int k, j;
    Toolkit tk = Toolkit.getDefaultToolkit();
    Image imTemp;
    for (k = 0; k<3; k++) {
        for (j = 0; j<3; j++) {
            imTemp = tk.getImage(imageNames[k][j]);
            gr.drawImage(imTemp,width*k,height*j, this); // replace this by the Image observer you want (this if you are in a panel for example)
    }After that bufIm contains the images as you want and you can paint it on a Graphics.
    Denis

  • Problem-PLEASE HELP! IMPORTANT!

    I have a Lenovo G530 laptop and all of a sudden, for no reason at all, the integrated webcam that is built into the computer won't work. I always keep my laptop in the same safe place, have never spilled anything on it, have done nothing to make it not work properly. I bought it brand new in September (it is February now) so it isnt that old either. I went to use my webcam on windows live messenger and it came up as a white screen. I went to My Computer, then to take pictures with it from its icon and it came up as the same white screen. I just used my webcam on Skype the other night and it worked fine. Everything else on my computer is running normally, but my webcam is very important to me as I use it alot to keep in touch with friends and family while I'm in university. If someone could please help me it would be greatly appreciated.
    Solved!
    Go to Solution.

    right click my computer > manage > device management > camera > right click > remove device.
    restart your computer and let windows install it again.
    also you may need to re-install camera software, too.

  • Please help me about question security because in my apple id no have for restart or chenge my answer

    please help me about answer security question in my apple id because im forgot for my answer, in my apple id no have for change answer, tell me for this please because i love my iphone.
    <Email Edited by Host>

    You need to ask Apple to reset your security questions; this can be done by clicking here and picking a method, or if your country isn't listed, filling out and submitting this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (110899)

  • Please help with importing and using imovie and idvd

    Hi,
    Please forgive my lack of knowledge. I previously had a mini dv camcorder that was so easy to use with imovie hd. Now that I have switched to an HD Usb 2.0 camcorder that has built in 16gb memory and memory cards, I have had such a great deal of trouble. I really hope you can help and point me in the right directions.
    Importing movies are fine, but they take so long! Currently, when I import a movie, I set the camcorder to PC mode and import through imovie. But the camcorder stays on, and I'm not sure if this is the best way or healthiest for the camcorder. Do you have a better/faster way to import movies? Is there a way to drag the video from the memory onto the computer, and then from there import the movie? I think at least I wouldn't have to leave the camcorder on.
    Also, one major issue I have is that each movie is broken down into 100 or so clips. I coach basketball, and videotape the games. When there is stoppage, I pause the camcorder. I guess that creates so many clips, so that when the film is imported, there are over 100 clips for the entire movie. Is there a way of making that just 1 entire movie/clip?
    Once I have imported the entire movie, which is 100+ clips, I want to simply create a dvd of the game. I know I have to share it, but do you have a better suggestion as to how I should handle this?
    In the past, all I did was import the mini dv movie into imovie HD, share into idvd, and then that was it, dvd made. This process had become so time consuming.
    Please help!

    Yes, I recognized there would be a slight pause between clips - but after all - you paused the camera at those points.
    Putting them all in sequence in iMovie and then encoding in iDVD will take a lot of time.
    An old favorite saying of mine is "not every job worth doing, is worth doing well'. The meaning being sometimes 95% is good enough so you can go on to the next job.
    How much work do you want to put into each DVD? Can you live with the slight pauses?
    would you suggest using a memory card?
    Yes, but 16GB cards aren't cheap (yet).

  • Please help with importing packages

    I am trying to learn the Java Advanced Imaging (JAI) API. I have successfully installed java2SDK.
    I downloaded the JAI library (jai-1_1_2-rc-lib-windows-i586.exe) and have installed it.
    After installation, I added the JAI lib to the CLASSPATH.
    CLASSPATH = C:\java\jai-1_1_2-rc\lib
    when I try compiling a demo program from this tutorial page:
    http://developer.java.sun.com/developer/onlineTraining/javaai/jai/src/FrontPage.java
    I get these errors,
    package javax.media.jai does not exist
    import javax.media.jai.JAI;
    how do I know which directory to copy the JAI lib files to so that
    this import statement can find JAI
    import javax.media.jai.JAI;
    please help if you can
    Thanks
    John

    Hi,
    You have to give the full path of the jar file in classpath along with the jar file name
    something like CLASSPATH = C:\java\jai-1_1_2-rc\lib\jai.jar ...see the jar file name and include that also

  • Please help - CD import issue in itunes

    I would really appreciate some help.
    I have a Sony Vaio laptop and a HP I Pod.
    Have used Itunes with no problems for 9 months and have imported/ripped hundreds of CDs into my library with no issues.
    Recently, however, iTunes stopped allowing me to import/rip CDs into my library. When I try, it imports the first 4-5 seconds of the first song and then locks my entire computer up. I have to power down the laptop.
    I attempted to run the CD diagnostic through iTunes, that also locked up the laptop.
    I have uninstalled and re-installed iTunes several times.
    I had my IT guy look at the laptop and do some preliminary research. He indicated that this is not uncommon and that others have reported having this problem since upgrading to iTunes 6.0.
    Based on that, I un-installed 6.0 and went back to the version that came with the iPod. I think it is 4.9. Problem still exists.
    Please help. I still have a lot of music I would like to load into iTunes.
    Thanks!

    This is what my CD Diagnostics results are:
    Microsoft Windows XP Home Edition Service Pack 1 (Build 2600)
    HP Pavilion 061 PE529A-ABA A523X
    iTunes 6.0.4.2
    CD Driver 2.0.4.3
    CD Driver DLL 2.0.3.2
    LowerFilters: Pfc (2.5.0.204), PxHelp20 (2.0.0.0), AFS2K (3.1.19.0), MxlW2k (1.1.0.116),
    UpperFilters: GEARAspiWDM (2.0.4.3),
    Video Driver: VIA/S3G UniChrome Graphics\VIA/S3G UniChrome Graphics Adapter
    IDE\DiskSAMSUNGSP1203N________________________TL100-24, Bus Type ATA, Bus Address [0,0]
    USBSTOR\DiskGenericUSB_CF_Reader__1.01, Bus Type USB
    USBSTOR\DiskGenericUSB_MS_Reader__1.03, Bus Type USB
    USBSTOR\DiskGenericUSB_SD_Reader__1.00, Bus Type USB
    USBSTOR\DiskGenericUSB_SM_Reader__1.02, Bus Type USB
    IDE\CdRomNEC_DVD+RW_ND-2100AD___________________1.26___, Bus Type ATA, Bus Address [0,0]
    If you have multiple drives on the same IDE or SCSI bus, these drives may interfere with each other.
    Some computers need an update to the ATA or IDE bus driver, or Intel chipset. If iTunes has problems recognizing CDs or hanging or crashing while importing or burning CDs, check the support site for the manufacturer of your computer or motherboard.
    Current user is administrator.
    E: _NEC DVD+RW ND-2100AD, Rev 1.26
    Audio CD in drive.
    Found 12 songs on CD, playing time 54:58 on Audio CD.
    Track 1, start time 00:02:00
    Track 2, start time 06:08:02
    Track 3, start time 10:47:27
    Track 4, start time 15:01:15
    Track 5, start time 19:07:55
    Track 6, start time 22:46:30
    Track 7, start time 27:29:05
    Track 8, start time 31:34:72
    Track 9, start time 35:35:07
    Track 10, start time 39:56:50
    Track 11, start time 43:22:07
    Track 12, start time 49:42:17
    Audio CD reading succeeded.
    Get drive speed succeeded.
    The drive CDR speeds are: 4 8 16 20 24 32.
    The drive CDRW speeds are: 4 8 16 20.
    The drive DVDR speeds are: 4.
    The drive DVDRW speeds are: 4.

  • HELP PLEASE HELP! urgent question with an easy answer!!!!

    Hello;
    I designed a JFrame game, that uses gif files as ImageIcons. The game works perfectly when I run it from console with the java.exe command.
    However; now I want to create a wraparound and run the JFrame in the Internet Explorer from an applet. So I created a new file that extends JApplet; this new file creates a new object of the JFrame-game's class and show()'s it.
    And I created an HTM file that runs the JApplet class. However, the internet explorer cannot open the applet because it has trouble loading the pictures (gif files). How can I load the pictures from my applet for my frame???
    I dont want to change the Java security file. I just want to make the images accessible by my applet. I cannot use commands like setImage in my applet because my JFrame sets the Images.
    (I repeat)My JApplet only invokes an object of my JFrame class and shows it.
    PLEASE HELP PLEASE PLEASE..
    Thanks..

    OK; let me tell you the whole thing. My pictures are in the same folder for sure.
    My JFrame reads pictures and assigns JButtons pictures. when I run the frame there are 16 buttons with the same picture, and when I click the buttons there is a listener in the JFrame that changes the pictures. Simply put, the JFrame has no trouble finding and loading the pictures.
    Then I created a JApplet as follows:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class MemoryApplet extends JApplet
    public void init ()
         GameFrame ce = new GameFrame ();
         ce.show ();
    GameFrame is the name of the JFrame class. Then when I try to open the applet using IE, it gives the following error:
    Exception: java.security.AccessControlException: (javax.io.FilePermission back.gif read)
    back.gif is one of the gif files that are used in GameFrame

  • Urgent!! Please Help! Security Question!

    I have forgotten the answers to my security questions (all three). As i made my Apple ID over 3 years ago, it did not ask me for a recovery e-mail adress. Is there any way i can reset the answers without the e-mail? Please Help!!

    Welcome to the Apple Community.
    ou should contact AppleCare who will initially try to assist you with a reset email or if unsuccessful will pass you to the security team to reset your security questions for you.
    If you are in a region that doesn't have international telephone support try contacting Apple through iTunes Store Support.

  • Please help me - importing videos

    Please help me if you can... I just finished converting a video on Videora, and now I have located the file, but I cannot drag and drop it into iTunes. I have tried going to File > Import... locating the file, and entering it, but that has not worked. Then I tried putting the file as a desktop icon and dragging and dropping it into iTunes, but that appeared to have failed also. Your suggestions would be greatly appreciated - please!

    I have the same problem too. I downloaded videos from limewire and it says that its a WAV file or something but its really quicktime. Maybe I have that backwards but I wonder if it can be converted to the correct file that the ipod plays.

  • Could someone please help me import my iphoto photos into aperture?  They are now just referenced files.

    Hello,
    I am a longtime iphoto user and installed aperture this past december.  At that time I imported all my iphoto photos as referenced files and kept them in their iphoto location.  Since that time, every photo I took was uploaded directly into aperture and stored there.  I am now comfortable enough with aperture that I would like to use it as my primary photo viewer / manipulator and would like to merge my two libraries into one single aperture library.  Unfortunately, I cannot figure out how to do this. 
    I tried consolidating all originals yesterday, however this did not seem to have any effect.  I then tried reimporting my iphoto library, however, this simply duplicated many of my events (and the duplicated ones were not even adjustable via aperture, and each photo had a little exclamation point in the lower right corner).  Both of these attempts did nothing to combine my aperture projects and my iphoto events (which are now seen as a seperate iphoto tab under projects).  I am aware that I can now switch to my iphoto library within aperture in version 3.3, but I just want everything stored in one place and in my aperture library.  Can someone please help me with this?
    The only thing I can think of is deleting all of the iphoto events from aperture and then reimporting them, but I am scared I will either delete something permenantly or that they will simply reimport as referenced files and remain within iphoto. 
    Please help!
    Thanks,
    - Mike

    Mike,
    I am not quite clear about the current state of your iPhoto and Aperture libraries. It looks like you have plenty of broken links to referenced masters in either library. Whatever you do now, it is very important to ensure that you have a working backup, both of your iPhoto Library and your Aperture library, before you try a major reconstruction.
    I tried consolidating all originals yesterday, however this did not seem to have any effect.
    In what way did it not have any effect? From the effects you are describing, it looks like all your original master images have been removed from the iPhoto Library and are now inside the Aperture library as managed masters - at least, this would explain, why trying to import the iPhoto library resulted in duplicated projects (and the duplicated ones were not even adjustable via aperture, and each photo had a little exclamation point in the lower right corner). You removed the original masters from the iPhoto library, and now you could not import it, since the originals are now in Aperture.
    For me it looks, like you simply need to delete the iPhoto images marked with an exclamation mark, for these are already bound to images that you imported earlier. It is perfectly o.k. that the recently imported iPhoto Library appears in a separate section of the projects in your Library Inspector Panel. Each iPhoto event should appear as a project. Aperture will put them there, so you can find them easily.
    You should check now, if the originally imported images, that you imported as referenced, are now managed. If you enable badge overlays you should see no longer any arrows on the thumbnails of your earlier imports. Also, if you select one of these images, you should be able to toggle between original master and version by typing the "M" key.
    Define some smart albums (File > New > Smart album) based on the file status: Add a rule: File status is.
    One smart album: File Status is referenced
    One smart album: File Status is managed
    One smart album: File Status is missing
    The first album should be empty.
    The second album should show all your images you originally imported from iphoto as managed, and that you recently consolidated.
    The third album should show your recent import - the images imported from iPhoto after you consolidated the originals to Aperture and removed these images from iPhoto.
    Post back, when you have checked the file status of your images in Aperture and we can be sure were the images are exactly.
    Regards
    Léonie

  • Please help - cannot import CDs into i-tunes

    My other thread seems to have stalled out so I thought I would try again:
    I have a Sony Vaio laptop and a HP I Pod.
    Have used Itunes with no problems for 9 months and have imported/ripped hundreds of CDs into my library with no issues.
    Recently, however, iTunes stopped allowing me to import/rip CDs into my library. When I try, it imports the first 4-5 seconds of the first song and then locks my entire computer up. I have to power down the laptop.
    I have uninstalled and re-installed iTunes several times.
    I had my IT guy look at the laptop and do some preliminary research. He indicated that this is not uncommon and that others have reported having this problem since upgrading to iTunes 6.0.
    Based on that, I un-installed 6.0 and went back to the version that came with the iPod. I think it is 4.9. Problem still exists.
    Please help. I still have a lot of music I would like to load into iTunes.
    Thanks!
    Sony Vaio   Windows XP  

    First search your lap for any malware or viruses. Then check for any firmware/software updates for your laptop by going to the companys web site.

  • I have NO audio in movies I record but old ones I recorded are fine.  Please help!  Important event in 2.5 hrs.  I HAVE done a complete restart w/o luck.

    My new movies I record have no audio but older ones do.  All other audio is fine.  Is there a setting I am missing that got changed somehow?  Edge button is set to lock rotation and NOT mute.  PLEASE help as I have a very important event at noon today and need it to work. Were is the setting I am missing?
    Jim

    My new movies I record have no audio but older ones do.  All other audio is fine.  Is there a setting I am missing that got changed somehow?  Edge button is set to lock rotation and NOT mute.  PLEASE help as I have a very important event at noon today and need it to work. Were is the setting I am missing?
    Jim

  • Please HELP very important video lost after restoring from backup

    I used my iphone 4 to record me preposing to my fiance and then today I stupidly sync to computer and restore from my 3GS backup before backing up the video files. Is there anyway to get the video back? Please help this is the most important thing in our life. Anything, Anyone please help. I am very devastated right now!

    Too be honest. If you recorded the video on the iPhone 4, and then synced the iPhone 4 to iTunes to the computer it is usually connected to, then the video should be backed up.
    I'm not sure though, how you managed to have your iPhone 4 up and running, but then restore from a backup from your 3GS?? If you have synced your iPhone 4 to iTunes before, then the backup will have been from the iPhone 4. You get the option the first time you connect the iPhone 4 to iTunes, to either setup as a new device or restore from a backup (that's if you have had a iPhone previously). You can restore the iPhone (which would set it up has a new device, which would remove everything off of it). If you have done this, has far as I know the old information off of the iPhone, would be still there until you synced the iPhone to iTunes again.
    In Windows, the library file for iTunes is in username (whatever you are called) music/iTunes, the library file is called iTunes Library.itl, also in this location is the iTunes/iTunes Media folder, in there should be any video/s that have been synced from your iPhone.
    Other information off of the iPhone are in the following location:
    (You will need to first make sure you have Windows set to show hidden files & folders), Username/AppData/Roaming/Apple Computer
    I hope you manage to find your video.

  • PLEASE HELP! Importing project Issue Cs5.5

    OK so I am VERY new to the world of editing. I finished my project and when I went to render it, it kept coming out choppy. I did some research and it appears I may have set up my project settings wrong (when I knew even less than I do know). I read that I can open a new project, set it up with the proper HD settings and then import my other project. Well each time I try to import the full project, Premiere Freezes. I tried importing a Sequence but when I click that option, there are no sequences to select.
    I have a screening tonight so this is pretty seriously urgent!
    Can Anyone Please help me out here?

    Fortunately, for several versions, the setting are no longer global to the Project, and is now about the Sequence. I give a +1 to Peru Bob's recommendation.
    Only caveat is with Audio. Sometimes, when one does a Copy & Paste operation with Audio, things can go wonky, though usually not.
    Good luck, and hope that you meet your deadline.
    Hunt

Maybe you are looking for

  • Want to use Premiere Elements 4 or newer with Windows Vista 64 bit??

    We bought a new pc with Windows Vista 64 bit - but are now having problems using my Photoshop Elements6 and Premiere Elements 4 with our new pc.  it says on the box and on the web - that it is compatible with Vista - so why isn't it working for us? 

  • Flash Builder 4.6 and CS Extension Builder 1.5

    I have downloaded Flash Builder 4.6 and CS Extension Builder 1.5 and we have one big problem related to design mode. Actually when we switch to design the visual editor is completely black! Thanks. Diego

  • Object 'AJS9H7GM38PGOU5HYFHLSBTTB' (ROUT) of type 'Routine' is not availabl

    Hi, I have a query in BI which shows the following error after dropping the same in Transport Connection bar in R.H.S panel. Object 'AJS9H7GM38PGOU5HYFHLSBTTB' (ROUT) of type 'Routine' is not available in version 'A Object 'AHNJBVI0PUYSJNYXQRS2Y06NJ'

  • TMS configuration  for multi-clients in one system

    Hi All, we have got some problem defining transport routes in stms in transport domain... We have to add to target group for one system 6 clients:3 clients with the dev/test roles for country X and 3 clients with dev/test roles for country Y. Transpo

  • Multiple Language tracks

    Hi, I'm not sure if this is the right place to ask this question but I'll give it a shot. I need to add an additional language track to a video I am making. I'm editing in FC Express 3. The situation is that I am creating a wedding video and have Eng