Crash (DEP Exception) Saving .mov files from Vista and Internet Explorer 7

I have re-created the issue on multiple Vista workstations with IE 7.
Latest Version of Quicktime (Pro)
Vista SP2
When I save a .mov file from a web site, the first time I have no problem, but the second time my Internet Explorer crashes unless I have protected mode turned off.
Any help would be appreciated....

The workstations have standard image with the following applications on them:
Adobe FlashPlayer 10
Adobe Reader 9.3
Adobe Shockwave Player 11
Citrix XenAppWebPlugin
Courion DirectCP
IBM eGather
Intel Drivers
Microsoft .NET Framework SP3
Microsoft Office 2007
Microsoft Visual C++ 2005
Microsoft Mobile Devices
Oracle Client 10g
Apple Quicktime
RockinFewl LaunchinIE
SoundMAX
Sun JRE 1.6.0.16
Symantec EndPoint Protection
Verdiem Surveyor Client
Nothing that should have old Apple Components...is there a way to tell?
Other Information on the Internet Explorer 7 crash:
Problem signature
Problem Event Name: BEX
Application Name: iexplore.exe
Application Version: 7.0.6002.18005
Application Timestamp: 49e01e78
Fault Module Name: StackHash_fd00
Fault Module Version: 0.0.0.0
Fault Module Timestamp: 00000000
Exception Offset: 00000000
Exception Code: c0000005
Exception Data: 00000008
OS Version: 6.0.6002.2.2.0.256.4
Locale ID: 4105
Additional Information 1: fd00
Additional Information 2: ea6f5fe8924aaa756324d57f87834160
Additional Information 3: fd00
Additional Information 4: ea6f5fe8924aaa756324d57f87834160
Extra information about the problem
Bucket ID: 559760929
Message was edited by: gillani

