Problem importing some jpeg images

**** all
For some reason I cant import selected jpeg images, about 75% of them are grayed out for some reason, the images are jpegs I have collected on line and are the only images I seem to have a problem with.
Any idea way ?
Thanks

yes I have the actual image, I found the problem .
they where all grayed out cause of the image size, I downloaded desktop images.
I'm glad I worked it out cause I'm using these images as backgrounds and, have 487 of them. I ran them through easybatchphoto and resized the width on all of them to 800. now they all work fine.

Similar Messages

  • How to import a jpeg image into premier elements 12?

    how do  i import a jpeg image into premier elements 12?

    chuckx
    Just for background information, what computer operating system is your Premiere Elements 12 running on?
    The generalized answer is Add Media/Files and Folders/Projects Assets from where you drag the photo to the Expert view Timeline.
    But all that can generate a mountain of questions about the photo and the project into which it will be going
    a. what are the pixel dimensions of the photo - will or will I not have to resize or crop/resize the photo for the project
    b. is the photo going into a project that will consist of photos and videos
    c. if video inclusion, that leads to questions about the properties of the video so that you can set the project preset to match those
    d. that leads to questions on the best size to have your photo before you import them into this project.
    So, one simple question generates a lot of side questions.
    Please let us know how we might help to sort out the details for your Premiere Elements workflow and its source media.
    Thank you.
    ATr

  • I am having problems importing some CDs into iTunes on a laptop with Windows 8. Most CDs import without problem. The ones I can't import can be imported into iTunes with Windows 7. Does anybody know why this problem is occurring?

    I am having problems importing some CDs into iTunes on a laptop with Windows 8. Most CDs import without problem. The ones I can't import can be imported into iTunes with Windows 7. Does anybody know why this problem is occurring?

    First-off, this seems to be a general problem with 10.4 (across all the operating systems of which I am aware).  Unfortunately, I cannot provide a permanent solution but, if you need a quick fix, this will (hopefully) work for you.
    For some inexplicable reason, iTunes no longer recognises standard Windows paths.  For example:
    Y:\Music\Buddy Holly\Buddy Holly - Rave On.mp3
    The end result is that it will import a playlist with no content. 
    It will, however, recognise the equivalent Apple paths which look like this:
    file://localhost/Y:/Buddy Holly/Buddy Holly - Rave On.mp3
    It is possible to convert your existing playlists using a few basic replace commands in something like Notepad.  In my case, I made some code changes in my music manager and now generate two sets of playslists (one standard and one to accommodate iTunes).
    Forgive me foir stating the obvious but please remember to make sure that the disk / path containing your music is accessible when doing the import otherwise you will probably get a blank result.  Note that you can do a bulk import by selecting all the (revised) playlists and dragging them onto the iTunes sidebar.
    I am sorry that this is not a "clean" solution but it will work if you are in a bind.  The only alternative of which I am aware is to wait for Apple to fix the problem.

  • Problem displaying CMYK jpeg images

    I have a problem with a CMYK jpeg image.
    I know that about supported JPEGs in JRE - JCS_CMYK and JCS_YCCK are not supported directly.
    And I found here how to load the image:
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4799903
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=5100094
    I used both the suggestions described to load it, but when the image is displayed the colors are wrong, are very different from the one displayed in PhotoShop, for example.
    Any suggestion are very appreciated. If it's necessary i can send you the image.
    Roberto
    Here is the code
    package com.cesarer.example.crop;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    import java.io.*;
    import java.util.Iterator;
    import javax.imageio.ImageIO;
    import javax.imageio.ImageReader;
    import javax.imageio.stream.ImageInputStream;
    import javax.swing.*;
    import javax.swing.event.MouseInputAdapter;
    public class CroppingRaster extends JPanel
        BufferedImage image;
        Dimension size;
        Rectangle clip;
        boolean showClip;
        public CroppingRaster(BufferedImage image)
            this.image = image;
            size = new Dimension(image.getWidth(), image.getHeight());
            showClip = false;
        protected void paintComponent(Graphics g)
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            int x = (getWidth() - size.width)/2;
            int y = (getHeight() - size.height)/2;
            g2.drawImage(image, x, y, this);
            if(showClip)
                if(clip == null)
                    createClip();
                g2.setPaint(Color.red);
                g2.draw(clip);
        public void setClip(int x, int y)
            // keep clip within raster
            int x0 = (getWidth() - size.width)/2;
            int y0 = (getHeight() - size.height)/2;
            if(x < x0 || x + clip.width  > x0 + size.width ||
               y < y0 || y + clip.height > y0 + size.height)
                return;
            clip.setLocation(x, y);
            repaint();
        public Dimension getPreferredSize()
            return size;
        private void createClip()
            clip = new Rectangle(140, 140);
            clip.x = (getWidth() - clip.width)/2;
            clip.y = (getHeight() - clip.height)/2;
        private void clipImage()
            BufferedImage clipped = null;
            try
                int w = clip.width;
                int h = clip.height;
                int x0 = (getWidth()  - size.width)/2;
                int y0 = (getHeight() - size.height)/2;
                int x = clip.x - x0;
                int y = clip.y - y0;
                clipped = image.getSubimage(x, y, w, h);
            catch(RasterFormatException rfe)
                System.out.println("raster format error: " + rfe.getMessage());
                return;
            JLabel label = new JLabel(new ImageIcon(clipped));
            JOptionPane.showMessageDialog(this, label, "clipped image",
                                          JOptionPane.PLAIN_MESSAGE);
        private JPanel getUIPanel()
            final JCheckBox clipBox = new JCheckBox("show clip", showClip);
            clipBox.addActionListener(new ActionListener()
                public void actionPerformed(ActionEvent e)
                    showClip = clipBox.isSelected();
                    repaint();
            JButton clip = new JButton("clip image");
            clip.addActionListener(new ActionListener()
                public void actionPerformed(ActionEvent e)
                    clipImage();
            JPanel panel = new JPanel();
            panel.add(clipBox);
            panel.add(clip);
            return panel;
        public static void main(String[] args) throws IOException
             File file = new File("src/ABWRACK_4C.jpg");
             // Find a JPEG reader which supports reading Rasters.
            Iterator readers = ImageIO.getImageReadersByFormatName("JPEG");
            ImageReader reader = null;
            while(readers.hasNext()) {
                reader = (ImageReader)readers.next();
                if(reader.canReadRaster()) {
                    break;
         // Set the input.
            ImageInputStream input =
                ImageIO.createImageInputStream(file);
            reader.setInput(input);
            Raster raster = reader.readRaster(0, null);
             BufferedImage bi = new BufferedImage(raster.getWidth(),
                    raster.getHeight(),
                    BufferedImage.TYPE_4BYTE_ABGR);
             // Set the image data.
             bi.getRaster().setRect(raster);
            // Cropping test = new Cropping(ImageIO.read(file));
             CroppingRaster test = new CroppingRaster(bi);
            ClipMoverRaster mover = new ClipMoverRaster(test);
            test.addMouseListener(mover);
            test.addMouseMotionListener(mover);
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(new JScrollPane(test));
            f.getContentPane().add(test.getUIPanel(), "South");
            f.setSize(400,400);
            f.setLocation(200,200);
            f.setVisible(true);
    class ClipMoverRaster extends MouseInputAdapter
        CroppingRaster cropping;
        Point offset;
        boolean dragging;
        public ClipMoverRaster(CroppingRaster c)
            cropping = c;
            offset = new Point();
            dragging = false;
        public void mousePressed(MouseEvent e)
            Point p = e.getPoint();
            if(cropping.clip.contains(p))
                offset.x = p.x - cropping.clip.x;
                offset.y = p.y - cropping.clip.y;
                dragging = true;
        public void mouseReleased(MouseEvent e)
            dragging = false;
        public void mouseDragged(MouseEvent e)
            if(dragging)
                int x = e.getX() - offset.x;
                int y = e.getY() - offset.y;
                cropping.setClip(x, y);
    }

    The loading process It takes about 10 seconds, and every repaint it takes the same time.The painting yes, the loading no. It shouldn't take much more time to load the image then an ordinary JPEG. In particular, your now using a "natively accelerated" JPEG image reader, so it should take less time on average to load any JPEG. 10 seconds is absurd. Are you sure your not including the drawing time in that figure?
    - Another problem: JAI-ImageIO is not available for MAC OS X platform.This is somewhat true. You can take the imageio.jar file and package it together with your program (adding it to the class path). This will give you most of the functionality of JAI-ImageIO; in particular the TIFFImageReader. You just won't be able to use the two natively accelerated ImageReaders that comes with installing.
    Right now, you're using the accelerated CLibJPEGImageReader to read the image. You can't use this image reader on the MAC, so you have to take the approach mentioned in the 2nd bug report you originally posted (i.e. use an arbitrary CMYK profile).
    The conversion is too long more than 30 seconds.The code you posted could be simplified to
    BufferedImage rgbImage = new BufferedImage(w,h,
                BufferedImage.3_BYTE_BGR);
    ColorConvertOp op = new ColorConvertOp(null);
    op.filter(cmykImage,rgbImage);But again, 30 seconds is an absurd value. After a little preparation, converting from one ICC_Profile to another is essentially a look up operation. What does,
    System.out.println(cmykImage.getColorModel().getColorSpace());print out? If it's not an instance of ICC_ColorSpace, then I can understand the 30 seconds. If it is, then something is dreadfully wrong.
    the RGB bufferedImage that i get after the transformation when it is displayed is much more brightThis is the "one last problem that pops up" that I hinted at. It's because some gamma correction is going on in the background. I have a solution, but it's programming to the implementation of the ColorConvertOp class and not the API. So I'm not sure about its portability between java versions or OS's.
    import javax.swing.*;
    import java.awt.color.ICC_ColorSpace;
    import java.awt.color.ICC_Profile;
    import java.awt.image.BufferedImage;
    import java.awt.image.ColorConvertOp;
    import javax.imageio.ImageIO;
    import java.io.File;
    public class CMYKTest {
         public static void main(String[] args) throws Exception{
            long beginStamp, endStamp;
            //load image
            beginStamp = System.currentTimeMillis();
            BufferedImage img = ImageIO.read(/*cmyk image file*/);
            endStamp = System.currentTimeMillis();
            System.out.println("Time to load image: " + (endStamp-beginStamp));
            //color convert
            BufferedImage dest = new BufferedImage(img.getWidth(),
                                                   img.getHeight(),
                                                   BufferedImage.TYPE_3BYTE_BGR);
            beginStamp = System.currentTimeMillis();
            sophisticatedColorConvert(img,dest);
            endStamp = System.currentTimeMillis();
            System.out.println("Time to color convert: " + (endStamp-beginStamp));
            //display
            JFrame frame = new JFrame();
            frame.setContentPane(new JScrollPane(new JLabel(new ImageIcon(dest))));
            frame.setSize(500,500);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setVisible(true);
        public static BufferedImage sophisticatedColorConvert(BufferedImage src,
                                                              BufferedImage dst) {
            ICC_ColorSpace srcCS =
                    (ICC_ColorSpace) src.getColorModel().getColorSpace();
            ICC_Profile srcProf = srcCS.getProfile();
            byte[] header = srcProf.getData(ICC_Profile.icSigHead);
            intToBigEndian(ICC_Profile.icSigInputClass,header,12);
            srcProf.setData(ICC_Profile.icSigHead,header);
            ColorConvertOp op = new ColorConvertOp(null);
            return op.filter(src, dst);
        private static void intToBigEndian(int value, byte[] array, int index) {
                array[index]   = (byte) (value >> 24);
                array[index+1] = (byte) (value >> 16);
                array[index+2] = (byte) (value >>  8);
                array[index+3] = (byte) (value);
    }

  • Iphoto will not import some jpeg files after many attempts to 'fix"

    I have scande images into my iphoto until i updated to iphoto 9. now it does not import jpeg for some reason. some jpegs are more equal than other how ever some go in some do not. So what is wrong with iphoto 9 and do i need to reset some profile something somewhere.
    mac book pro 17 standard edition no mods 2.6 intel core 2 duo 4 gigs memory 1067 mhz ddr3
    files are saved to desk top folder as a jpeg in either color or black and white using the system Image Capture software.
    1) the error is -20
    2) i tried importing some old files in and out they seem to work
    3) shut down restarted and tried again no joy with the scanned images
    4) all images are openable by preview and can be changed to tiff
    5) iphoto allows tiff in but not the jpeg or any kind
    6) upgraded to iphoto 9 and this started is there a profile file i should through away and what is the implications of doing this ? i have many thousands of photos i do not want to lose.
    i need to use jpeg format for my family and work.
    any suggestoins.
    7) rand disk permission repair from install disk no problems
    8) should i start in safte mode and do a PR reset.

    1 - iPhoto does not accept grayscale images - they must be RGB even if the photo is B&W
    2 - sometimes opening a photo in preview and doing a save as and then importing the new JPEG will resolve this type of problem
    LN

  • Problem: importing a transparent image from Photoshop to Premiere.

    Dear Adobe community,
    I am trying to import a transparent image from Photoshop to Premiere Pro CC. Whatever file format I choose to export from Photoshop, Premiere Pro CC will not import the file correctly. When I import is, two things occur: 1) the image gets imported, but the white background is still there or 2) the image gets an error "The importer reported a generic error".
    Does anyone have an idea how I can get an image with a white background transparent into Premiere Pro CC.
    Specs:
    MacBook Pro (Retina, 13-inch, eind 2013)
    2.8 GHz Intel Core i7
    16GB RAM
    1536MB Intel Iris videocard
    Thanks!
    Christiaan

    You need to make sure the image has an alpha channel.
    Images like jpeg dont have an alpha channel.
    Psd or png do and the image has to be RGB.
    Make sure the background in PS is also transparant.

  • Problems importing Photoshop edited images...

    Hi to all of you smart people. Let me know if there is already a thread on this topic...
    So here's my question. I am having problems importing images I converted to grayscale in photoshop into iPhoto. They show in iPhoto as if they are negatives. Thanks!

    Hi Rebecca, Yes that is a known problem and there are numerous threads on the subject. Do a search for "greyscale" or "grayscale" (how do you spell grey anyways?)

  • Color problem on some jpg images

    Suddenly it happens that some jpg images look almost black (very high level of contrast). I use a Samsung SyncMaster 245B monitor and I had never this effect before. I uninstalled Photoshop Elements and reinstalled, but the problem remains.
    Other jpg pictures look normal, but I am unable to understand any difference in the original files.
    The same bad pictures look fine if I open them with PaintShop Pro, this could bring me to consider a bad setup of Photoshop Elements ... but which one ?
    Can you help me in finding a solution ?
    Thanks

    I agree with your comment. But what I don't understand is:
    1) The monitor was calibrated and no changes done. The problem don't was present days ago.
    2) Why only some jpg show this problem, while others generally are shown OK. I may add only that the bad ones are larger in pixels.
    Thanks for your answer.

  • Iphoto unable to import some jpeg files... why???

    Am trying to import some photos from a friend. They are jpeg format on a CD which was created at the photo developing lab when he got his films developed. Have tried importing them one at a time, all at once, by copying, by "adding", by dragging... I'm out of ideas. I keep getting a message that says the files are either "unrecognized file type" or "may not contain valid data." However, I can open them in Preview, in photo editing software, etc. Any ideas?

    Hi red-doc,
    I am not sure why you can't import them. Why don't you open them all in Preview and then save them. Make sure the extension is added to the file name when saved. Next try importing them.

  • Problems importing some flv files

    I'm using Premiere CS4.  I am able to import some flash .flv video files without difficulty, but in many cases a file will not import successfully.  Instead, I get the following error message:
    The file appears to have no media data.
    Which is odd, since such files play without any problem in, say, Real Player.
    I'll be grateful for any help with this.

    You might also want to give Moyea's FLV Importer a try. Their site was down when I tried, but I was just on it a few days ago. Give them time to get their server back up. Now, if the FLV is corrupt (though it seems to play fine), there might be issues. Also, there is a great deal of difference between playing an AV file, and editing that same file.
    For conversions, I've had success with FLV to AVI.
    Good luck,
    Hunt

  • How do I import a jpeg image into my mail signature so that it wont separate when it gets to the receiving email

    How do I import a jpg image into my mail signature box so that it wont separate into an attachment when it gets to the receiving mail box.  We have a company logo and when I send it to someone it does not show up under our address but rather as an attachment.  How do I keep this from happening?

    Hello
    be sure to send your email into HTML format end be sure your corespondant read mail as HTML format
    as you can not be sure of your coresspondant email setting , you can not be sure as your mail is read
    Pierre

  • Problem while encoding JPEG image from JFrame paintComponent in a servlet

    Hello!
    I m developing webapplication in which I made one servlet that calls JFrame developed by me, and then encoding into JPEG image to send response on client browser. I m working on NetBeans 5.5 and the same code runs well. But my hosting server is Linux and I m getting the following error:
    java.awt.HeadlessException:
    No X11 DISPLAY variable was set, but this program performed an operation which requires it.
         java.awt.GraphicsEnvironment.checkHeadless(GraphicsEnvironment.java:159)
         java.awt.Window.<init>(Window.java:406)
         java.awt.Frame.<init>(Frame.java:402)
         java.awt.Frame.<init>(Frame.java:367)
         javax.swing.JFrame.<init>(JFrame.java:163)
         pinkConfigBeans.pinkInfo.pinkModel.pinkChartsLib.PinkChartFrame.<init>(PinkChartFrame.java:36)
         pinkConfigBeans.pinkController.showLastDayRevenueChart.processRequest(showLastDayRevenueChart.java:77)
         pinkConfigBeans.pinkController.showLastDayRevenueChart.doGet(showLastDayRevenueChart.java:107)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.25 logs.
    I m building the application in NetBeans and when runs then it runs well, even while browsing from LAN. But when I place the web folder creted under buil directory of NetBeans in the Tomcat on Linux, then it gives above error.
    Under given is the servlet code raising exception
    response.setContentType("image/jpeg"); // Assign correct content-type
    ServletOutputStream out = response.getOutputStream();
    /* TODO GUI output on JFrame */
    PinkChartFrame pinkChartFrame;
    pinkChartFrame = new PinkChartFrame(ssnGUIAttrInfo.getXjFrame(), ssnGUIAttrInfo.getYjFrame(), headingText, xCordText, yCordText, totalRevenueDataList);
    pinkChartFrame.setTitle("[::]AMS MIS[::] Monthly Revenue Chart");
    pinkChartFrame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
    //pinkChartFrame.setVisible(true);
    //pinkChartFrame.plotDataGUI();
    int width = 760;
    int height = 460;
    try {
    BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
    Graphics2D g2 = image.createGraphics();
    pinkChartFrame.pinkChartJPanel.paintComponent(g2);
    JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
    encoder.encode(image);
    } catch (ImageFormatException ex) {
    ex.printStackTrace();
    response.sendRedirect("index.jsp");
    } catch (IOException ex) {
    ex.printStackTrace();
    response.sendRedirect("index.jsp");
    out.flush();
    Do resolve anybody!
    Edited by: pinkVag on Oct 15, 2007 10:19 PM

    >
    I m developing webapplication in which I made one servlet that calls JFrame developed by me, and then encoding into JPEG image to send response on client browser. I m working on NetBeans 5.5 and the same code runs well. But my hosting server is Linux and I m getting the following error:
    java.awt.HeadlessException: >That makes sense. It is saying that you cannot open a JFrame in an environment (the server) that does not support GUIs!
    To make this so it will work on the server, it will need to be recoded so that it uses the command line only - no GUI.
    What is it exactly that PinkChartFrame is generated an image of? What does it do? (OK probably 'generate a chart') But what APIs does it use (JFreeChart or such)?

  • Problems with LR 2.6 importing some jpegs

    I imported my iPhoto originals to the Lightroom library, but some of them where flagged by LR as unreadable, and I can not figure out why.
    They open fine in Photo Shop, and other programs.
    I'm running LR 2.6 on a Mac, operationg system 10.6.2

    Same here, in LR 2.6.1 on Win7.  Is the attached file the original JPG that you are having a problem with or some Save As version of it.  The size of 1984x1345 doesn't seem like a native camera size.
    Try opening in CS4 w/JPG-in-Camera-RAW enabled and see if ACR has a problem, too, on a Mac.  That would indicate a bug in the Adobe RAW engine on a Mac.
    Also try copying the file to a new version of itself with and see if that second copy opens ok.

  • Problem of displaying JPEG images

    I just got my new Power Mac G5 computer. I am Also new to the MAC world. I put in a CD, which is filled with all JPEG files, into my DVD drive. From the desktop, I double click the CD icon; no problem, I saw all the JPEG files. I then tried to view the images by double clicking them; however, some of them were display successfully thru Preview and some were not. For the images, which had trouble to be displayed, had error message saying the files were not recognizable or data were corrupted.
    I also tried to drag the file from CD folder to iPhoto icon, I got the same error message (not recognizable or data corrupted).
    I had no trouble in viewing all these images from Windows 2000. I have no idea what's wrong.
    Please help, thanks!
    Howard
    Power Mac G5   Mac OS X (10.4.2)  

    Hi Howard,
    Drag all the images to the desktop first. Now open iPhoto and drag the images into an open iPhoto viewing window (library view)
    If you put the images in folders to organize them, then each folder dragged into an open iPhoto window will be imported as a roll with the folders name.
    Lori

  • Problem importing a scanned image

    I am a new user to Elements 11 (previously having used Paint Shop Pro).  In many of the previous Elements and their tutorials says there is a Get Photos/Image not on Elements??  So I go File -> Import -> WIA Support.  This leads me to my HP printer/scanner (that is plugged in and works fine in Paintshop Pro OCR etc...).  Then I scan the photograph or image on the Flatbed.  It appears on Elements 11 ok.  BUT I cannot work on it??  Things like Layers just won't work.  You cannot rename the layer of this background.  Just about all the Menu options are greyed out??  In some other applications you have to let the application know that you have finished with the scanner.  I can't find anything like this.  I saved the image say as PNG/JPEG whatever and then opened the saved image still can't work on it?? I scanned to a file and then tried to work on that scanned and saved image.  Still can't manipulate the image.  It appears locked down or out??  Can anyone help me as a new user to Photoshop Elements (never used it before).  Have gone straight to Elements 11.  Many thanks

    Hi
    This didn’t work but the image was a printed page IE black and white.  If I go Image -> Greyscale then everything swings back into life.  If I scanned a colour image via the Scanner I might need to use the 8/16 bit image.  My problem at the moment is finding everything and how they work on Elements 11.  I have looked at the video tutorials but they are not all on Elements 11 many are older versions.  Is there a good User Guide to purchase written by any indepentant authors publishers?
    But thanks for your prompt and helpful reply.
    Regards
    Graham

Maybe you are looking for

  • How to put in code

    Im trying to put in a marqueee and i cant figure it out. I have the codes in hand i just cant figure out how to put code in . It says someting like i have to go to blog. Im now lost , can you help me. Thanks. Jackie O

  • Texts displayed wrong in explorer. is it a iweb problem?

    Hello, I have some problems with pages being viewed in windows, the text appears at random positions, defaced: text created in iweb is displayed in different positions when opening the page in explorer in different situations: font: verdana 10 to 15

  • How call a method from another class

    i make three class.class A,class B and class C. class A have One button. Class B have a action listener of that button. class c have a metod like public void test(){     } how can i call a method in class b from class c; is it necessary to pass the c

  • Why MacBookPro/Motorola pair but won't accept file?

    I pair fine with my Motorola razr phone, isync syncs contacts etc. fine, but when I try and send a file, phone alerts "Incoming Transfer", then asks if I wish to accept the transfer, and as soon as I press "accept" it flashes "Failed: connection inte

  • My ipod only works when its being charged!

    my ipod only works when its charged. when i unplug it the screen slowly fades out and i can no longer turn it on. and when i connect it to the computer it doesnt even connect! can someone please help me???!!!! ipod video   Windows XP