HT1473 I recently had to restore my laptop back to factory settings and lost my itunes music. I have imported all my cds again but i have some music on my ipad mini and am having problems importing this back into my itunes file. please help as this is dri

I have recently reset my laptop to factory settings and whilst doing so have lost my music files. I have uploaded my cds but am having trouble moving music from my ipad mini back to music file or itunes.

iTunes sync is one way from iTunes library to an iOS device.
You will need third party software such as TouchCopy to transfer from iOS to your computer.

Similar Messages

  • Having problem saving an iamge into a BMP file, please help!

    I'm writing a class to read an BMP image and output it again into another BMP file.
    After searching on the forum i have found some code for reading and writing bmp files, i put them togather to make up this class, however, the output bmp file is not correct, can anyone look at my code and tell me wots wrong? thanks!
    public class BMP {
    byte bf[]=new byte[14];
    //     private byte bitmapFileHeader [] = new byte [14];
    byte bi[]=new byte[40];
         public Image BMPReader(String filePath){
              Image image = null;
         try{
         FileInputStream fs=new FileInputStream(filePath);
         fs.read(bf,0,14); //Reads the 14byte fileheader      
         fs.read(bi,0,40); //reads the 40byte infoheader
         int nwidth=(((int)bi[7]&0xff)<<24) //pic width
         | (((int)bi[6]&0xff)<<16)
         | (((int)bi[5]&0xff)<<8)
         | (int)bi[4]&0xff;
         int nheight=(((int)bi[11]&0xff)<<24) //pic height
         | (((int)bi[10]&0xff)<<16)
         | (((int)bi[9]&0xff)<<8)
         | (int)bi[8]&0xff;
         int nbitcount=(((int)bi[15]&0xff)<<8) | (int)bi[14]&0xff;
         //pic size
         int nsizeimage=(((int)bi[23]&0xff)<<24)
         | (((int)bi[22]&0xff)<<16)
         | (((int)bi[21]&0xff)<<8)
         | (int)bi[20]&0xff;
         //parse 24bit bmp
         if(nbitcount==24){
         int npad=(nsizeimage/nheight)-nwidth*3;
         int ndata[]=new int[nheight*nwidth];
         byte brgb[]=new byte[(nwidth+npad)*3*nheight];
         fs.read (brgb,0,(nwidth+npad)*3*nheight);
         int nindex=0;
         for(int j=0;j<nheight;j++){
         for(int i=0;i<nwidth;i++){
         ndata [nwidth*(nheight-j-1)+i]=
         (255&0xff)<<24
         | (((int)brgb[nindex+2]&0xff)<<16)
         | (((int)brgb[nindex+1]&0xff)<<8)
         | (int)brgb[nindex]&0xff;
         nindex+=3;
         nindex+=npad;
         Toolkit kit=Toolkit.getDefaultToolkit();
         image=kit.createImage(new MemoryImageSource(nwidth,nheight,
         ndata,0,nwidth));
         else
              JOptionPane.showMessageDialog(null, "The choosen BMP image is not 24bit" +
                        "only 24bit bitmap is supported for BMP image.",
                   "Invalid image", 0);
              image=(Image)null;
         fs.close();
         }catch (Exception e){
         System.out.println(e);
         return image;
    //     --- Private constants
         private final static int BITMAPFILEHEADER_SIZE = 14;
         private final static int BITMAPINFOHEADER_SIZE = 40;
         //--- Private variable declaration
         //--- Bitmap file header
         private byte bitmapFileHeader [] = new byte [14];
         private byte bfType [] = {'B', 'M'};
         private int bfSize = 0;
         private int bfReserved1 = 0;
         private int bfReserved2 = 0;
         private int bfOffBits = BITMAPFILEHEADER_SIZE + BITMAPINFOHEADER_SIZE;
         //--- Bitmap info header
         private byte bitmapInfoHeader [] = new byte [40];
         private int biSize = BITMAPINFOHEADER_SIZE;
         private int biWidth = 0;
         private int biHeight = 0;
         private int biPlanes = 1;
         private int biBitCount = 24;
         private int biCompression = 0;
         private int biSizeImage = 0x030000;
         private int biXPelsPerMeter = 0x0;
         private int biYPelsPerMeter = 0x0;
         private int biClrUsed = 0;
         private int biClrImportant = 0;
         //--- Bitmap raw data
         private int bitmap [];
         //--- File section
         private FileOutputStream fo;
         //--- Default constructor
         public void saveBitmap (String parFilename, Image parImage, int
         parWidth, int parHeight) {
         try {
         fo = new FileOutputStream (parFilename);
         save (parImage, parWidth, parHeight);
         fo.close ();
         catch (Exception saveEx) {
         saveEx.printStackTrace ();
         * The saveMethod is the main method of the process. This method
         * will call the convertImage method to convert the memory image to
         * a byte array; method writeBitmapFileHeader creates and writes
         * the bitmap file header; writeBitmapInfoHeader creates the
         * information header; and writeBitmap writes the image.
         private void save (Image parImage, int parWidth, int parHeight) {
         try {
         convertImage (parImage, parWidth, parHeight);
         writeBitmapFileHeader ();
         writeBitmapInfoHeader ();
         writeBitmap ();
         System.out.println("finished");
         catch (Exception saveEx) {
         saveEx.printStackTrace ();
         * convertImage converts the memory image to the bitmap format (BRG).
         * It also computes some information for the bitmap info header.
         private boolean convertImage (Image parImage, int parWidth, int parHeight) {
         int pad;
         bitmap = new int [parWidth * parHeight];
         PixelGrabber pg = new PixelGrabber (parImage, 0, 0, parWidth, parHeight,
         bitmap, 0, parWidth);
         try {
         pg.grabPixels ();
         catch (InterruptedException e) {
         e.printStackTrace ();
         return (false);
         pad = (4 - ((parWidth * 3) % 4)) * parHeight;
         biSizeImage = ((parWidth * parHeight) * 3) + pad;
         bfSize = biSizeImage + BITMAPFILEHEADER_SIZE +
         BITMAPINFOHEADER_SIZE;
         biWidth = parWidth;
         biHeight = parHeight;
         return (true);
         * writeBitmap converts the image returned from the pixel grabber to
         * the format required. Remember: scan lines are inverted in
         * a bitmap file!
         * Each scan line must be padded to an even 4-byte boundary.
         private void writeBitmap () {
         int size;
         int value;
         int j;
         int i;
         int rowCount;
         int rowIndex;
         int lastRowIndex;
         int pad;
         int padCount;
         byte rgb [] = new byte [3];
         size = (biWidth * biHeight) - 1;
         pad = 4 - ((biWidth * 3) % 4);
         if (pad == 4) // <==== Bug correction
         pad = 0; // <==== Bug correction
         rowCount = 1;
         padCount = 0;
         rowIndex = size - biWidth;
         lastRowIndex = rowIndex;
         try {
         for (j = 0; j < size; j++) {
         value = bitmap [rowIndex];
         rgb [0] = (byte) (value & 0xFF);
         rgb [1] = (byte) ((value >> 8) & 0xFF);
         rgb [2] = (byte) ((value >> 16) & 0xFF);
         fo.write (rgb);
         if (rowCount == biWidth) {
         padCount += pad;
         for (i = 1; i <= pad; i++) {
         fo.write (0x00);
         rowCount = 1;
         rowIndex = lastRowIndex - biWidth;
         lastRowIndex = rowIndex;
         else
         rowCount++;
         rowIndex++;
         //--- Update the size of the file
         bfSize += padCount - pad;
         biSizeImage += padCount - pad;
         catch (Exception wb) {
         wb.printStackTrace ();
         * writeBitmapFileHeader writes the bitmap file header to the file.
         private void writeBitmapFileHeader () {
         try {
         fo.write (bfType);
         fo.write (intToDWord (bfSize));
         fo.write (intToWord (bfReserved1));
         fo.write (intToWord (bfReserved2));
         fo.write (intToDWord (bfOffBits));
         catch (Exception wbfh) {
         wbfh.printStackTrace ();
         * writeBitmapInfoHeader writes the bitmap information header
         * to the file.
         private void writeBitmapInfoHeader () {
         try {
         fo.write (intToDWord (biSize));
         fo.write (intToDWord (biWidth));
         fo.write (intToDWord (biHeight));
         fo.write (intToWord (biPlanes));
         fo.write (intToWord (biBitCount));
         fo.write (intToDWord (biCompression));
         fo.write (intToDWord (biSizeImage));
         fo.write (intToDWord (biXPelsPerMeter));
         fo.write (intToDWord (biYPelsPerMeter));
         fo.write (intToDWord (biClrUsed));
         fo.write (intToDWord (biClrImportant));
         catch (Exception wbih) {
         wbih.printStackTrace ();
         * intToWord converts an int to a word, where the return
         * value is stored in a 2-byte array.
         private byte [] intToWord (int parValue) {
         byte retValue [] = new byte [2];
         retValue [0] = (byte) (parValue & 0x00FF);
         retValue [1] = (byte) ((parValue >> 8) & 0x00FF);
         return (retValue);
         * intToDWord converts an int to a double word, where the return
         * value is stored in a 4-byte array.
         private byte [] intToDWord (int parValue) {
         byte retValue [] = new byte [4];
         retValue [0] = (byte) (parValue & 0x00FF);
         retValue [1] = (byte) ((parValue >> 8) & 0x000000FF);
         retValue [2] = (byte) ((parValue >> 16) & 0x000000FF);
         retValue [3] = (byte) ((parValue >> 24) & 0x000000FF);
         return (retValue);
    }

    You dont have to write a whole program to read and write BMP files, rather I would recommend you to use latest version of JAVA.
    Java version 5 supports reading and writing of BMP images :)
    File file = new File("walkleft.bmp");
    BufferedImage bi = ImageIO.read(file);   // Here u can read bmp images
    ImageIO.write(BufferedImage, "bmp", new File("newimage.bmp"); //Same way you can write themCheers

  • I recently backed up my iphone to itunes, when after backing up a message showed that I needed to update my iphone. I clicked ok, and after updating, it said I had to restore my phone to its factory settings. I cannot find where it backed up pictures

    I recently backed up my iphone to itunes, when after backing up a message showed that I needed to update my iphone. I clicked ok, and after updating, it said I had to restore my phone to its factory settings. I cannot find where it backed up all of my pictures from my phone.

    If you backed up the device, all the data is in the backup. Restore the backup.
    A better question is why would an intelligent person not copy the pictures from the device to the computer regularly, especially before attempting an update, as the device is designed to be used?

  • Hello, i recently had to restore my laptop which means my previous itunes library is gone.  Before i restored my laptop, i saved my old library on an external harddrive.  So i was wondering if the was a way to get my old itunes library in the new library

    how do you put music from ipod thats synced with another library on to a new library without erasing anything.  i recently had to restore m laptop to factory settings and of course my itunes is the same.  i have a lot of music and pictures and it would take days to redownload all of it.

    That is covered here:
    iTunes: Back up your iTunes library by copying to an external hard drive
    What kind of photos are you talking about?
    Ones in the iPod's Camera Roll album are included in the iPod backup that iTunes makes. Photos synced to the iPod or not and they are not in your iTunes library either. You have to back those up separately.
    Also the iPod backup that iTunes makes is not included in your iTunes library. It location is listed here:
    iTunes: About iOS backups. So back that up too.

  • I have just purchased a lightning to 30 pin adaptor to use on an iPad mini and a gen5 iPod touch both devices are running iOS 8.1.3 and come up with The error message "this accessory is not supported by this device "

    I have just purchased a lightning to 30 pin adaptor to use on an iPad mini and a gen5 iPod touch both devices are running iOS 8.1.3 and come up with The error message "this accessory is not supported by this device "
    THis is means they are not charging on a 30 pin cable and the touch won't work in my Apple iPod dock - no audio out or charge. Have re powered both devices to no avail am wondering if the iOS version is the problem
    Help!

    If it is a lightning to 30 pin adaptor, and you have a 7th Generation Nano it has to fit the Nano.
    This is lightning to 30 pin adapter: http://www.bestbuy.com/site/Apple%26%23174%3B---Lightning-to-30-Pin-Adapter/6651 936.p?id=1218803450821&skuId=6651936#tab=overview
    Is this what you bought?
    You need to contact Sony and see if they model you have is compatible with the docking adapter. It may not be.

  • I am trying to restore an ipod to the factory settings. However I get a message that my username or password is incorrect. I am using my correct Apple id and password.  What is the problem, please?

    I am trying to restore an ipod to the factory settings. However I get a message that my username or password is incorrect. I am using my correct Apple id and password.  What is the problem, please?

    Was that Apple ID and password the original owner of the iPod?  If not, try using the Apple ID and password of the original owner.

  • I had to restore my computer to the factory settings, which means my itunes library was lost except for what was on my ipod nano.  How do pull the songs from my ipod back onto my computer?

    I had to restore my computer to the factory settings, which means my itunes library was lost except for what was on my ipod nano.  How do pull the songs from my ipod back onto my computer?  I have over 200 songs.  There is no way I can re-purchase them!  Any help?

    How to use your iPod to move your music to a new computer 

  • HT204150 i have deleted all contacts in icloud but still have them on my iphone (which is backed up as well to iTunes) how can i restore the iphone data to the iCloud so it will resend it to my mac book and iPad?

    i have deleted all contacts in icloud but still have them on my iphone (which is backed up as well to iTunes) how can i restore the iphone data to the iCloud so it will resend it to my mac book and iPad? I have switched my iphone to airplane mode so it is not connected to the internet and so icloud can not wipe it at the moment.
    thanks roy

    There's a menu choice (I think under "Files") that lets you sync purchased items on a device back to itunes.  Look for that.
    iCloud does not store music.  If you want to do that you'd have to subscribe to itunes Match, but to get music to the match servers, you need the music in the itunes library on your computer.

  • I am having problems updating my iPhoto on my MacBook Air, please help?

    I started to update iPhoto on my MacBook Air, but I had bad wifi at home so I paused it. But now that I have good and fast wifi, I press Resume and it asks for my apple ID, so I put it, but then it says that the connection failed, can someone please help!

    Back up all data.
    Quit the App Store application if it's running. Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Triple-click anywhere in the line below to select it, then drag or copy it — do not type — into the Terminal window:
    open $TMPDIR../C
    Press return. A folder should open. From that folder, delete the subfolder named "com.apple.appstore".
    Launch the App Store and try again.

  • TS3899 How do I fix my email account on my iphone 5? I have been having problems with my hotmail on my phone. Please help.

    At first I deleted my account as suggested by the support article and instaled my hotmail account again.
    Now I don't have access to my email anymore.
    Please help.

    No, hotmail is having problems:
    http://bostinno.streetwise.co/2013/08/15/hotmail-outage-hotmail-is-down-for-user s-still-photos/
    http://www.engadget.com/2013/08/14/outlook-outage/
    http://www.infoworld.com/d/applications/microsofts-skydrive-outlookcom-are-down- some-users-224940
    http://mashable.com/2013/08/14/outlook-down/
    http://techcrunch.com/2013/08/14/microsoft-acknowledges-outlook-com-messenger-sk ydrive-outages/

  • HT4106 I got the USB camera adapter but when I connect it with my ipad mini and my Samsung camera pl120 it appears on my ipad that is too much power.....I don't know what to do????

    I got the USB camera adapter for the ipad mini but when I connect it with my Samsung camera pl120, it appears that's too much power on my ipad mini..,,,so I don't know what to do??????

    If you have the card reader part of the camera kit and your camera uses SD cards, try doing it that way. It is the least troublesome way.
    BUt if that doesn't work, then it may be a setting on your camera. Your camera may be trying to pull power from the iPad for you to download, and the iPad won't put out that much, triggering the error. If you have a power supply for your camera you can try using that. If not, maybe something in here can help you
    http://support.apple.com/kb/HT4101
    you might also check on Samsung's site. See if they have any advice specific to iPads that can help.

  • I am having problems exporting Firefox bookmarks to Google Chrome. Please help. (Firefox is using too much of the memory.)

    problems importing bookmarks from Firefox to Chrome.
    Help.

    Bookmarks > Show All Bookmarks -> Import & Backup - Export HTML...
    Then import that file into Chrome.

  • As I was installing the Windows 7 on my Imac and stated how I wanted to divide the drive I put 160, but I want to add more space how can I can the drive space to from 160 to 250? please help thank you.

    As I was installing the Windows 7 on my Imacwith the bootcamp  and stated how I wanted to divide the drive I put 160,  but I want to add more space because of the adobe software it will not install two of them, so how can I add more on the drive space to from 160 to 250? please help thank you.

    I'm not sure this is what you're looking for, but it might help:
    "If you made the Windows partition too small
    First, back up all the information on your Windows partition. Then run Boot Camp
    Assistant to restore your disk to a single volume. Restart your computer and use Boot
    Camp Assistant to partition the disk again and reinstall Windows. Don’t forget to install
    the Boot Camp drivers after installing Windows."
    (from Bootcamp Assistant Manual see pg 22)

  • No audio or sound from my ipad mini after update or any apps used? What should i do please help?

    my problem is i can't hear the sounds from my ipad especially when i am playing a music or video from youtube or any game up. This happen after an update? I thought it was just an auto silent mode but unfortunately the volume limit is on full and there is no head phones attached. Please help me enable the sounds of my ipad.

    Is it all browsers that you are having problems with, or is just Safari (and I assume that your last post means that other apps are ok) ?
    If only Safari then try clearing its cache : Settings > Safari > Clear History And Website Data (Clear Cookies And Data on iOS 5, 6, 7 and also Clear History)
    Close Safari via the iPad's taskbar (I'm assuming that your iPad is on iOS 7+) : double-click the home button to open the taskbar and then swipe or drag the Safari app's 'screen' up and off the top of the screen to close it, and click the home button to close the taskbar.
    And do a soft-reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.
    And then retry playing the videos.

  • I plugged in my ipod to my mac and it said that it wasnt reading my ipod so I had to restore my iPod to its factory settings which I did and now my iPod is basically locked. I plug it in to my mac and it does not open my iTunes. How can I fix this problem

    Restoration gone wrong!

    Try replacing the iPod in recovery mode and they restore again via iTunes on your computer. For recovery mode see:
    iPhone and iPod touch: Unable to update or restore

Maybe you are looking for