Someone plz help!!!!!  I have no idea what i am doing when using my ipod

ok, i have just purchased my iPod video and Quicktime Pro. I have downloaded some videos from lime wire pro, and i have them all in my video file. When i export the videos through quicktime pro, it leaves an icon of the video on my desktop. But when i try to play the video again, using quicktime, it wont play it. I have a couple of trailers and the sample video from the quicktime website on my video ipod and they all work, but i cant get any other videos to play before or after i have them on my ipod.
Can someone plz help me out, i am starting to get anoyed!!!

you may want to start by going thru the tutorials for both the ipod and itunes:
http://www.apple.com/support/ipod/tutorial/
http://www.apple.com/support/itunes/tutorial/index.html

Similar Messages

  • I've tried to d/l itunes 3 times and every time I get this message: .....Downloads\iTunesSetup.exe.part could not be saved, because the source file could not be read.  I have no idea what I'm doing. Does anyone have any ideas to help? Cheers.

    I've tried to d/l itunes 3 times and every time I get this message: .....Downloads\iTunesSetup.exe.part could not be saved, because the source file could not be read.  I have no idea what I'm doing. Does anyone have any ideas to help? Cheers.

    I've tried to d/l itunes 3 times and every time I get this message: .....Downloads\iTunesSetup.exe.part could not be saved, because the source file could not be read.  I have no idea what I'm doing. Does anyone have any ideas to help? Cheers.

  • Help, i am trying to print my JPEG file that i created in photoshop at a photo lab but it is coming out like an X-ray. I have printed these files before so i have no idea what i am doing wrong.

    Help, i am trying to print my JPEG file that i created in photoshop at a photo lab but it is coming out like an X-ray. I have printed these files before so i have no idea what i am doing wrong.
    Could it be something i have done in my settings?
    or when i am saving the file to JPEG?

    Basically you're approaching this the wrong way around. What you need is the extreme sections to be quieter, not louder. The problem with moving the lower end of the audio is that you'll move the noise floor too, and get what's generally referred to as a 'pumping' effect. So what you do is to use a compressor to tame the peaks, and leave the lower level sound alone. When you've done that, you amplify (or normalize to a level you can determine) the whole signal. So the noise floor will be higher, but constant and not pumping. 'Match Volume' is a completely different tool for setting the overall levels of different tracks so that they sound approximately the same - it doesn't even begin to do what you want.
    If it's music you are treating, then I'd almost certainly use the multiband compressor, because you get less artefacts with this. You need to experiment with the threshold levels, and almost certainly not use a massive compression ratio - 3:1 or 4:1 should be sufficient (although it's hard to tell without actually hearing the audio). You can tell what it's doing at any given point because the downward meter indicates how hard it's working. In theory you can apply make-up gain with it as well, but personally I leave that until everything's treated and use the 'Normalize' tool to set an absolute max level.

  • OK! I am unable to type into any pages documents ... just started doing this. Tried opening new page ... no luck ... thries to edit a current paper... no luck!!! Help, anyone have an idea what I have done?

    OK! I am unable to type into any pages documents ... just started doing this. Tried opening new page ... no luck ... thries to edit a current paper... no luck!!! Help, anyone have an idea what I have done?

    Try a new post in the Pages forum. They would know better then us.
    DALE

  • HT5706 Help!!  First of all I am a senior and have no idea what I am doing.  Turned on the Apple TV and it said downloading the latest update.  It show the apple symbol and below a empty download line.  Nothing seems to be happening.  Is it downloading?

    Help!!  First of all I am a senior and have no idea what I am doing.  Turned on the Apple tv and it said downloading the lastest -cannot remember the rest.
    There was a Apple symbol and a dowmload space under it.  Nothing is happening.  It has been about 25 minutes.  What do I do??

    It probably did not turn itself off. It most likely went into "sleep".
    Did you try to restart the Apple TV? That is what solved the problem for me.
    Go to the main AppleTV menu - you might have to press the Menu button a couple of times to get there - select Settings, then Select General, scroll down to Restart and select that.
    As long as you don't have a "Do not unplug" message on your screen, unplugging the power cable, waiting a minute, then plugging it back in should accomplish the same thing. I always prefer using the menu method over unplugging.
    If that doesn't work, I fear you might have to contact Apple. They will likely tell you to restore your AppleTV to factory settings. That will be a pain in the neck since they will need to walk you through it. They might do that for you at an Apple store. I'm a senior citizen too, and it's easy for me to look helpless - even though I've worked in computers and networking for a very long time.
    Sorry I can't offer any better advice.

  • Have no idea what to do for program using methods.

    I have a program I am working on and I really don't know what I am doing. The assignment is to input a character and an integer. The output is a hollow square of a size given by the integer and made up of the character. At least four methods are required.
    The methods needed are:
    public static void giveInstructions() - does the program instructions
    public static void drawSquare(int size, char ch) - draw the square of size by size using character ch
    public static void drawSolidLine(int size, char ch) - draw one solid line (either top or bottom) of the square of size by size using character ch
    public static void drawHollowLine(int size, char ch) - draw one hollow line of the square of size by size using character chThus the drawSquare method will itself in turn call the methods drawSolidLine and drawHollowLine.
    Here is what I have so far.....am I even on the right track?!?
    import java.util.Scanner; //For scanner class
    public class Methods
    {public static void giveInstructions()
    //instructions
    {System.out.println("Enter a character and an integer. A hollow square of size n times n made up of the character" +
    " will be constructed.");
    System.out.println(" Enter the size: ");
    //scanner
    Scanner kbd = new Scanner (System.in);
    int size= new Scanner (System.in);
    System.out.println("Enter the Character: ");
    Scanner kbd = new Scanner (System.in);
    final char ch = new Scanner (System.in);
    //input
    {public static void drawSquare(int size, char ch)
    for (int i = 1; i<=size; i++)
    for (int j=1; j<size; j++)
    {public static void drawHollowLine(int size, char ch)
    }Any kind of help would be greatly appreciated!!

    Neaten up what you have and fill out the methods, then test, pull hair out and repeat :)
    if you are stuck using those static declarations.................
    I'd add at least one more method:
    public static void giveInstructions() - does the program instructions
    public static void getInputValues() - get and Check the input values
    public static void drawSquare(int size, char ch) - draw the square of size by size using character ch
    public static void drawSolidLine(int size, char ch) - draw one solid line (either top or bottom) of the square of size by size using character ch
    public static void drawHollowLine(int size, char ch) - draw one hollow line of the square of size by size using character chthus making giveInstructions() less of a mess.
    so then all you need to do is maintain your references to
    the 'size' and the Character. probably make ch and size class variables / members
    drawSquare need to call the other two draw methods.
    I assume that for example input ch = "-" size = 4
    the solid line must produce:
    ---- ie 4 "-"'s
    the hollow line must produce
    - - ie "-" 2 Spaces "-"
    So then all you have to do is fill out the methods which is fairly trivial
    public static void drawSolidLine( int size, char ch )
           String s;
            for( int i = 0; i < size ; i++ )
                    // ADD ch        - check how to concatenate char into a string in the API
           System.out.println( s );
    public static void drawHollowLine( int size, char ch )
                String s = "";
                // add char to s   
               for( int i = 0 ; i < ( size - 2) ; i++ )
                       s = s + " ";
               // Add char to s
              System.out.println( s )
    }and so on

  • An odd program... or do I have no idea what I'm doing here?

    I've been trying to take out some room noise from an hour and a half long talk given by a man at my university. I understand how the de-noiser works, but when I try to use it Soundtrack Pro locks up on me and crashes. I also thought to try the "Phase Analysis", but after two and a half hours I came to think it had locked up as well, although honestly "Force Quit" had not said it was not responding. However that's longer than a real time analysis would have been. These are the only things I've tried, and neither have worked. Is an hour and a half too long for SP to view, that is, should I break it into smaller pieces somehow? Is SP only good for adding smaller bits of audio to a previously assembled movie? Or am I doing something very wrong here? The format is, incidentally, a .mov that I had edited in Avid Xpress and exported with the Sorensen Squeeze attached to that, uncompressed, and is 20.24 GB in size. Thanks for your help, L

    I wish I could say things were going better- by losing the video, I am able to import the audio into SP. It will then check for phase, hum, etc... but then it will only reluctantly allow me to put an EQ or noise reducer on it. If I play the audio to hear what I've done, when I stop it, the program begins to stutter. This is probably the fault of my soundcard, which is an M-Audiophile 192, not the best. Also I tried just putting the whole audio track in, not breaking it up into 10 minute bits. It's only 1.55 GB, I was hoping that could be OK, but I guess it's still too much for the program. It's not that important, the only one who cares about the quality of the sound is myself, and only just to learn SP. I'm confused about how to export the changes I have made, however. I ended up working with the audio in Logic, got it OK, and then it didn't link up to the video in Avid, like I might have guesses. These are things I'll just have to learn though- again, thanks for your help. If you have any advice I'd sure love it, either way, I'm done for now... I'll mark this as closed tomorrow after I see if you have any more. Thanks, L Mollard

  • Someone help! I have no idea what I am doing!

    I have a 80gb iPod that we just bought from a friend. Somehow I managed to delete all the songs he had on there which was like 2,000. I'm not really worried about that. Problem is..how do I get music on my iPod from my computer? I've also tried adding music to the Library in iTunes and it has stored to the recently added list. SO in other words I just dont know what the heck to do. Now I have a Pod with nothing on it. Any advice? Thanks!

    Awesome, we've made progress!
    Okay, so the problem seems to be in that iTunes can't find your songs (like you said).
    So let's try this:
    Open up the iTunes preferences, Edit>Preferences for a PC. Click the advanced tab. Now make sure the Keep iTunes Music Folder Organized box is checked, as well as Copy files to iTunes music folder when adding to library checkbox.
    Click OK.
    If these checkboxes weren't already checked, then iTunes will take some time to copy your library.
    If you already had the checkboxes checked, and nothing happens when you click OK, click Advanced, then Consolidate Library. This will copy your library again.
    If no error messages pop up during the copy, you're set. Right click the iPod (Bigdogs iPod, as yours has been named), and left click Sync.
    If error messages pop up during the copying library process, complaining about not being able to find files, it means you've actually somehow moved or deleted the songs that you added to iTunes. Delete the references to the songs in question from iTunes, re-add them again and then sync the ipod over again.
    Good luck and keep us up to date on your progress!
    Skip.

  • I don't know what I have virus trojans malware can some one help to have any idea what I have on my pc

    Hello I'm new on apple user I quick windows because I can't used any more the computer to work because I bean attack heavy that I can used my pc they just freeze the pc.  I spend allot of money for nothing,
    now I buy a used apple Mac,  I used like 7 months no problem but now I see that they ad like a second part of the page that I can't see the top left red /yellowed/green bottom / & to click for new page some times I can't  see,  so if I closed all the page & I open again I will no have a problem for about 20 to 30 minutes that's all they can do so far on my Mac pro  Mac Osx version 10.6.8 
    A list I could kept them a way and let me work with apple pc if wasn't for apple I will be homeless right now. I hope apple see the future on security the pc than make new thinks, on this day new thinks people don't care I think what people need is security on the pc,  that's why I tried & work for me,  I can't used windows any more & all my family will star move to apple. because use windows isn't good any more. I star my own web store on construction thanks that I choice apple  www.reloadthispage.com on my web page I will recommend people to use apple  here are the photos of what come out on my pc,

    Helpful Links Regarding Malware Problems
    If you are having an immediate problem with ads popping up see The Safe Mac » Adware Removal Guide and AdwareMedic.
    Open Safari, select Preferences from the Safari menu. Click on Extensions icon in the toolbar. Disable all Extensions. If this stops your problem, then re-enable them one by one until the problem returns. Now remove that extension as it is causing the problem.
    An excellent link to read is Tom Reed's Mac Malware Guide.
    Also, visit The XLab FAQs and read Detecting and avoiding malware and spyware.
    See these Apple articles:
      Mac OS X Snow Leopard and malware detection
      OS X Lion- Protect your Mac from malware
      OS X Mountain Lion- Protect your Mac from malware
      OS X Mavericks- Protect your Mac from malware
      About file quarantine in OS X
    If you require anti-virus protection Thomas Reed recommends using ClamXAV. (Thank you to Thomas Reed for this recommendation.)

  • Laptop says 'This version of iTunes has not been correctly localised for this language. Please run the English Version'. Can anyone help please, have no idea what to do and haven't used laptop in over a year. iPad/iPhone have lost tunes from laptop too.

    my laptop will not open iTunes, as it just says 'This version of iTunes has not been correctly localised for this language. Please run the English version'. I have not synconised my iPhone 5S or iPad 2 with iTunes for well over a year. I noticed the music which had previously been put into iTunes has dissappeared from my phone and iPad. I also want to remove some movies from my iPad and iPhone and there is no way I can do this without being able to manually sync with the Laptop which is running windows 7. Has anyone else come across this and please can you help? I am no expert in fact I know very little about the Laptop, it is my Husbands baby but he doesn't understand anything to do with Apple including iTunes. I will need any advise explained step by step please.

    Hi Shelady,
    Try downloading and reinstalling the latest version of iTunes from the first link below. If that doesn't do it, the suggestions in the second article should resolve the installation issue.
    Apple - iTunes - Download iTunes Now
    http://www.apple.com/itunes/download/
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/HT1923
    -Jason

  • I have no idea what I am doing....please help....nothing works

    Hows that for a subject???
    I am trying to use the SAP NetWeaver 7.02 trial. Never seen SAP before. I have completed the install, but I cannot login. I can open the SAP MMC, the database manager, sql studio. But I when I open SAP Logon 720, I don't know any valid users I can use. I have tried DDIC and SAP. In fact I tried DDIC so many times, its locked. Took a long time, but I finally figured out how to go into the database and delete the SAP user for client 001. But SAP* still does not work with password PASS or pass.
    Is there something obvious I have missed??? I have seen many posts that talk about running some transaction, but I am thinking that needs to be done after I logon. What do I do???

    Well I could not find an exact match to the path you mentioned.
    I went to \usr\sap\nsp\dvebmgs00 but there is no profile directory. I also tried \usr\sap\nsp\sys\profile and did find a nsp_dvebmgs00_sap file, but there isn't any login/no_automatic_user_sapstar.
    I went ahead and added a line for it and expected it to not work. But I just tried it and I am logged in. Thanks so much for solving this!

  • I keep getting the message below when I open a web page...I really have no idea what I'm doing and wanted to know if someone could give me super simple instructions on how to fix it? Thanks!

    A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete. Script: https://js2.wlxrs.com/_D/F$Live.SiteContent.Messenger/4.2.61210/release/Microsoft.Live.Core.LocalStorage.FF.js:39

    Clear the cache and the cookies from sites that cause problems.
    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"

  • TS3694 My Iphone 4 comes up with "Cannot restore due to Error 21" - have no idea what this is. When I attach a different Iphone to my PC, it updates & does everything properly, no security settings issues either. Can anyone help please?

    My Iphone 4 comes up with "Cannot restore due to Error 21". My security settings are all ok as when I connect another Iphone to my PC, it updates & works fine. Does anyone know what Error 21 means please?

    When you searched Google for "iPhone Error 21" what did you find?

  • I have no idea what the password is to use the wlan-17d6 wi-fi?

    how do i find the password for wlan-17d6 wi=fi?

    We cannot help you with that.  You need to speak to whoever set up the WiFi.

  • I copied a power point presentation to my documents, now i want to send it to iTunes so I can load it onto my iPad..I have no idea what I am doing

    I am taking a class and the instructors gave us a flashdrive with the power point presentations for the whole class on it. I copied it to my documents but now I want to put it on my ipad and I don't know how. I added the app Keynote but I don't know what else to do.

    You won't be able to open it on your computer, ibooks can currently only be read in the iBooks app on an iPad, iPhone and iPod Touch. How were you trying to get it to your phone, syncing it by selecting it on the iPhone's Books tab when connected to your computer's iTunes, or by dragging-and-dropping it from the Books part of your iTunes library over and onto the iPhone 'device' ?  Another option is to try re-downloading it directly in the iBooks app on your iPhone via the Purchased tab in the ibookstore in it (re-downloading).

Maybe you are looking for