Similar Messages

  • Importing .MOV files from PC and getting "generic error" msgs... help.

    Importing .mov files which I downloaded from my iPhone onto my PC (so getting them from file folder, not directly from iPhone). However, getting "importer is reporting generic error" message with a list of video files that didn't get imported. Some are importing, though, and showing up on the timeline. Downloaded a whole bunch at a time and thought it was the problem. Then just tried one that had the error to test and that one wouldn't either, even by itself.
    These are MOV files from iPhone 4 recorded with "stock" camera program on phone. Using Premiere Elements 11.
    Please help.

    Welcome to the forum.
    Along with Steve's questions, I have one more:
    Did your iPhone shoot with a Variable Frame Rate?
    That is common with many of the phone cameras, and especially the iPhones. You can run your file through MediaInfo (for PC), or Media Inspector (for Mac), and then report the FPS (Frames Per Second). If it is constant, it should Import fine. If it is variable, then you might have to convert that to a Fixed Frame Rate. One method is to use Apple's QuickTime Pro (a US $30 upgrade/unlock), and just Import the file into QT Pro, then Export to the same format, but with a Fixed Frames Per Second.
    Good luck, and please let us know a bit more.
    Hunt

  • Saving .mov Files from Broadcaster.

    I'm using an HDV Sony camcorder set to import and record in DV mode for live streaming video in Broadcaster. Broadcaster saves an .mov file of its stream to the computer, BUT the quality of the file is very poor.
    I've been trying to import the live video into iMovie while simultaneously streaming it, but I can't use both iMovie and Broadcaster at the same time. I've also tried the same thing with Quicktime Pro, but no luck there either.
    This is for a project at work and we HAVE to stream our events live, but we also need high quality recordings of the events to edit and burn to DVD for a cable broadcast.
    I know that we can just record the program to the tape in the camcorder, but we haven't been able to find a tape that lasts over 60 minutes, and we'll need that for our programs just in case they run a little long.
    Any help would be greatly appreciated! I've check all the Broadcaster help sections, but Broadcaster doesn't give you a lot of option or helpful tips.

    Are you using H264 or native? Frankly a MBP hasn't the nads to compress high quality video fast enough. In Broadcaster I am lucky to get 15 fps for H264 and thus I only use it on a mac Pro.
    Use tape , if you have to , two cameras.

  • HELP! File Upload Servlet and Internet Explorer

    Hello people. I hope this is an easy problem to solve...
    I have a servlet upload program that works using Mozilla browser (www.mozilla.org), but for some reason it doesn't work using Microsoft IE. The servlet is also using the servlet upload API from Apache (commons).
    I'm using IE version 6.0.2800.1106 in a Win98SE host computer. I get a cannot find path specified error message (see below). At work, I also get the same error message using IE, but don't know what version. The OS is XP. Unfortunately, at work, I can't install Mozilla browser (or any software-company policy) to see if Mozilla works there too. I would've like to have tested to see if the upload program worked on Mozilla on a truly remote computer.
    So I figured, it must be a IE configuration issue, but darn it!! I began by resetting IE to default settings, but still have the problem, I played around with several different combinations of settings in "Tools"-->"Internet Options...", and I still get the error message. Someone PLEASE HELP ME!!!
    Dunno, if it will help, I've also pasted the upload servlet source code below and the html file that's calling the upload servlet, but you still need the Apache commons file upload API.
    Trust me on this one folks, for some reason it works for Mozilla, but not for IE. With IE, I can at least access web server, and therefore, the html file that calls the upload servlet , so I don't think it's a Tomcat configuration issue (version 5.0). I actually got the code for the file upload servlet from a book relatively new in the market (printed in 2003), and it didn't mention any limitations as far as what browser to use or any browser configuration requirements. I have e-mailed the authors, but they probably get a ton of e-mails...
    Anyone suggestions?
    Meanwhile, I will try to install other free browsers and see if the file upload program works for them too.
    ERROR MESSAGE:
    "HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: C:\TOMCAT\webapps\MyWebApps\files\C:\WINDOWS\Desktop\myfile.zip (The system cannot find the path specified)
         com.jspbook.FileUploadCommons.doPost(FileUploadCommons.java:43)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    root cause
    java.io.FileNotFoundException: C:\TOMCAT\webapps\MyWebApp\files\C:\WINDOWS\Desktop\myfile.zip (The system cannot find the path specified)
         java.io.FileOutputStream.open(Native Method)
         java.io.FileOutputStream.(FileOutputStream.java:176)
         java.io.FileOutputStream.(FileOutputStream.java:131)
         org.apache.commons.fileupload.DefaultFileItem.write(DefaultFileItem.java:392)
         com.jspbook.FileUploadCommons.doPost(FileUploadCommons.java:36)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    note The full stack trace of the root cause is available in the Tomcat logs.
    Apache Tomcat 5.0.16"
    FILE UPLOAD SERVLET source code:
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import org.apache.commons.fileupload.*;
    import java.util.*;
    public class FileUploadCommons extends HttpServlet {
    public void doPost(HttpServletRequest request,
    HttpServletResponse response)
    throws IOException, ServletException {
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    out.println("<html>");
    out.print("File upload success. <a href=\"/MyWebApp/files/");
    out.print("\">Click here to browse through all uploaded ");
    out.println("files.</a><br>");
    ServletContext sc = getServletContext();
    String path = sc.getRealPath("/files");
    org.apache.commons.fileupload.DiskFileUpload fu = new
    org.apache.commons.fileupload.DiskFileUpload();
    fu.setSizeMax(-1);
    fu.setRepositoryPath(path);
    try {
    List l = fu.parseRequest(request);
    Iterator i = l.iterator();
    while (i.hasNext()) {
    FileItem fi = (FileItem)i.next();
    fi.write(new File(path, fi.getName()));
    catch (Exception e) {
    throw new ServletException(e);
    out.println("</html>");
    public void doGet(HttpServletRequest request,
    HttpServletResponse response)
    throws IOException, ServletException {
    doPost(request, response);
    HTML PAGE that calls the upload servlet:
    <html>
    <head>
    <title>Example HTML Form</title>
    </head>
    <body>
    <p>Select a file to upload or browse
    currently uploaded files.</p>
    <form action="http://##.##.##.####/MyWebApp/FileUploadCommons"
    method="post" enctype="multipart/form-data">
    File: <input type="file" name="file"><br>
    <input value="Upload File" type="submit">
    </form>
    </body>
    </html>
    Thanks in advance for any assistance.
    -Dan

    I'm guessing what is happening is that Mozilla tells the servlet "here comes the file myfile.zip". The servlet builds a file name for it:
        String path = sc.getRealPath("/files");
        // path is now C:\TOMCAT\webapps\MyWebApps\files\
        fi.write(new File(path, fi.getName()));
        // append myfile.zip to "path", making it C:\TOMCAT\webapps\MyWebApps\files\myfile.zipIE, however, tells "here comes the file C:\WINDOWS\Desktop\myfile.zip". Now imagine what the path+filename ends up being...
    So what you want to do is something along the lines of (assuming Windoze):
    public static String basename(String filename)
        int slash = filename.lastIndexOf("\\");
        if (slash != -1)
            filename = filename.substring(slash + 1);
        // I think Windows doesn't like /'s either
        int slash = filename.lastIndexOf("/");
        if (slash != -1)
            filename = filename.substring(slash + 1);
        // In case the name is C:foo.txt
        int slash = filename.lastIndexOf(":");
        if (slash != -1)
            filename = filename.substring(slash + 1);
        return filename;
        fi.write(new File(path, basename(fi.getName()));
        ....You can make the file name check more bomb proof if security is an issue. Long file names trying to overflow something in the OS, NUL characters, Unicode, forbidden names in Windos (con, nul, ...), missing file name, ...

  • .mov file from FCP, what's the next step to convert it to play on a dvd?

    I have a project save to a .mov file from FCP and it looks great. It was shot in 720 HD but my dvd won't play .mov files.
    I'd like to either convert it to an .avi or mpeg file now but after trying a few times through QT Pro and even Mpeg Streamclip, the footage is either pixelated or is too choppy to play on my dvd (Samsung HT5500).
    What are the best settings to convert a HD .mov file to play on a dvd so it looks great. What software should I use for this... QT Pro or Mpeg Streamclip?
    TIA,
    Dale

    DVD Studio Pro.
    And you can't make a DVD that is HD; DVDs are standard definition. You can make Blu-ray discs with a Blu-ray burner and Blu-ray player, but you DVDs will only be 720x480.
    Convert in Compressor with a preset for DVD, and import that into DVD Studio Pro.

  • Cant move files from previous saved CD to desktop or anyplace else

    Help -- I cant move files from previous saved CD to desktop or anyplace else
    I don't know when this started but it was two days ago I noticed this. I have changed all the permissions in info to allow me to have read write access to all my hardrives(2) which are both segmented. May have started when I put in the second HD and now I have three systems installed.
    I did erase the com.apple.recentitems.plist -- which did not do anything.
    I was able to send a copy of the file from my CD via iCHat with no problem.
    Originally it would not allow me to move any files even on the harddrives. Not it seem related to the CD's

    this was related to Leopard refusing to give me administrative rights

  • After I import a movie file from the camera memory card, Imovie 10.0.1 acts as if the memory card is empty though I know it isn't.... I can't import that file to iMovie again.. is that the way it worksnow?  Thank you, Filippo

    On IMac 10.9  After I import a movie file from the camera memory card to Imovie 10.0.1 it acts as if the memory card is empty though I know it isn't.... I can't import that file to iMovie again.. is that the way it works now?  Anyone know?  Thanks, Filippo

    I would like to know this too. I imported a lot of files, then Imovie crashed. I went back in and they are not in imovie at all.
    I reconnected the camcorder to import again and though they are still on the camcorder, I no longer see them in the available list of files to import. I'm sure there is some sort of simple setting somewhere that reveals all files even if it thinks they are imported.
    Thanks

  • Cannot delete movie file from iTunes

    After converting movie file via Quicktime and adding it to the iTunes library, I am not able to remove it anymore. If you try to delete it, it crashes iTunes and after that all desktop icons are frozen. The movie does not play in iTunes, you cannot edit its info without crashing iTunes either. Movie plays in preview pane in Finder....
    Is there any other way to remove the file from iTunes?

    Try deleting the file without iTunes running.
    When you next open iTunes it should then be marked as a missing file and you should be able to delete the entry from iTunes.
    Hope this works
    Regards,
    Colin R.

  • I keep having kernel Panics caused when I try to move file from external hd to my mac.

    i keep getting the below panic report when i try to move a movie file from my external hd to my mac. My MacBook Pro runs 10.7.5 the hard drive (HD) is formatter to fat 32 so i can hook it to our xbox. The HD is a 4tb seagate backup + desk media. it is partitioned into 2 two TB  both with fat 32 format. Please help I dont know what to do.
    Interval Since Last Panic Report:  17969872 sec
    Panics Since Last Report:          10
    Anonymous UUID:                    C6F1646E-A185-4CE9-8B6F-546D3AD9BC53
    Wed Feb  4 20:40:32 2015
    panic(cpu 0 caller 0xffffff8000648698): "complete() while dma active"@/SourceCache/xnu/xnu-1699.32.7/iokit/Kernel/IOMemoryDescriptor.cpp:2240
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80920cb9c0 : 0xffffff8000220792
    0xffffff80920cba40 : 0xffffff8000648698
    0xffffff80920cba90 : 0xffffff7f8077ce36
    0xffffff80920cbad0 : 0xffffff7f80774b0b
    0xffffff80920cbb30 : 0xffffff7f808cb95d
    0xffffff80920cbb80 : 0xffffff7f808ccad2
    0xffffff80920cbbd0 : 0xffffff7f80817ea5
    0xffffff80920cbc20 : 0xffffff7f808123a2
    0xffffff80920cbc70 : 0xffffff7f80812b01
    0xffffff80920cbca0 : 0xffffff7f809c5a2d
    0xffffff80920cbd70 : 0xffffff7f80abf7ef
    0xffffff80920cbe00 : 0xffffff7f80abfeec
    0xffffff80920cbe40 : 0xffffff7f80ab5dce
    0xffffff80920cbed0 : 0xffffff7f80ab5fb6
    0xffffff80920cbef0 : 0xffffff800063d4d6
    0xffffff80920cbf30 : 0xffffff800063c250
    0xffffff80920cbf70 : 0xffffff800063c0f4
    0xffffff80920cbfb0 : 0xffffff8000820057
          Kernel Extensions in backtrace:
             com.apple.iokit.IOStorageFamily(1.7.2)[40D4AB21-F11E-3C6C-8883-3554F93A251F]@0x ffffff7f80770000->0xffffff7f80794fff
             com.apple.iokit.IOUSBFamily(5.1)[6C8D52C2-CD1D-3DAF-9942-A0AF681D6BBC]@0xffffff 7f809c0000->0xffffff7f80a15fff
                dependency: com.apple.iokit.IOPCIFamily(2.7)[5C23D598-58B2-3204-BC03-BC3C0F00BD32]@0xffffff 7f80849000
             com.apple.driver.AppleUSBXHCI(1.1)[7816EC3D-018B-3E21-9746-55AD82241C03]@0xffff ff7f80aaf000->0xffffff7f80ac3fff
                dependency: com.apple.iokit.IOUSBFamily(5.1.0)[6C8D52C2-CD1D-3DAF-9942-A0AF681D6BBC]@0xffff ff7f809c0000
                dependency: com.apple.iokit.IOPCIFamily(2.7)[5C23D598-58B2-3204-BC03-BC3C0F00BD32]@0xffffff 7f80849000
             com.apple.iokit.IOSCSIArchitectureModelFamily(3.2.1)[5948254C-CBA8-34E3-B5B4-57 5E7D4C7BD1]@0xffffff7f8080e000->0xffffff7f80838fff
             com.apple.iokit.IOSCSIBlockCommandsDevice(3.2.1)[9E8FB189-DF4F-337A-A3C5-8BD172 5C205C]@0xffffff7f808cb000->0xffffff7f808dffff
                dependency: com.apple.iokit.IOSCSIArchitectureModelFamily(3.2.1)[5948254C-CBA8-34E3-B5B4-57 5E7D4C7BD1]@0xffffff7f8080e000
                dependency: com.apple.iokit.IOStorageFamily(1.7.2)[40D4AB21-F11E-3C6C-8883-3554F93A251F]@0x ffffff7f80770000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    11G63
    Kernel version:
    Darwin Kernel Version 11.4.2: Thu Aug 23 16:25:48 PDT 2012; root:xnu-1699.32.7~1/RELEASE_X86_64
    Kernel UUID: FF3BB088-60A4-349C-92EA-CA649C698CE5
    System model name: MacBookPro9,2 (Mac-6F01561E16C75D06)
    System uptime in nanoseconds: 268173437187
    last loaded kext at 44259693880: com.apple.filesystems.msdosfs 1.7.1 (addr 0xffffff7f80874000, size 57344)
    last unloaded kext at 153413605524: com.apple.iokit.IOUSBMassStorageClass 3.0.3 (addr 0xffffff7f80a16000, size 69632)
    loaded kexts:
    com.bresink.driver.BRESINKx86Monitoring 8.0
    at.obdev.nke.LittleSnitch 2.4.4
    com.apple.filesystems.msdosfs 1.7.1
    com.apple.driver.AppleMikeyHIDDriver 122
    com.apple.driver.AGPM 100.12.75
    com.apple.driver.X86PlatformShim 5.0.0d8
    com.apple.driver.AudioAUUC 1.59
    com.apple.driver.AppleHDA 2.2.5a5
    com.apple.driver.AppleMikeyDriver 2.2.5a5
    com.apple.driver.AppleUpstreamUserClient 3.5.9
    com.apple.driver.AppleIntelHD4000Graphics 7.3.2
    com.apple.driver.SMCMotionSensor 3.0.2d6
    com.apple.filesystems.autofs 3.0
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.driver.AppleSMCLMU 2.0.1d2
    com.apple.iokit.IOBluetoothSerialManager 4.0.8f17
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AudioIPCDriver 1.2.3
    com.apple.driver.ApplePolicyControl 3.1.33
    com.apple.driver.AppleLPC 1.6.0
    com.apple.driver.AppleBacklight 170.2.2
    com.apple.driver.AppleMCCSControl 1.0.33
    com.apple.driver.AppleIntelFramebufferCapri 7.3.2
    com.apple.driver.AppleSMCPDRC 5.0.0d8
    com.apple.driver.BroadcomUSBBluetoothHCIController 4.0.8f17
    com.apple.driver.AppleUSBTCButtons 227.6
    com.apple.driver.AppleUSBTCKeyboard 227.6
    com.apple.iokit.IOUSBAttachedSCSI 1.0.2
    com.apple.driver.AppleIRController 312
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 33
    com.apple.iokit.SCSITaskUserClient 3.2.1
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCISerialATAPI 2.0.3
    com.apple.iokit.IOAHCIBlockStorage 2.1.0
    com.apple.driver.AppleFWOHCI 4.9.0
    com.apple.driver.AirPort.Brcm4331 561.7.22
    com.apple.driver.AppleUSBHub 5.1.0
    com.apple.iokit.AppleBCM5701Ethernet 3.2.4b8
    com.apple.driver.AppleEFINVRAM 1.6.1
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleAHCIPort 2.3.1
    com.apple.driver.AppleSDXC 1.2.2
    com.apple.driver.AppleUSBEHCI 5.1.0
    com.apple.driver.AppleUSBXHCI 1.1.0
    com.apple.driver.AppleACPIButtons 1.5
    com.apple.driver.AppleRTC 1.5
    com.apple.driver.AppleHPET 1.7
    com.apple.driver.AppleSMBIOS 1.9
    com.apple.driver.AppleACPIEC 1.5
    com.apple.driver.AppleAPIC 1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient 195.0.0
    com.apple.nke.applicationfirewall 3.2.30
    com.apple.security.quarantine 1.4
    com.apple.security.TMSafetyNet 8
    com.apple.driver.AppleIntelCPUPowerManagement 195.0.0
    com.apple.driver.DspFuncLib 2.2.5a5
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSurface 80.0.2
    com.apple.iokit.IOFireWireIP 2.2.5
    com.apple.iokit.IOSerialFamily 10.0.5
    com.apple.driver.AppleHDAController 2.2.5a5
    com.apple.iokit.IOHDAFamily 2.2.5a5
    com.apple.iokit.IOAudioFamily 1.8.6fc18
    com.apple.kext.OSvKernDSPLib 1.3
    com.apple.driver.AppleSMBusPCI 1.0.10d0
    com.apple.driver.AppleGraphicsControl 3.1.33
    com.apple.driver.X86PlatformPlugin 5.1.1d6
    com.apple.driver.AppleSMC 3.1.3d10
    com.apple.driver.AppleBacklightExpert 1.0.4
    com.apple.iokit.IONDRVSupport 2.3.4
    com.apple.driver.AppleSMBusController 1.0.10d0
    com.apple.iokit.IOGraphicsFamily 2.3.4
    com.apple.driver.IOPlatformPluginFamily 5.1.1d6
    com.apple.driver.AppleUSBBluetoothHCIController 4.0.8f17
    com.apple.iokit.IOBluetoothFamily 4.0.8f17
    com.apple.driver.AppleUSBMultitouch 230.5
    com.apple.driver.AppleThunderboltDPInAdapter 1.8.5
    com.apple.driver.AppleThunderboltDPAdapterFamily 1.8.5
    com.apple.driver.AppleThunderboltPCIDownAdapter 1.2.5
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.2.1
    com.apple.iokit.IOUSBHIDDriver 5.0.0
    com.apple.driver.AppleUSBMergeNub 5.1.0
    com.apple.driver.AppleUSBComposite 5.0.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.2.1
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.2.1
    com.apple.driver.AppleThunderboltNHI 1.6.0
    com.apple.iokit.IOThunderboltFamily 2.0.3
    com.apple.iokit.IOFireWireFamily 4.4.8
    com.apple.iokit.IO80211Family 420.3
    com.apple.iokit.IOEthernetAVBController 1.0.1b1
    com.apple.iokit.IONetworkingFamily 2.1
    com.apple.iokit.IOUSBUserClient 5.0.0
    com.apple.iokit.IOAHCIFamily 2.0.8
    com.apple.iokit.IOUSBFamily 5.1.0
    com.apple.driver.AppleEFIRuntime 1.6.1
    com.apple.iokit.IOHIDFamily 1.7.1
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 177.11
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.driver.DiskImages 331.7
    com.apple.iokit.IOStorageFamily 1.7.2
    com.apple.driver.AppleKeyStore 28.18
    com.apple.driver.AppleACPIPlatform 1.5
    com.apple.iokit.IOPCIFamily 2.7
    com.apple.iokit.IOACPIFamily 1.4
    Model: MacBookPro9,2, BootROM MBP91.00D3.B08, 2 processors, Intel Core i5, 2.5 GHz, 4 GB, SMC 2.2f44
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 384 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1600 MHz, 0x80CE, 0x4D34373142353737334448302D434B302020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1600 MHz, 0x80CE, 0x4D34373142353737334448302D434B302020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF5), Broadcom BCM43xx 1.0 (5.106.198.19.22)
    Bluetooth: Version 4.0.8f17, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Wi-Fi 2, AirPort, en1
    Serial ATA Device: APPLE HDD HTS547550A9E384, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: Backup+  Desk, 0x0bc2  (Seagate LLC), 0xab31, 0x14900000 / 1
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1a100000 / 2
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0x1a110000 / 3
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1d100000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0x1d180000 / 3
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x1d182000 / 6
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0252, 0x1d183000 / 5
    USB Device: BRCM20702 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1d181000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821d, 0x1d181300 / 9

    It's likely that the drive is malfunctioning or that there is an internal hardware fault, but to confirm, see below.
    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Just bought a new macbook w/ mtn lion. transferred data from my old macbook over n it created another user name. that's actually good--xcept for music, which i want on my new acct. How do i move files from my "old comp" acct to my new one?

    i just bought a new macbook w/ mtn lion. when i transferred data from my old macbook over, it created another user name (i called it "old computer"). That's actually good--I'm not going to be accessing old files frequently--except for music, which i want on my new user name. How do i move files from my "old comp" account to my new one? Is there a way to easily move large #'s of files, or just one by one? I've googled extensively but can only find instructions for OSX 10.6 and previous, which talks about the "Shared folder," which I can't seem to find.      

    jesster03 wrote:
    i just bought a new macbook w/ mtn lion. when i transferred data from my old macbook over, it created another user name (i called it "old computer"). That's actually good
    That's actually bad. Peruse Pondini's Setup New Mac guide and seriously consider starting over.

  • MOV files from Ipad not playing correctly in 2010 Windows PPT presentation

    I inserted .mov files taken from Ipad 2 into a.ppt on my work PC. I saved these files to the folder containing all of the videos I am showing in the ppt-- the same folder where the .ppt is located as well.  Then I inserted them as I do all videos (I create ppts often for work) -- and  the clips that are horizontal play fine but the vertical ones do not play correctly- audio and video not in sync.  any remedies?  (using ppt 2010, converted files to wmv, didn't work either).   I should add that when I viewed these files on my PC (by just clicking the file) they play fine, but they are not rotated correctly.  This must have been my fault when I took the videos.  However, when I insert them they are rotated correctly but just don't play right - looks like a Japanese movie.    please help!

    Your page code doesn't give instructions to any browser plug-in and uses the out of date "embed" tag:
    embed src="hippiehouseshowreel09.mov" width="460" height="360" hspace="2" align="left"></embed
    The same code is used at all of your other popup windows and Internet Explorer doesn't know what to do (so it does nothing).
    <a class="jive-link-external-small" href="http://">http://developer.apple.com/internet/ieembedprep.html shows the more modern code that works with all browsers.
    http://www.qtbridge.com/pageot/pageot.html free software that can help write perfect code.

  • Unable to view .mov files on Vista 64 bit system:

    I use a MacBook Pro to download videos from a Canon HD camcorder.  These files are saved as *.mov files.  While I can view these files on my MacBook Pro, I cannot import/view them on my Windows based PC, using PRE 8.  I purchased this software because it was supposed to support editing .mov files.  When I try to import a .mov file I get and error "Codec missing or unavailable."  Shouldn't the codec for .mov files be included in PRE 8?  Any ideas on how to solve this issue?

    Thank you for your response.
    I have download the latest version of QT twice, even purchased QT pro, no luck.  I have even re-installed PRE 8.
    I have updated my video drivers and downloaded GSpot and MediaInfo to see what codec's I need.  According to everything I've read and done, PRE 8 should work.  Just as a side note; in QT pro for Windows, I can import .mov files but only the audio plays no video.

  • I cannot open a .mov file from MAC on a PC

    I have a Mac Dual G5 with Mac Os X 10.4.8 and I was making a short HDV movie(only 4Giga) in FCExpress.
    I export the movie in H264 1920 X1080 in the QT Conversion window and save them in a .mov file (with blue QT label).
    After saving I can open and view the movie with the Mac, no problem.
    I make a copy on a DVD for mine friend.
    I will open the movie on his PC but it don't work.
    He had a Pentium Dual 840 3.2 Ghz Window XP Pro service pack 1 and 2, 2wDirectx9 2 giga Ram 256 nVidia Ge Force 6800
    On the PC we install also Quick Time Pro 7.1 for Windows with register number.
    When we activate the .mov file on the PC(.mov file from the Mac) we see the Quick Time window in black or white without image.
    We try many times but we cannot find a solution..
    To day we buy by the Apple Store QT MPEG 2-Playback Component for PC.
    After installation we have every time the same problem, no image in the QT windown.
    What can I do?
    Thanks for assistance
    Rudy
    Pentium   Windows XP Pro   Dell Dimension Dual 840 3.2 Ghz
    Pentium   Windows XP Pro   Dell Dimension Dual 840 3.2 Ghz

    Dear Sir
    I find a solution for the problem.
    What you say is correct, it is a codex problem.
    I download a other program Cineform Aspect HD.199 U$.
    Now I can open easy everyone .mov file on the PC(.mov files from the MAC).
    Mine conclusion: QuickTime Pro for Windows don’t support H264 codex,
    and don’t support any .mov file from the MAC !
    Apple make big publicity on their website for QT Pro 7 for Windowns.
    They say “QT Pro 7 for Windows support H264 codex”.
    I try many days with Apple Support team, they don’t find a solution.
    Good evening and thank you for assistance,
    Rudy

  • Unable to import movie files from iphoto '08 into imovie HD

    I have recently bought a 2008 macbook (2.2 GHz) and have recently downloaded imovie HD in addition to owning iLife '08 due to its extra capabilities. I have found that I am unable to import any of my movie files from my iphoto library folder as it seems to need to open the actual iphoto application before the files can be accessed. In addition, when not using any specific program it would be nice to be able to access my photo/video files within the iphoto folder without iphoto automatically opening as the default viewer.
    Any ideas??!! Thanks.

    ahostmadsen wrote:
    .. and I import AVI video clips directly without converting to .dv, without problems.
    lucky you.. .avi is just a container, no 'format'/codec .. I can show you dozends of .avis, which will NOT import into iMHD6, due to being playback-codecs, not convertable by the underlying Quicktime engine into separte, editable audio+video streams ..
    .. If you convert to .dv, the size just blows up.
    dv is 13GB/h and a codec meant for editing; e.g. it stores every frame (video=30 frams/sec) of a recording, as mpegs usually doesn't do so.. = your Mac has to estimate content, when converting and 'recovering' the content = lossy process.
    iMHD6 is a dv-editor; the mpeg4 feature is only a toy, to spice up iSight recordings.. for sure, the QTengine can convert a lot, but too much conversion (from one lossy codec, e.g. divx, into another, e.g. mp4) means a (dramatic) loss of pic quality..
    my 5€ cents ..

  • How do I move files from one album to another?

    How can I move files from one album to another? And why does itunes split up imported folders?

    Press the Command key while dragging them.
    (58054)

Maybe you are looking for

  • Ipod Nano not showing in my computer or iTunes - have done everything?

    I am running Windows XP Home Edition on a Dell Inspiron 8500. I have done and checked everything including running Windows Installer Cleanup Utility and reinstalling iTunes 8; resetting ipod which works fine; checking IEEE 1394 card. One thing that d

  • How to start I/O tuning

    Hi, How can i tune I/O? Kindly, anyone can explain I/O tuning step wise.

  • IPad II freezing in iTunes - NOT during synch

    I'm on an iPad 2 running IOS 5.0.1, the most current, update and iTunes is completely frozen on a single screen. It's just a regular screen in iTunes. I am not in the middle of a synch. No amount of restarting or closing out of other applications is

  • I get an SMTP Transient Error 501: attribute too long

    I have an email programme built using PL/SQL. It fails when the email is over 6K bytes long. It fails when the line "utl_smtp.close_data(v_connection);" is executed. The following message/s returned :- "SMTP Transient error: 501Attribute too long" I

  • No idea what to do with my iSight...

    Alright, I'm a bit at my whits end with my iSight, and I would really love some help. One, seemingly random day, it just stopped working. The green light comes on, and when I look under utilities, its apparently connected. But when I enter photobooth