HELP My 60g ipod video is condensed into a 55.7g ipod video

help my video ipod's hard drive capacity has been reduced to 55 G. How do i fix this. Is there any way

Your drive has not been condensed. When you see a 60gb hard drive for sale, or any other size for that matter, the manufacturer assumes the following:
1 kilobyte = 1000 bytes
1 megabyte = 1000 kilobytes
1 gigabyte = 1000 megabytes
This is however not the case, as each of the these units is 1024 of the previous one, so 1 gigabyte is actually 1024 megabytes.
To find out the actual storage you get from a 60 gb drive, fyrst convert the number to bytes thus:
60.000.000.000
gb mb kb b
60gb = 60.000mb = 60.000.000kb ...etc
Then divide three times with 1024, since we went three units down to bytes
60.000.000.000 / 1024 / 1024 / 1024 = 55,87gb
Then you get the actual storage capacity of the drive. Using the same method you could see that a 500gb drive is only 465gb, and 1000gb is 931gb...

Similar Messages

  • Help inserting a flash video into my web page

    Hello!
    I'd love some help inserting a flash video into my web page. My web page is hosted by Viviti, templated, and edited online. I can add html to it, and I have the html source for my flash video. I also have uploaded the flash file to the server. Since I am very html illiterate, though, I need some help rewriting the html script so it can be published. There are two problems- firstly, no 'headers' or 'body' allowed in the script- these are already a part of the template. Secondly, I don't know how to rewrite it to refer to the uploaded files. It's also imperative that the full screen mode functions. I've pasted the source code for the flash video here. Please help!!!
    Thanks!
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Drag and drop labelling</title>
    <script language="JavaScript" type="text/javascript">
    <!--
    //v1.7
    // Flash Player Version Detection
    // Detect Client Browser type
    // Copyright 2005-2008 Adobe Systems Incorporated.  All rights reserved.
    var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
    var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
    var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
    function ControlVersion()
         var version;
         var axo;
         var e;
         // NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry
         try {
              // version will be set for 7.X or greater players
              axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
              version = axo.GetVariable("$version");
         } catch (e) {
         if (!version)
              try {
                   // version will be set for 6.X players only
                   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
                   // installed player is some revision of 6.0
                   // GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
                   // so we have to be careful.
                   // default to the first public version
                   version = "WIN 6,0,21,0";
                   // throws if AllowScripAccess does not exist (introduced in 6.0r47)          
                   axo.AllowScriptAccess = "always";
                   // safe to call for 6.0r47 or greater
                   version = axo.GetVariable("$version");
              } catch (e) {
         if (!version)
              try {
                   // version will be set for 4.X or 5.X player
                   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
                   version = axo.GetVariable("$version");
              } catch (e) {
         if (!version)
              try {
                   // version will be set for 3.X player
                   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
                   version = "WIN 3,0,18,0";
              } catch (e) {
         if (!version)
              try {
                   // version will be set for 2.X player
                   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
                   version = "WIN 2,0,0,11";
              } catch (e) {
                   version = -1;
         return version;
    // JavaScript helper required to detect Flash Player PlugIn version information
    function GetSwfVer(){
         // NS/Opera version >= 3 check for Flash plugin in plugin array
         var flashVer = -1;
         if (navigator.plugins != null && navigator.plugins.length > 0) {
              if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
                   var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
                   var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
                   var descArray = flashDescription.split(" ");
                   var tempArrayMajor = descArray[2].split(".");               
                   var versionMajor = tempArrayMajor[0];
                   var versionMinor = tempArrayMajor[1];
                   var versionRevision = descArray[3];
                   if (versionRevision == "") {
                        versionRevision = descArray[4];
                   if (versionRevision[0] == "d") {
                        versionRevision = versionRevision.substring(1);
                   } else if (versionRevision[0] == "r") {
                        versionRevision = versionRevision.substring(1);
                        if (versionRevision.indexOf("d") > 0) {
                             versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
                   var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
         // MSN/WebTV 2.6 supports Flash 4
         else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
         // WebTV 2.5 supports Flash 3
         else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
         // older WebTV supports Flash 2
         else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
         else if ( isIE && isWin && !isOpera ) {
              flashVer = ControlVersion();
         return flashVer;
    // When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
    function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
         versionStr = GetSwfVer();
         if (versionStr == -1 ) {
              return false;
         } else if (versionStr != 0) {
              if(isIE && isWin && !isOpera) {
                   // Given "WIN 2,0,0,11"
                   tempArray         = versionStr.split(" ");      // ["WIN", "2,0,0,11"]
                   tempString        = tempArray[1];               // "2,0,0,11"
                   versionArray      = tempString.split(",");     // ['2', '0', '0', '11']
              } else {
                   versionArray      = versionStr.split(".");
              var versionMajor      = versionArray[0];
              var versionMinor      = versionArray[1];
              var versionRevision   = versionArray[2];
                 // is the major.revision >= requested major.revision AND the minor version >= requested minor
              if (versionMajor > parseFloat(reqMajorVer)) {
                   return true;
              } else if (versionMajor == parseFloat(reqMajorVer)) {
                   if (versionMinor > parseFloat(reqMinorVer))
                        return true;
                   else if (versionMinor == parseFloat(reqMinorVer)) {
                        if (versionRevision >= parseFloat(reqRevision))
                             return true;
              return false;
    function AC_AddExtension(src, ext)
      if (src.indexOf('?') != -1)
        return src.replace(/\?/, ext+'?');
      else
        return src + ext;
    function AC_Generateobj(objAttrs, params, embedAttrs)
      var str = '';
      if (isIE && isWin && !isOpera)
        str += '<object ';
        for (var i in objAttrs)
          str += i + '="' + objAttrs[i] + '" ';
        str += '>';
        for (var i in params)
          str += '<param name="' + i + '" value="' + params[i] + '" /> ';
        str += '</object>';
      else
        str += '<embed ';
        for (var i in embedAttrs)
          str += i + '="' + embedAttrs[i] + '" ';
        str += '> </embed>';
      document.write(str);
    function AC_FL_RunContent(){
      var ret =
        AC_GetArgs
        (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
         , "application/x-shockwave-flash"
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    function AC_SW_RunContent(){
      var ret =
        AC_GetArgs
        (  arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
         , null
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
      var ret = new Object();
      ret.embedAttrs = new Object();
      ret.params = new Object();
      ret.objAttrs = new Object();
      for (var i=0; i < args.length; i=i+2){
        var currArg = args[i].toLowerCase();   
        switch (currArg){     
          case "classid":
            break;
          case "pluginspage":
            ret.embedAttrs[args[i]] = args[i+1];
            break;
          case "src":
          case "movie":     
            args[i+1] = AC_AddExtension(args[i+1], ext);
            ret.embedAttrs["src"] = args[i+1];
            ret.params[srcParamName] = args[i+1];
            break;
          case "onafterupdate":
          case "onbeforeupdate":
          case "onblur":
          case "oncellchange":
          case "onclick":
          case "ondblclick":
          case "ondrag":
          case "ondragend":
          case "ondragenter":
          case "ondragleave":
          case "ondragover":
          case "ondrop":
          case "onfinish":
          case "onfocus":
          case "onhelp":
          case "onmousedown":
          case "onmouseup":
          case "onmouseover":
          case "onmousemove":
          case "onmouseout":
          case "onkeypress":
          case "onkeydown":
          case "onkeyup":
          case "onload":
          case "onlosecapture":
          case "onpropertychange":
          case "onreadystatechange":
          case "onrowsdelete":
          case "onrowenter":
          case "onrowexit":
          case "onrowsinserted":
          case "onstart":
          case "onscroll":
          case "onbeforeeditfocus":
          case "onactivate":
          case "onbeforedeactivate":
          case "ondeactivate":
          case "type":
          case "codebase":
          case "id":
            ret.objAttrs[args[i]] = args[i+1];
            break;
          case "width":
          case "height":
          case "align":
          case "vspace":
          case "hspace":
          case "class":
          case "title":
          case "accesskey":
          case "name":
          case "tabindex":
            ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
            break;
          default:
            ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
      ret.objAttrs["classid"] = classid;
      if (mimeType) ret.embedAttrs["type"] = mimeType;
      return ret;
    // -->
    </script>
    </head>
    <body bgcolor="#ffffff">
    <!--url's used in the movie-->
    <!--text used in the movie-->
    <!-- saved from url=(0013)about:internet -->
    <script language="JavaScript" type="text/javascript">
         AC_FL_RunContent(
              'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0',
              'width', '720',
              'height', '440',
              'src', 'Drag and drop labelling',
              'quality', 'medium',
              'pluginspage', 'http://www.adobe.com/go/getflashplayer',
              'align', 'middle',
              'play', 'true',
              'loop', 'true',
              'scale', 'showall',
              'wmode', 'window',
              'devicefont', 'false',
              'id', 'Drag and drop labelling',
              'bgcolor', '#ffffff',
              'name', 'Drag and drop labelling',
              'menu', 'true',
              'allowFullScreen', 'true',
              'allowScriptAccess','sameDomain',
              'movie', 'Drag and drop labelling',
              'salign', ''
              ); //end AC code
    </script>
    <noscript>
         <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0" width="720" height="440" id="Drag and drop labelling" align="middle">
         <param name="allowScriptAccess" value="sameDomain" />
         <param name="allowFullScreen" value="true" />
         <param name="movie" value="Drag and drop labelling.swf" /><param name="quality" value="medium" /><param name="bgcolor" value="#ffffff" />     <embed src="Drag and drop labelling.swf" quality="medium" bgcolor="#ffffff" width="720" height="440" name="Drag and drop labelling" align="middle" allowScriptAccess="sameDomain" allowFullScreen="true" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" />
         </object>
    </noscript>
    </body>
    </html>

    What you basically need to do is copy the sections of content from the code you show into the template (assuming the template already provides the <head> and <body> sections of the page.  So in the head section of what you show, take everything starting with...
    <script language="JavaScript" type="text/javascript">
    all the way down thru...
    </script>
    , inclusive (in the head section only), and paste that into the head section of your template.
    Similarly, take everything that lies between the <body> ... </body> tags (exclusive of the body tags) and paste it into the body section of your template wherever you plan to display the Flash file.

  • I can't import HD video from Samsung OIS Duo into FCP. However, I can see the video with QT. In FCP, I just see a red bad with a yellow triangle (warning). Can someone help me. The video are Full HD 1080/60i?

    I can't import my HD videos (MP4) from my Samsung OIS Duo into FCP.
    However, I can see the video with QuickTime.
    In FCP, I just see a red box with a yellow triangle at the center(warning). Can someone help me. The video are Full HD 1080/60i.
    I also try converting from MP4 to DV. Cannot import the .DV either.
    Can someone help me?

    Could it be the case that you have "proxy media" selected in the preferences (under Final Cut Pro -> Preferences, click on "Playback" and see which is selected, proxy or optimized), BUT you are not creating proxy media when importing?
    If that is the case, either
      - switch to "original/optimized media",
    or
      - create the proxy media (control-click the clip(s) in the event browser, choose "Transcode media" e check the box for "create proxy media").

  • HELP! my Ipod doesn´t accept videos!

    Hi everybody! I need help
    I got a problem and I have no clue how to solve it, well it all start when I try to pass Videos, (movies, music-videos...) to my Ipod, even I passed them before to whatever format it ask me for, I think is MP4, it says that they cannot be played on this Ipod(even is a 30GB Ipod) and when I go to the video setting the video ones are like block! I´m sure is a Ipod that I can play videos on, why it dosen´t let me pass videos on?
    thanks a lot for your help.

    Just having your video in MP4 won’t necessarily make it compatible with the iPod.
    Here are the correct formats for you:
    H.264 video: up to 768 Kbps, 320 x 240, 30 frames per sec., Baseline Profile up to Level 1.3 with AAC-LC up to 160 Kbps, 48 Khz, stereo audio in .m4v, .mp4 and .mov file formats
    MPEG-4 video: up to 2.5 mbps, 480 x 480, 30 frames per sec., Simple Profile with AAC-LC up to 160 Kbps, 48 Khz, stereo audio in .m4v, .mp4 and .mov file formats
    Now if you dont know how to convert video use this:
    http://www.ipod-video-converter.org/
    It's not really that good but it's easy and it's freeware.
    model.... huh? Windows XP Pro

  • Help Please - my downloaded videos do not work on Ipod !

    Can someone help please - my ipod has stopped playing videos back - I have downloaded some video podcasts and a couple of music videos, and all you see is the first screen, however the voice is fine?
    Help please!

    Have you update your ipod to firmware 1.2 yet? My guess is the videos you download are in the new 640x480 format which only updated ipod can play.

  • Need help please with my video ipod

    HI,
    I need to know how to transfer photos to my ipod. I can not figure this out. I would appreciate your help.
    thanx

    There's a video tutorial on transferring photos here that should help you out: http://www.apple.com/support/ipod/tutorial/ipgettingstartedt9.html

  • New 60G IPOD will only hold 4000 songs HELP

    I just got my husband a new 60G IPod Photo and am trying to load songs for him. After only 4,000 songs, it says the IPOD is full. What am I doing wrong? I am trying to transfer about 13,000 songs - and on my computer harddrive, they only use a total of 52G - and I am getting really frustrated and confused. Thanks for any help.

    Welcome to Apple Discussions!
    If in iTunes it says the songs total up to 52GB then try restoring your iPod...
    http://docs.info.apple.com/article.html?artnum=60983
    And then resync.
    Also, make sure everything is updated...
    http://www.apple.com/ipod/download
    http://www.apple.com/itunes/download
    btabz

  • What is SPV Diag Boot???  I have the 60G ipod video.....

    I have a 60G ipod. Everytime I turn my ipod on it goes to this screen SPV Diag Boot. And I try to follow the steps to fix it but it keeps going on with these test and it never works. What is this and why am i getting this.
    Thanks alot for any help,
    -Mike-

    Restoring it is a good step to take in your case to make sure it's not the iPod software causing the issue. Reset the iPod (hold the center and menu button till the apple logo comes up) and as it boots back up, put it next to your ear. If you hear any clicking, grinding or such noises, it's probably hard drive failure, which can happen without the sad face icon. Skipping and pausing can be caused by a dying drive.

  • HT1320 Help! My ipod classic is frozen. Even when I attach it to a power source and try to reset it (as per the instructions above), the apple logo never appears. The only thing that happens is that the screen turns alternately light and dark. Thanks!

    Help! My ipod classic is frozen. Even when I attach it to a power source and try to reset it (as per the instructions above), the apple logo never appears. The only thing that happens is that the screen turns alternately light and dark. Thanks!

    If a sad iPod icon or an exclamation point and folder icon appears on your iPod’s screen, or with sounds of clicking or HD whirring, it is usually the sign of a hard drive problem and you have the power to do something about it now. Your silver bullet of resolving your iPod issue – is to restore your iPod to factory settings.
    http://docs.info.apple.com/article.html?artnum=60983
    If you're having trouble, try these steps at different levels one at a time until the issue is resolved. These steps will often whip your iPod back into shape.
    Make sure you do all the following “TRYs”
    A. Try to wait 30 minutes while iPod is charging.
    B. Try another FireWire or USB through Dock Connector cable.
    C. Try another FireWire or USB port on your computer .
    D. Try to disconnect all devices from your computer's FireWire and USB ports.
    E. Try to download and install the latest version of iPod software and iTunes
    http://www.apple.com/itunes/download/
    For old and other versions of iPod updater for window you can get here
    http://www.ipodwizard.net/showthread.php?t=7369
    F. Try these five steps (known as the five Rs) and it would conquer most iPod issues.
    http://www.apple.com/support/ipod/five_rs/
    G. Try to put the iPod into Disk Mode if it fails to appear on the desktop
    http://docs.info.apple.com/article.html?artnum=93651
    If none of these steps address the issue, you may need to go to Intermediate level listed below in logical order. Check from the top of the lists to see if that is what keeping iPod from appearing on your computer in order for doing the Restore.
    Intermediate Level
    A. Try to connect your iPod with another computer with the iPod updater pre-installed.
    B. Still can’t see your iPod, put it in Disk Mode and connect with a computer, instead of doing a Restore on iPod Updater. Go and format the iPod instead.
    For Mac computer
    1. Open the disk utility, hope your iPod appears there (left hand side), highlight it
    2. Go to Tab “Partition”, click either “Delete” or “Partition”, if fails, skip this step and go to 3
    3. Go to Tab “Erase” , choose Volume Format as “MAC OS Extended (Journaled), and click Erase, again if fails, skip it and go to 4
    4. Same as step 3, but open the “Security Options....” and choose “Zero Out Data” before click Erase. It will take 1 to 2 hours to complete.
    5. Eject your iPod and do a Reset
    6. Open the iTunes 7 and click “Restore”
    For Window computer
    Go to folder “My Computer”
    Hope you can see your iPod there and right click on the iPod
    Choose “Format”. Ensure the settings are at “Default” and that “Quick Format” is not checked
    Now select “Format”
    Eject your iPod and do a Reset
    Open the iTunes 7 and click “Restore”
    In case you do not manage to do a “Format” on a window computer, try to use some 3rd party disk utility software, e.g.“HP USB Disk Storage Format Tool”.
    http://discussions.apple.com/thread.jspa?threadID=501330&tstart=0
    C. Windows users having trouble with their iPods should locate a Mac user. In many cases when an iPod won't show up on a PC that it will show up on the Mac. Then it can be restored. When the PC user returns to his computer the iPod will be recognized by the PC, reformatted for the PC, and usable again. By the way, it works in reverse too. A Mac user often can get his iPod back by connecting it to a PC and restoring it.
    Tips
    a. It does not matter whether the format is completed or not, the key is to erase (or partly) the corrupted firmware files on the Hard Drive of the iPod. After that, when the iPod re-connected with a computer, it will be recognized as an fresh external hard drive, it will show up on the iTunes 7.
    b. It is not a difficult issue for a Mac user to find a window base computer, for a PC user, if they can’t find any Mac user, they can go to a nearest Apple Shop for a favor.
    c. You may need to switch around the PC and Mac, try to do several attempts between “Format” and “Restore”
    http://discussions.apple.com/thread.jspa?messageID=2364921&#2364921
    Advance Level
    A. Diagnostic mode solution
    If you have tried trouble shooting your iPod to no avail after all the steps above, chances are your iPod has a hardware problem. The iPod's built-in Diagnostic Mode is a quick and easy way to determine if you have a "bad" iPod.
    You need to restart your iPod before putting it into Diagnostic Mode. Check that your hold switch is off by sliding the switch away from the headphone jack. Toggle it on and off to be safe.
    Press and hold the following combination of buttons simultaneously for approximately 10 seconds to reset the iPod.
    iPod 1G to 3G: "Menu" and "Play/Pause"
    iPod 4G+ (includes Photo, Nano, Video, and Mini): "Menu" and "Select"
    The Apple logo will appear and you should feel the hard drive spinning up. Press and hold the following sequence of buttons:
    iPod 1G to 3G: "REW", "FFW" and "Select"
    iPod 4G+ (includes Photo, Nano, Video, and Mini): "Back" and "Select"
    You will hear an audible chirp sound (3G models and higher) and the Apple logo should appear backwards. You are now in Diagnostic Mode. Navigate the list of tests using "REW" and "FFW". The scroll wheel will not function while in diagnostic mode. For further details on Diagnostic mode can be found at http://www.methodshop.com/mp3/ipodsupport/diagnosticmode/
    Try to do the 5in1, HDD R/W and HDD scan tests. Some successful cases have been reported after the running the few tests under the Diagnostic mode. In case it does not work in your case, and the scan tests reports show some errors then it proves your iPod has a hardware problem and it needs a repairing service.
    B. Format your iPod with a start disk
    I have not tried this solution myself, I heard that there were few successful cases that the users managed to get their iPod (you must put your iPod in disk mode before connecting with a computer) mounted by the computer, which was booted by a system startup disk. For Mac, you can use the Disk Utility (on the Tiger OS system disk), for PC user, you can use the window OS system disk. Try to find a way to reformat your iPod, again it does not matter which format (FAT32, NTFS or HFS+) you choose, the key is to erase the corrupted system files on the iPod. Then eject your iPod and do a Reset to switch out from Disk Mode. Reboot your computer at the normal way, connect your iPod back with it, open the iPod updater, and hopefully your iPod will appear there for the Restore.
    If none of these steps address the issue, your iPod may need to be repaired.
    Consider setting up a mail-in repair for your iPod http://depot.info.apple.com/ipod/
    Or visit your local Apple Retail Store http://www.apple.com/retail/
    In case your iPod is no longer covered by the warranty and you want to find a second repairing company, you can try iPodResQ or ifixit at your own risk
    http://www.ipodresq.com/index.php
    http://www.ifixit.com/
    Just in case that you are at the following situation
    Your iPod warranty is expired
    You don’t want to pay any service charges
    You are prepared to buy a new one
    You can’t accept the re-sell value of your broken iPod
    Rather than leave your iPod as paper-weight or throw it away.
    You can try the following, but again, only do it as your last resort and at your own risk.
    Warning !!!! – It may or may not manage to solve your problem, and with a risk that you may further damage your iPod, which end up as an expensive paper weight or you need to pay more higher repairing cost. Therefore, please re-consider again whether you want to try the next level
    Last Resort Level
    1. . Disconnecting the Hard Drive and battery inside the iPod – Warning !! Your iPod warranty will be waived once you open the iPod.
    In Hong Kong there are some electronic shops offering an iPod service for Sad iPod, the first thing they do is to open up the iPod’s case and disconnecting the battery and the Hard Drive from the main board of the iPod. Wait for 5-10 minutes and reconnecting them back. The reason behind which I can think of is to do a fully reset of a processor of the iPod. In case you want do it itself and you believe that you are good on fixing the electronics devices and have experience to deal with small bits of electronic parts, then you can read the following of how to open the iPod case for battery and HDD replacement (with Quicktimes)
    http://eshop.macsales.com/tech_center/index.cfm?page=Video/directory.html
    2.Press the reset button on the Hard Drive inside the iPod – Suggestion from Kill8joy
    http://discussions.apple.com/thread.jspa?messageID=2438774#2438774
    Have I tried these myself? No, I am afraid to do it myself as I am squeamish about tinkering inside electronic devices, I have few experiences that either I broke the parts (which are normally tiny or fragile) or failed to put the parts back to the main case. Therefore, I agree with suggestion to have it fixed by a Pro.
    2. Do a search on Google and some topics on this discussion forum about “Sad iPod”
    Exclamation point and folder and nothing else
    Spank your iPod
    http://www.youtube.com/watch?v=3ljPhrFUaOY
    http://discussions.apple.com/thread.jspa?messageID=3597173#3597173
    Exclamation point and folder and nothing else
    http://discussions.apple.com/thread.jspa?messageID=2831962#2831962
    What should I do with my iPod? Send it or keep it?
    http://discussions.apple.com/thread.jspa?threadID=469080&tstart=0
    Strange error on iPod (probably death)
    http://discussions.apple.com/thread.jspa?threadID=435160&start=0&tstart=0
    Sad Face on iPod for no apparent reason
    http://discussions.apple.com/thread.jspa?threadID=336342&start=0&tstart=0
    Meeting the Sad iPod icon
    http://askpang.typepad.com/relevant_history/2004/11/meeting_the_sad.html#comment -10519524
    Sad faced iPod, but my computer won’t recognize it?
    http://discussions.apple.com/thread.jspa?messageID=2236095#2236095
    iPod Photo: unhappy icon + warranty question
    http://discussions.apple.com/thread.jspa?messageID=2233746#2233746
    4th Gen iPod Users - are we all having the same problem?
    http://discussions.apple.com/message.jspa?messageID=2235623#2235623
    Low Battery, and clicking sounds
    http://discussions.apple.com/thread.jspa?messageID=2237714#2237714
    Sad faced iPod, but my computer won’t recognize it
    http://discussions.apple.com/thread.jspa?messageID=2242018#2242018
    Sad iPod solution
    http://discussions.apple.com/thread.jspa?threadID=412033&tstart=0
    Re: try to restore ipod and it says "can't mount ipod"
    http://discussions.apple.com/thread.jspa?threadID=443659&tstart=30
    iPod making clicking noise and is frozen
    http://discussions.apple.com/thread.jspa?messageID=2420150#2420150
    Cant put it into disk mode
    http://discussions.apple.com/thread.jspa?messageID=3786084#3786084
    I think my iPod just died its final death
    http://discussions.apple.com/thread.jspa?messageID=3813051
    Apple logo & monochrome battery stay
    http://discussions.apple.com/thread.jspa?messageID=3827167#3827167
    My iPod ism’t resetting and isn’t being read by my computer
    http://discussions.apple.com/thread.jspa?messageID=4489387#4489387
    I am not suggesting that you should follow as well, but just read them as your reference. You are the person to make the call.
    Finally, I read a fair comments from dwb, regarding of slapping the back of the iPod multiple times
    Quote “This has been discussed numerous times as a 'fix'. It does work, at least for a while. In fact I remember using the same basic trick to revive Seagate and Quantam drives back in the mid to late 1980's. Why these tiny hard drives go bad I don't know - could be the actuator gets stuck in place or misaligned. Could be the platter gets stuck or the motor gets stuck. 'Stiction' was a problem for drives back in the 80's. Unfortunately the fix can cause damage to the platter so we temporarily fix one problem by creating another. But I know of two instances where a little slap onto the table revived the iPods and they are still worked a year or more later.”UnQuote

  • Help with exporting Minecraft video

    Hello. My name is Reynir Aron. I make Minecraft videos and I recently switched from Final Cut Pro 7 to Premiere Pro CS6 and I love using Premiere.
    However there is one little problem, when I export the video (even if I do it through Media Encoder) the video looks very smoothed out (for example the text looks really crappy and isn't pixellated).
    Can anybody help me? The video is not being scaled up, the source video, my sequence and the export settings are all 1280x720.
    By the way, is there any plugin or anything that lets me export using QuickTime Pro 7?
    Here is a screenshot of the output I get:
    This also happens if I check "Use Maximum Render Quality".
    This is what I see in Premiere's Program window:
    I have an iMac8,1 (Early 2008) with a 2,8GHz Intel Core 2 Duo, 4GB 800 MHz DDR2 SDRAM, an ATI Radeon HD 2600 Pro 256 MB and I'm running OS X Mountain Lion 10.8.2.

    I think my daughter is using FRAPS, but of course not transcoding, just putting that right into Premiere. If your captured file is 30fps, what is the transcoded ProRes file? I don't know if ProRes supports non-video settings, so maybe that is converted to 29.97? But then the edit sequence is 30fps, and I do see an issue - FIELDS is set to LOWER, but should be PROGRESSIVE. That could be causing the jaggies issue on your output.
    How did you create the editing Sequence? Try creating a NEW SEQUENCE with the same settings, except make it Progressive, then copy/paste contents of interlaced sequence into the progressive sequence and then Export again, see if that helps. Or just do a short sample to check, to save time.
    Thanks
    Jeff

  • HELP about analog output video

    Hello, I´m need help about analog output video in Premiere CS5 using Matrox RTX2. I need to crop a video with resolution in 1440x1080 to 4:3 in output analog. But what happens is wrong (I think). My video is in format anamorphic and the other option is 16:9 letterbox. Is there any way to crop the video without using effects. Thanks a Lot and sorry my bad english (my native language is Portuguese).

    There are no 4:3 HD specifications.  You'll have to put the video into a normal SD sequence, and scale it down till the top and bottom of the video meet the frame.  That way the sides will be cut off.

  • Please Help-- 1st Gen iPod not showing in iTunes or desktop :(

    My 20g iPod doesn't show up anymore in iTunes or on the desktop, but the iPod itself does say "do not disconnect" when it's connected to the USB port. It's plugged directly into my computer and I've tried switching ports, so it's not that. I was able to connect my friend's nano, so the problem can't be the port.
    I've done the 5 Rs without success. I only have OS X 10.2.8, so can't upgrade to iTunes 7. I had iTunes 6.0.5 but changed back to 6.0.4 after hearing that it might help with the iPod problem. Nothing seems to have changed, though, the iPod is still unrecognized by iTunes and the desktop.
    I've read a bunch of posts saying to repair disk permissions, but when I open Disk Utility(which does show the iPod) my only options are Verify Disk and Repair Disk. Verify and Repair Disk Permissions are there but are in grey (can't click on them.)...
    And my warranty ran out ages ago, so the Apple people won't help me. Great for them, but I'm screwed.
    So I know very little about how these things work, and everything I've tried has failed thus far. Any advice you have would be wonderful!
    EMac   Mac OS X (10.2.x)   Mac OS X 10.2.8

    Update: I get this message when the iPod is plugged into the computer:
    "You have inserted a disk containing no volumes that Mac OS X can read. To use the unreadable volumes, click Initialize. To continue with the disk inserted, click Ignore."
    There are three options: Initialize, Ignore, and Eject, but none of them do anything. ??? I'm clueless as to what to do here.

  • Need help with my ipod nano

    Hi,
    I need help with my ipod nano.
    I haven't turned it on in a while and suddenly it stops working when I try to turn it on again.
    Sometimes it displays:
    "www.apple.com/support/ipod"
    And right now it's displaying "OK to disconnect".
    Could somebody please advice what should I do?
    Thank you

    I need help.
    I have my IPOD nano for a while now and about a week ago. My husband bought one for his newphew and he had me download all the songs into the new IPOD (2nd Generation). Now Im having problems with mine. Everytime I try to charge and usually the screen will pop up to my original music player. This is what it says now when I open or charge my IPOD.
    "The File iTunes Library.it! cannot be read because it was created by a newer version of iTunes".
    Now, that I listen to it...all the music skip. Please help me..what should I do??
    Thank you

  • Avchd   converter for help  you create unique videos easily

    Emicsoft HD Video Converter is the high definition video converter software develeped to convert HD video files with high quality. With this HD video converter you can also easily convert between HD video formats, convert standard definition videos to HD videos, or convert HD videos to SD (Standard-Definition) videos. The HD video converter supports most of HD video formats: MTS/M2TS, TS, HD MKV, HD AVI, HD MP4, HD WMV, HD MOV, HD ASF.
    How to use this HD Converter?
    1. Launch the software and click "Add File" button to import files into the software. You c help yoan watch them on the preview screen.
    2. Edit the added movie by clicking "Effect" "Trim" or "Crop" button which can help you create unique videos easily.
    3. Select output in Profile option. Here all popular formats and mobile devices are supported. Then make sure the destination folder.
    4. Click "Start" button and the program will automatically start conversion.
    Emicsoft AVCHD Converter can convert AVCHD video to all popular video formats, and convert other videos to AVCHD video. So many formats are supported such as HD video (TS, MTS, M2TS, HD MPEG-4, HD MOV, HD AVI, HD VOB, HD ASF, HD WMV, etc.), general video (AVI, MP4, WMV, MPEG-1, MPEG-2, VOB, MOV, 3GP, FLV, SWF, etc.) and audio track (MP3, WMA, WAV, AAC, AC3, OGG, etc.).
    Emicsoft MOD Converter is a powerful MOD video converter which can MOD to AVI, MOD to MPG, MOD to MPEG, MOD to WMV and to other video format, such as FLV, SWF, ASF, DivX, XviD, MP4, VCD, SVCD, DVD-Video, VOB and so on. Batch conversion supported, so you can add several .MOD files one time.
    More softwares may help you:
    Emicsoft Video Converter
    Emicsoft FLV Converter
    Emicsoft MTS Converter

    Komposer-NVU is an html editor for Mac based on the Mozilla Gecko engine (Seamonkey).
    http://www.kompozer.net/
    Seamonkey (mozilla.org) has an html editor called Composer.
    Dreamweaver by Adobe (not free of course). The standard everyone
    else is judged by:
    http://adobe.com
    Freeway
    http://www.softpress.com/store/
    Edit Rocket, never tried it, but the price is right if it works!
    http://www.editrocket.com/download_mac.html
    PageSpinner:
    http://www.optima-system.com/pagespinner/
    More:
    http://www.pure-mac.com/webed.html
    Kj

  • 60G iPod 'Resets' itself sporadically... What's Up with that?

    I have a 60G iPod that has about 2800 songs loaded (+ about a dozen jpg images). Loaded from a WIN2K based PC using iTunes 6.0.4.2 and the latest iPod Update software.
    When playing, the unit will sporadically 'Reset' itself (Run through shutdown/startup while displaying the Apple Logo) with no button pushes or any other contact. It's to the point now where it is never a matter of "IF" it will do it, simply a matter of "WHEN" or "HOW SOON" it will occur... very, very frustrating!!! Sometimes I can run about 30-45 minutes before it happens, sometimes it happens on the second or third song (5 or 10 minutes).
    I have Reset the iPod, Upgraded the iPod to the latest OS, Reinstalled OS and consistently upgraded to the newest iTunes version, and Restored the iPod to factory level Zero and then reloaded all 2700+ songs and 13 photos... no changes... still dumps whenever it decides to.
    Oh yeah... it sits in a BOSE dock, charging every night so the power should be adequate.
    Any ideas or insights from ANYONE? Thanks in Advance for your reply/response!!!
    I'm getting exceedingly frustrated, especially when I see my wife's 30G operate absolutely fine. Don't know if song count makes any difference but she doesn't has barely begun to load any real quantity of material yet...
    iPod v5 60G   Windows 2000  

    Here is my 'tech/test report' for the day:
    I plugged in the iPod to my work computer, same as yesterday. No songs in library, etc, etc.
    Using the iPod as the song file source, and playing the songs using iTunes as the controlling interface, this thing played all day, hour after hour, with no resets, no issues of any type.
    After ejecting the iPod and playing it on the way home, I was able to get approximately one (1) hour of play time before the iPod went into the 'AUTO-RESET' mode, by rebooting itself with no contact.
    I believe we state with a high level of assurance the issue is neither MECHANICAL (i.e. a bad or tempermental hard-drive) or due to bad files. The iPod did what it was supposed to do for hours when using an external (i.e. Workstation) user interface (iTunes). Although possible, I still doubt the RESET issue stems from a battery/power triggered event.
    I tend to believe the issue lies somewhere within the UI or OS on the unit itself. Perhaps some memory cache that fails to clear and eventually fills and forces a reset?
    Still searching for THE solution...
    Ps: I WILL NOT BE UPGRADING TO 1.1.1 ... those issues look REALLY UGLY!!! Atleast I still get to listen to SOME songs before it bites the dust!

Maybe you are looking for

  • Leopard reversed mouse wheel behavior in cmd+tab switcher

    in Tiger when you have many apps open, pressing cmd+tab brings up the app switcher, and then pulling towards you on the mouse wheel scrolls to the right, and pushing away on the wheel scrolls to the left. leopard has reversed this, making a pull on t

  • Error after Setting up DBI

    Hi all, After setting up Daily business intelligence for Projects. The error occurs as shown below "A system error has occurred. Unable to locate: CURRENT PERIOD. Please contact your support representative." Pls help me to resolve this Thanks Dinesh

  • Insert SDO_GEOMETRY using array binding

    Hi, does anyone know howto insert the elem_info array and the ordinates array of a SDO_GEOMETRY object using array binding and ODP or if there is a way to insert the SDO_GEOMETRY object using the same technique. /Anders

  • Exporting to FLV from Premiere

    Hello, I have PPOCS4 and I have a short 4 min clip.  I have tried to export the movie to flv several times...and I can't get the movie to play back when I use the FMS3 server.  If I use progessive, all is OK.  If I convert using Sorenson, all is fine

  • Output of Non-released PO

    Has anyone used a different form or output for a "draft" purchase order, one that is not yet released?  We want to use this for the print preview of a non-released purchase order.