Converted DVD files, Now I Need More Help

I converted my DVD files so that my video iPod can read them, but now I have another problem. It would seem that a DVD has 8 or more seperate files that contains different portions of the actual movie.
How can I get all of those different chapter files into one streaming video?

You need to install itunes (the actual program) on your C: drive. The program and preference files don't take up that much space.
Then put the actual music, podcasts, videos, etc on the exHD. Use itunes to do this, not Win Explorer, so itunes will be able to find the files after the move.
Directions on moving the music to an exHD:
http://support.apple.com/kb/HT1364

Similar Messages

  • As I installed WindowsXP I made a partition of 20Gb. Now I need more space. My Mac says: not possible. Is there yet a possibility to increase my Windows-partition.?

    As I installed WindowsXP I made a partition of 20Gb called Bootcamp. Now I need more space. My Mac says: not possible. Is there yet a possibility to increase my Windows-partition.?

    You should  probably repost in the Boot Camp forum, I think you stand a better chance of getting an answer there.
    Roger

  • How to convert Property files into Java Objects.. help needed asap....

    Hi..
    I am currently working on Internationalization. I have created property files for the textual content and using PropertyResourceBundles. Now I want to use ListResourceBundles. So what I want to know is..
    How to convert Property files into Java Objects.. I think Orielly(in their book on Internationalization) has given an utitlity for doing this. But I did not get a chance to look into that. If anyone has come across this same issue, can you please help me and send the code sample on how to do this..
    TIA,
    CK

    Hi Mlk...
    Thanks for all your help and suggestions. I am currently working on a Utility Class that has to convert a properties file into an Object[][].
    This will be used in ListResourceBundle.
    wtfamidoing<i>[0] = currentKey ;
    wtfamidoing<i>[1] = currentValue ;I am getting a compilation error at these lines..(Syntax error)
    If you can help me.. I really appreciate that..
    TIA,
    CK

  • Can't convert RAW files to .psd...help!

    When I open a RAW file using Camera RAW in Photoshop Elements 9 on my Mac and try to save it as a .psd or .jpg or even a .tif, the extension of the file stays at .CR2 and does not want to convert my file.  I had no issues yesterday...just today.  I rebooted and even updated the Photoshop software.
    Help please!
    Julien

    If you've ever opened the Saving preference in the editor you will need to manually enter the file extension from now on, or else delete the prefs and never open that particular pane again. This is a known bug in the mac version, and not just for raw files, but for any file where you do a Save As.

  • Need more help with a GUI

    It's the ever popular Inventory program again! I'm creating a GUI to display the information contained within an array of objects which, in this case, represent compact discs. I've received some good help from other's posts on this project since it seems there's a few of us working on the same one but now, since each person working on this project has programmed theirs differently, I'm stuck. I'm not sure how to proceed with my ActionListeners for the buttons I've created.
    Here's my code:
    // GUICDInventory.java
    // uses CD class
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    public class GUICDInventory extends JFrame
         protected JPanel panel; //panel to hold buttons
         protected JPanel cdImage; // panel to hold image
         int displayElement = 0;
         public String display(int element)
                   return CD2[element].toString();
              }//end method
         public static void main( String args[] )
              new GUICDInventory();
         }// end main
         public GUICDInventory()
              CD completeCDInventory[] = new CD2[ 5 ]; // creates a new 5 element array
             // populates array with objects that implement CD
             completeCDInventory[ 0 ] = new CD2( "Sixpence None the Richer" , "D121401" , 12 , 11.99, 1990 );
             completeCDInventory[ 1 ] = new CD2( "Clear" , "D126413" , 10 , 10.99, 1998 );
             completeCDInventory[ 2 ] = new CD2( "NewsBoys: Love Liberty Disco" , "2438-51720-2" , 10 , 12.99, 1999 );
             completeCDInventory[ 3 ] = new CD2( "Skillet: Hey You, I Love Your Soul" , "D122966" , 9 , 9.99, 1998 );
             completeCDInventory[ 4 ] = new CD2( "Michael Sweet: Real" , "020831-1376-204" , 15 , 12.99, 1995 );
             //declares totalInventoryValue variable
                 double totalInventoryValue = CD.calculateTotalInventory( completeCDInventory );
              final JTextArea textArea = new JTextArea(display(displayElement));
              final JButton prevBtn = new JButton("Previous");
              final JButton nextBtn = new JButton("Next");
              final JButton lastBtn = new JButton("Last");
              final JButton firstBtn = new JButton("First");
              prevBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                        displayElement = (//what goe here? ) % //what goes here?
                        textArea.setText(display(displayElement));// <--is this right?
              nextBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                          displayElement = (//what goes here? ) % //what goes here?
                        textArea.setText(display(displayElement));// <--is this right?
              firstBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                        displayElement = 0;
                        textArea.setText(display(displayElement));// <--is this right?
              lastBtn.addActionListener(new ActionListener()
                    public void actionPerformed(ActionEvent ae)
                        displayElement = //what goes here?;
                        textArea.setText(display(displayElement));// <--is this right?
              JPanel panel = new JPanel(new GridLayout(1,2));
              panel.add(firstBtn); panel.add(nextBtn); panel.add(prevBtn); panel.add(lastBtn);
              JPanel cdImage = new JPanel(new BorderLayout());
              cdImage.setPreferredSize(new Dimension(600,400));
              JFrame      cdFrame = new JFrame();
              cdFrame.getContentPane().add(new JScrollPane(textArea),BorderLayout.CENTER);
              cdFrame.getContentPane().add(panel,BorderLayout.SOUTH);
              cdFrame.getContentPane().add(new JLabel("",new ImageIcon("cd.gif"),JLabel.CENTER),BorderLayout.NORTH);
              cdFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              cdFrame.pack();
              cdFrame.setSize(500,200);
              cdFrame.setTitle("Compact Disc Inventory");
              cdFrame.setLocationRelativeTo(null);
              cdFrame.setVisible(true);
         }//end GUICDInventory constructor
    } // end class GUICDInventory
    // CD2.java
    // subclass of CD
    public class CD2 extends CD
         protected int copyrightDate; // CDs copyright date variable declaration
         private double price2;
         // constructor
         public CD2( String title, String prodNumber, double numStock, double price, int copyrightDate )
              // explicit call to superclass CD constructor
              super( title, prodNumber, numStock, price );
              this.copyrightDate = copyrightDate;
         }// end constructor
         public double getInventoryValue() // modified subclass method to add restocking fee
            price2 = price + price * 0.05;
            return numStock * price2;
        } //end getInventoryValue
        // Returns a formated String contains the information about any particular item of inventory
        public String displayInventory() // modified subclass display method
              return String.format("\n%-22s%s\n%-22s%d\n%-22s%s\n%-22s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n  \n" ,
                                       "CD Title:", title, "Copyright Date:", copyrightDate, "Product Number:", prodNumber , "Number in Stock:",
                                       numStock , "CD Price:" , "$" , price , "Restocking fee (5%):", "$", price*0.05, "Inventory Value:" , "$" ,
                                       getInventoryValue() );
         } // end method
    }//end class CD2
    // CD.java
    // Represents a compact disc object
    import java.util.Arrays;
    class CD implements Comparable
        protected String title; // CD title (name of product)
        protected String prodNumber; // CD product number
        protected double numStock; // CD stock number
        protected double price; // price of CD
        protected double inventoryValue; //number of units in stock times price of each unit
        // constructor initializes CD information
        public CD( String title, String prodNumber, double numStock, double price )
            this.title = title; // Artist: album name
            this.prodNumber = prodNumber; //product number
            this.numStock = numStock; // number of CDs in stock
            this.price = price; //price per CD
        } // end constructor
        public double getInventoryValue()
            return numStock * price;
        } //end getInventoryValue
        //Returns a formated String contains the information about any particular item of inventory
        public String displayInventory()
              //return the formated String containing the complete information about CD
            return String.format("\n%-22s%s\n%-22s%s\n%-22s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n%-22s%s%.2f\n  \n" ,
                                       "CD Title:", title, "Product Number:", prodNumber , "Number in Stock:",
                                       numStock , "CD Price:" , "$" , price , "Restocking fee (5%):", "$", price*0.05, "Inventory Value:" , "$" ,
                                       getInventoryValue() );
        } // end method
        //method to calculate the total inventory of the array of objects
        public static double calculateTotalInventory( CD completeCDInventory[] )
            double totalInventoryValue = 0;
            for ( int count = 0; count < completeCDInventory.length; count++ )
                 totalInventoryValue += completeCDInventory[count].getInventoryValue();
            } // end for
            return totalInventoryValue;
        } // end calculateTotalInventory
         // Method to return the String containing the Information about Inventory's Item
         //as appear in array (non-sorted)
        public static String displayTotalInventory( CD completeCDInventory[] )
              //string which is to be returned from the method containing the complete inventory's information
              String retInfo = "\nInventory of CDs (unsorted):\n";
              //loop to go through complete array
              for ( int count = 0; count < completeCDInventory.length; count++ )
                   retInfo = retInfo + "Item# " + (count + 1);          //add the item number in String
                   retInfo = retInfo + completeCDInventory[count].displayInventory();     //add the inventory detail in String
              }// end for
              return retInfo;          //return the String containing complete detail of Inventory
        }// end displayTotalInventory
         public int compareTo( Object obj ) //overlaod compareTo method
              CD tmp = ( CD )obj;
              if( this.title.compareTo( tmp.title ) < 0 )
                   return -1; //instance lt received
              else if( this.title.compareTo( tmp.title ) > 0 )
                   return 1; //instance gt received
              return 0; //instance == received
              }// end compareTo method
         //Method to return the String containing the Information about Inventory's Item
         // in sorted order (sorted by title)
         public static String sortedCDInventory( CD completeCDInventory[] )
              //string which is to be returned from the method containing the complete inventory's information
              String retInfo = "\nInventory of CDs (sorted by title):\n";
              Arrays.sort( completeCDInventory ); // sort array
              //loop to go through complete array
              for( int count = 0; count < completeCDInventory.length; count++ )
                   retInfo = retInfo + "Item# " + (count + 1);     //add the item number in String
                   retInfo = retInfo + completeCDInventory[count].displayInventory(); //add the inventory detail in String
              return retInfo;     //return the String containing complete detail of Inventory
         } // end method sortedCDInventory
    } // end class CD

    nextBtn.addActionListener(new ActionListener()
         public void actionPerformed(ActionEvent ae)
                   displayElement = (//what goes here? ) % //what goes here?
                   textArea.setText(display(displayElement));// <--is this right?
    });Above is your code for the "Next" button.
    You ask the question "What goes here"? Well what do you think goes there?
    If you are looking at item 1 and you press the "Next" button do you not want to look at item 2?
    So the obvious solution would be to add 1 to the previous item value. Does that not make sense? What problem do you have when you try that code?????
    Next you say "Is this right"? Well how are we supposed to know? You wrote the code. We don't know what the code is supposed to do. Again you try it. If it doesn't work then describe the problem you are having. I for one can't execute your code because I don't use JDK5. So looking at the code it looks reasonable, but I can't tell by looking at it what is wrong. Only you can add debug statements in the code to see whats happening.
    If you want help learn to as a proper question and doen't expect us to spoon feed the code to you. This is your assignment, not ours. We are under no obligation to debug and write the code for you. The sooner you learn that, the more help you will receive.

  • HT4061 I AM ASKING THAT I TRIED TO UPDATE MY iPHONE 4 BUT NOT RESPONDING PLEASE I NEED MORE HELPING

    I AM ASKING THAT I TRIED TO UPDATE MY iPHONE 4 BUT NOT RESPONDING PLEASE I NEED MORE HELPING

    If you are rying to update an iPhone 4 that now has iOS 4.3, you must connect to a computer with iTunes, start iTunes and select the iPhone from the list of Devices on the left side of the window.  Then in the main Summary window select Software Update.  The process will take a rather long time, up to half an hour depending on the speed of your internet connection.

  • I moved a completed dvd file. now cannot open it to make more copies

    I moved my competed files (dvd made with premier 9) and now want to open it, but it will not open. Even though I moved it back to the pc hard drive, it loads the clips, but with a red screen saying something about no media???

    Ken
    Thanks for the reply.
    Was there a problem attaching a screenshot to your post 4 since your message included
    This is what my files look like when I open the premiere program.
    and I did not see an expected screenshot.
    Premiere Elements project files (project.prel) have been known to failed to open for a variety of reasons, one being that the source media that went into them was moved, deleted, or renamed after the save/close of the project file (project.prel). In some cases, one of these media disconnected project.prel files may open but greet you with "Where is the file.....?" messages which you use for the reconnect. You may want to check out the Adobe document on troubleshooting damaged projects.
    Troubleshoot damaged projects | Adobe Premiere Elements
    How did you do with the mini test troubleshooting that I suggested in the prior post
    Do you have all the source media that went into the project? If so, move it to a hard drive save location. Remember where everything has been placed.
    Open Premiere Elements project to be greeted by the "Where is the file.....?" messages (one after another). Indivdually use a message to browse to the file that the program it looking for and select it to reconnect the missing media. Repeat that for all the "Where is the file....?" messages.
    Have you actually tried to open any of the older projects that you have treated in the same manner as this current one?
    Just moving the saved closed project.prel file (project file) or even renaming it on the hard drive after the save close should not be creating problems with opening that saved/closed project. That is why I am focusing on your workflow and media disconnect. How are you trying to open the saved/closed project that will not open? If you start a new project and save/close/reopen it immediately without any relocation of the project file, does the saved/closed project re-open?
    We will be watching for that screenshot to determine if we can spot important information in it to direct us in the troubleshooting.
    Please review and consider.
    Thank you.
    ATR

  • [HELP] Originally only edited with 2 channels of audio on files now I need 4?!?

    premiere pro cs6, already edited a film and need to add the sound. I have them synced with the 4 channel audio attached but the original edit the files only had 2 channels, how can import the new ones with the 4 channels back into the program and get the 4 channels in the timeline? The problem I'm having is that it was set up with only 2.
    [Text formatting corrected.]
    Message was edited by: Jim Simon

    maybe this does a better job of explaining:
    I edited a film without syncing the sound first, and the video files only had 2 audio channels.  After syncing they have 4, but when I import them back into premiere it only allows me to use to of the audio channels, is there anyway to get them back in to premiere with all 4 channels attached.

  • Converted DVD file -nowhere to be found on my computer?

    Ok so I ripped a DVD and converted using Videora ipod converter. It took me 2 hours to do this. And now, the converted file is not in the folder that the ipod converter outputs to, and I did a search on my computer and it comes back with no results.
    Aaaaaaahhhhh! Does anyone know what went wrong, or where I might find it?
    Thanks!

    I don't have a file called that. My converter setting is set to output to:
    C:\Program Files\VideoraiPodConverter\Videos
    but there is nothing in my "videos" folder

  • I can't convert emailed files to PDF any more.

    Hi, all !
    I have the latest version of Adobe Acrobat (XI) and have been using Adobe for years.  It has worked flawlessly.  Up to now.  Of late, when I receive a file, and double-click on it to convert it to PDF, the following MS pop up appears:  "Security Alert:  Your current security settings do not allow this file to be downloaded." 
    I've gone through my Norton settings, and it clearly has nothing to do with Norton.  It it Microsoft?  I have 64 bit Windows 7, MS Office.

    Hi wiegs,
    Where are you downloading the PDF files from? Are they opening in a browser, and you're trying to download from there? Or are you downloading directly from your mail client? Please see this article from Microsoft for starters: http://bit.ly/1rhHHjA
    If that doesn't do the trick, please tell us more about where you are downloading the PDFs files from.
    Best,
    Sara

  • Convert dvd file for web ...

    I have a dvd disk that a friend sent to me that he made of a home video. I would like to get that dvd disk and have to converted or compress so that I can upload it to my site.
    I have done a similar project, but only with raw mpeg-4 files. Not sure how to go about doing this when the footage has already been converted to dvd format.
    any suggestions would be appreciated. I tried to used compressor but it will not recongized the .vob files.

    normally I wouldnt suggest this, but since your going to web and probably scaling it down to 320x240 anywayd it shouldnt matter. Pop your dvd into a dvd player (set top) then plug that into your camera and then plug your camera into your computer. Capture the whole thing and then export that through compressor and it should look pretty good. You could also get some kind of app that pulls the vob files apart and gives the streams that were on it. These probably cost money though. Good luck hope this helps.

  • Power dvd included not running- need mod help ple

    when i first installed my xfi, power dvd installed but didn't seem to do so properly. all i see in start menu under creative labs-soundblaster xfi-
    is 'get powerdvd' with the generic windows icon for an unrecognized app
    when i click this i get:
    "to play dvd, please upgrade your version of powerdvd player from cyberlink. would you like to check for an available upgrade now?"
    when i click yes powerdvd crashes
    i deleted the cyberlink powerdvd from add remove programs and rebooted, then
    found the 'getpowerdvd' under the repair option, so i reinstalled. still having it crash though everytime i answer yes to its prompt to upgrade my version of powerdvd player.
    to clarify- is it a trial version only of powerdvd that's included with the xfi? the xfi box implies it is the full version.
    jason or any other mod- could you please pm me with a link i can use to download the full version or at least a working non trail version of powerdvd, since the current one isn't working? thanks
    i have an xfi xtremegamer, which i just registered, thinking that might be the problem.
    anyone?Message Edited by pepper000 on 05-08-200708:6 PM
    Message Edited by pepper000 on 05-08-200708:32 PM
    Message Edited by pepper000 on 05-08-200708:38 PM
    Message Edited by pepper000 on 05-08-200708:4 PM

    I'm having an almost identical issue. I don't even get THIS far. I just bought an XFI extreme gamer fatality edition and every time I click on the "Get Power DVD" link, I get this...
    <img height="264" style="width: 420px; height: 264px" src="http://www.fileden.com/files/2008/2/22/775483/Error.JPG" title="Error Message" width="420" alt="Error Message">
    Someone HELP!!!

  • Converting DVD Files to DV with Toast and Storage Issues

    Hello all.
    In regard to my previous posting of converting to DV in Toast, I have started this new thread because I can't seem to reply to the other posting. When I originally dragged the Video TS folder from the DVD into the Toast window, it somehow didn't load completely although it seemed as though it did.
    I then decided to import the material via the Media pane and everything then worked fine. These are movies originally filmed in 8 mm silent movie film a long time ago. I had sent some of them away to be transferred directly from film to MiniDv tape which gave me excellent clarity and color. But that was expensive. So I decided to transfer my remaining film which I had transferred to VHS tape when that first technology first came out.

    Hi
    It takes a while.
    How much free space is there on Your boot hard disk ?
    How much free space is there on the hard disk where You store Your streamingDV file ?
    How long duration is Your movie ?
    Yours Bengt W

  • I need more help

    I have to install an new hard my main run of room on it and I transfer everything over to the new hard drive will Itunes will play the list is gone. I have try going to the download page to reinstall it that doesn't work could I please have the link for the the installer and I can itunes be used from the external hard drive I have the library on the external hard drive it just it won't play so I was trying to reinstall it so that maybe I can get it working I got bigger external hard than what is in my computer I only had an 80 GB Internal Hard Drive Now I have 250GB Exteranl Hard Drive now I have still room on both hard drives But I want use itunes from the external on instead of the internal hard drive now that way that itunes is always is on the main hard drive

    You need to install itunes (the actual program) on your C: drive. The program and preference files don't take up that much space.
    Then put the actual music, podcasts, videos, etc on the exHD. Use itunes to do this, not Win Explorer, so itunes will be able to find the files after the move.
    Directions on moving the music to an exHD:
    http://support.apple.com/kb/HT1364

  • How To Convert DVD Files To Nokia N8 Format?

    Which Converter Is To Be Used So That We Can Watch Movies In N8

    You can get Any Video Converter from download.cnet site... It's a reliable site.. Enter all this on google and you should find the direct page for this software.
    Then remember, any good video will be playable with the following details:
    1. size under 1080x720 pixels.
    2. Format MP4, AVI, FLV, 3GP, etc. I recommend only MP4 and AVI. ok?
    3. Size under 2 GB per file,
    ==============================
    My Story: Used 6670, Used N91, Used N8, Using Pureview 808 now. I requested Nokia to get N91's sound quality and features in the latest phones. No response from Nokia!

Maybe you are looking for