How do I deal with damaged files that aren't damaged?

I find when trying to download pdf files that quite often, Firefox says "the file is damaged and could not be repaired" or something like that - but I know there is nothing wrong with the file because when I used Internet Explorer, it works!
== Ever since I started using Firefox

kstp,
the .thm file is simply a jpeg thumbnail version of your movie which you could probably view by changing the name from .thm to .jpeg (not entirely sure about that). Your audio problem is more likely caused by iMovie not having the codec needed to play the audio format encoded into your mov container. Maybe someone here more familiar with iMovie can tell you what audio formats work within iMovie, and you can set that in your camera to prevent this problem.
Now, worst case scenario is that you'll probably have to extract the audio and convert it to something that works in iMovie. You can extract the audio from within iMovie from the advanced options menu. You can also use a free app called FFMpegX to extract and convert it to something else. Hopefully though, someone here will have a more convenient solution for you.

Similar Messages

  • How i can deal with oracle file by using php api

    how I can deal with oracle file by using php api ?

    What has this to do with Reflections and Reference Objects?

  • How do I deal with Tokenized strings that are blank?

    I'm writing a little application that writes data to a file. It sends data to the file as a "|" delineated string. Then I use tokenizer to break up the string as follows:
    try {
                                  String searchtext = SearchTxt.getText();
                                  String tokenString = "";
                                  String[] returnData = new String[8];
                                  File filedata = new File("bigbase.txt");
                                  BufferedReader in = new BufferedReader(
                                  new FileReader(filedata));
                                  String line = in.readLine();
                                  while ( line != null) {
                                  Pattern pat = Pattern.compile(searchtext);
                                  Matcher mat = pat.matcher(line);
                                       if ( mat.find() ) {
                                       StringTokenizer t = new StringTokenizer(line, "|");
                                       maintextArea.setText("");
                                       int count = 0;
                                            while (t.hasMoreTokens()) {
                                                 tokenString = t.nextToken();
                                                 returnData[count] = tokenString;
                                                 maintextArea.append(tokenString + " ");
                                                 System.out.println(tokenString);
    etc etc etc
    The problem is that when the tokens are blank, I get an endless loop when I try to print out the data on that last line. How do I deal with Tokens that are blank so they don't endlessly loop my output?
    Thanks
    MrThis

    Most people would probably tell you to use:
    String.split(...);
    But I'm not most people and I wrote this class before regex support was added to the String class which is based on StringTokenizer but supports empty tokens:
    http://www.discoverteenergy.com/files/SimpleTokenizer.java

  • How do I deal with .thm files and iMovie?

    I've been using my digital camera to take short movies. When I download them onto my computer they show up as a file with a name like: MOV02161.MOV and another with an identical name but the extension .THM. When I double-click on the .mov file it opens in Quicktime and plays back no problem. When I import the .mov file into iMovie it plays without sound. I've noticed that the .thm file seems to be crucial to whether there is sound or not (I tried trashing one but then the Quicktime video played without sound!) but I can't import the .thm files into iMovie. Do I have to convert them to some other format? How do I do that?

    kstp,
    the .thm file is simply a jpeg thumbnail version of your movie which you could probably view by changing the name from .thm to .jpeg (not entirely sure about that). Your audio problem is more likely caused by iMovie not having the codec needed to play the audio format encoded into your mov container. Maybe someone here more familiar with iMovie can tell you what audio formats work within iMovie, and you can set that in your camera to prevent this problem.
    Now, worst case scenario is that you'll probably have to extract the audio and convert it to something that works in iMovie. You can extract the audio from within iMovie from the advanced options menu. You can also use a free app called FFMpegX to extract and convert it to something else. Hopefully though, someone here will have a more convenient solution for you.

  • How do you deal with gigantic file sizes?

    Hi all --
    I am shooting a documentary right now and are having some problems exporting the project in FCE. Here's my work flow:
    I capture footage from my Canon HF10 (1440x1080) with iMovie. Next, I import the folder with all MOV files into FCE into a sequence and edit the movie within FCE. Works like a charm! However, when I export to a high-def movie, a 20GB file is created from a 2-min clip. I intend to edit a feature-length movie, which means that a *800GB file* will be created from 80 min of footage! Since I have two FireWire800 Terrabyte hard drives (one for capturing+editing, the other as a backup), it's not a major problem. However, if I want to downsize the video with the Quicktime conversion, the 3-min clip (20 GB) takes about 4 hrs on my 2.33 GHz Intel DuelCore processor with 3GB RAM. If I extrapolate this to the full length of the final feature-length movie, it will take about *160 hrs to convert the movie!* Even if I'd buy the fastest quad-core processor machine, it would still take days!
    Am I doing something wrong here?
    What's the most economic work flow to edit/export a HD movie in FCE?
    Thanks a lot for your help!

    Unfortunately, I don't have an answer for you, but as a point of reference... I just started working with HD on my Canon HV30. I just rendered a 1m46s clip that included some stills at the end with some keyframing. I did File>Export>QuickTime Movie and it rendered in about 7 minutes and resulted in a 1.26GB file.

  • How do I deal with a photo that is over exposed?

    I recently took some photos with wrong setting on camera, the resut was two over exposed photos. How can I get them to appear as normal?
    all help and advise will be much appreciated, they were at my daughter's graduation.

    Here's another appraoch. I converted to Lab color and used curves to add contrast to the shadows (man's suit) and upper mid-tones (faces) in the Lightness channel, and increased the saturation by steepening the a and b channels.
    Still needs a bit of work on the color, though.

  • How do you deal with API calls that do not exist in some versions of OS X

    For example, I have been writing this app to manage the ipfw (Darwin's side of it). I have been confused about a lot of things because the command could do more then the API calls.
    As it turns out, there is another firewall API ip_fw2 which does all this stuff I have been trying to figure out.
    The problem is that OS X 10.3 does not have ip_fw2. I could check the versions of the OS and do some if (OSX > 10.3) then do ip_fw2 else ip_fw.
    The question is, the code for ip_fw2 is in my binary and even if I never call it, will the loader have a problem on 10.3? I know in some cases on windows having an API call in your code that is not even run, will prevent the exe from even loading. There is this lazy linking thing I think you can do to work around that. Can you do that on OS X and what compiler options do I need?

    TheSilverHammer wrote:
    Thats some nice info, but what if it is not a "framework"? These are basic Darwin API calls, not Apple Frameworks.
    Last sentence on the page:
    "If you need to link to a library instead of a framework, you can use the -weak_library linker command instead of -weak_framework."
    TheSilverHammer wrote:
    I did not define printf so I can't weak link it.
    This doesn't make any sense. You didn't define any of the symbols in any of the frameworks or libraries Apple provides--that does not inhibit your ability to link against them, weakly or otherwise.

  • How does one deal with transparency in a placed file in InDesign?

    I suppose this may seem elementary, but I'm relatively new to it so here goes:
    First off, my print shop says that placed images should be in EPS format. I'm creating my files in Illustrator and some of them use a gradient mask to fade an object away. When saved as an EPS, the gradient mask shows as a white box instead of fading into the background. When I copy/paste my Illustrator image into a new Photoshop file, save it as a PSD, bring that PSD into Illustrator and save it as an EPS, the whole file is in a white box.
    Example. I want those aisle markers to not be in white boxes.
    http://i.imgur.com/lZjtu.jpg
    How does one deal with transparency in a placed image in InDesign?
    Thanks.

    If possible, one finds a new printer who can handle your files properly and doesn't insist on .eps.
    What format are you delivering to the Printer? If it's anything other than PDF (and that's at their request) all the more reason to reread the first sentence. Why on earth are you moving things from Illustrator to Photoshop and back to Illustrator? Either one of those will save as .eps (ugh), though you need to use a clipping path for transparent areas coming out of photoshop (don't really know how Illy handles it when you say to save .eps with transparent background), but you are FAR better off with either native .AI or .PSD, both of which support transparencey, unlike .eps.If yo are delivering PDF, as you should be, it makes no difference to the printer what format the placed content uses (and it shouldn't matter to him even with native files unless he's hopelessly stuck in the 90s).
    In any event, when importing from Illustrator, make sure to show the import options and check the transparent background box.

  • HT1420 I purchased new computers twice within the same year because they old were damaged in a storm.  However, I can't deauthorize/reauthorize the new computers.  How do I deal with this situation.

    I purchased new computers twice within the same year because they were damaged in a storm.  However, I can't deauthorize/reauthorize the new computers because it has been less than a year.  How do I deal with this situation?

    BrianBlaze wrote:
    I have 3 Computers at home, I am studying computer sciences and am constantly rerformatting my computers, installing windows and linux over and over again.... EVERYTIME I reformat I have to authorize the same computer and so it takes up one of my 5 authorized computers... Anyways after deauthorizing all my computers in september I was not aware I couldn't do it for another year (why does APPLE assume these stupid tactics prevent piracy). Anywysw I need to reach apple and have them make it so I can do it again. I had a similar problem with Playstation and when I called them they fixed it for me... even windows (which you can only have one serial per computer) made it easy because all I had to do was call them and they fixed it for me. Now I need APPLE to do the same and this is the only place I could see to actually say what is going on... I can't believe I have to do this with my iPhone... I wanted an mp3 player and a phone together and if I can't put new songs until September 20, 2012 I am going to freak out!
    HELP!
    Brian
    Try this link: http://www.howtogeek.com/howto/23974/beginner-deauthorize-all-computers-associat ed-with-your-itunes-account/

  • It says that "there was a problem connecting to the server". What's wrong with this, and how can I deal with this problem?

    I just got my new iPad Mini2, and when I choose "sign in with your apple ID", it says that "there was a problem connecting to the server". What's wrong with this, and how can I deal with this problem?

    1. Turn router off for 30 seconds and on again
    2. Settings>General>Reset>Reset Network Settings

  • HT5621 I have moved permanently from the US to live in the UK. when I try to download a UK app I am often told that I cannot use a UK Apple sstore, only a US store. I need to access various UK stores how can I deal with this?

    I have moved permanently from the US to live in the UK. when I try to download a UK app I am often told that I cannot use a UK Apple sstore, only a US store. I need to access various UK stores how can I deal with this?

    Try here
    http://support.apple.com/kb/HT1311
    when you have UK Cards etc best to change as well

  • How to deal with Memory Leaks, that are caused by Binding

    Hi, I recently noticed (huge?) memory leaks in my application and suspect bindings to be the cause of all the evil.
    I made a little test case, which confirms my suspicion:
    import javafx.application.Application;
    import javafx.beans.property.SimpleStringProperty;
    import javafx.beans.property.StringProperty;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.layout.VBox;
    import javafx.stage.Stage;
    public class TestAppMemoryLeak extends Application {
        public static void main(String[] args) {
            launch(args);
        @Override
        public void start(Stage stage) throws Exception {
            VBox root = new VBox();
            Button button = null;
            for (int i = 0; i < 100000; i++) {
                button = new Button();
                button.textProperty().bind(text);
                button.textProperty().unbind(); // if you don't call this, you can notice the increased memory of the java process.
            root.getChildren().add(button);
            Scene scene = new Scene(root);
            stage.setScene(scene);
            stage.show();
        private StringProperty text = new SimpleStringProperty("test");
    }Now the problem is, HOW can I know, when a variable is no longer needed or overwritten by a new instance.
    Just an example:
    I have a ListView with a Cell Factory. In the updateItem method, I add a ContextMenu. The textProperty of each MenuItem is bound to a kind of global property, like in the example above. I have to do it in the updateItem method, since the ContextMenu differs depending on the item.
    So every time the updateItem method is called a new ContextMenu is created, which binds some properties, but the old context menus remain in memory.
    I guess there could be many more example.
    How can I deal with it?

    I've dealt with this situation and created a Jira issue for it, but I also have a work-around that is a bit unwieldy but works. I'll share it with you.
    The bug that deals with this (in part atleast): http://javafx-jira.kenai.com/browse/RT-20616
    The solution is to use weak invalidation listeners, however they are a bit of a pain to use as you cannot do it with something simplistic as "bindWeakly"... and you need to keep a reference around to the wrapped listener otherwise it will just get garbage collected immediately (as it is only weakly referenced). Some very odd bugs can surface if weak listeners disappear randomly because you forgot to reference them :)
    Anyway, see this code below, it shows you some code that is called from a TreeCell's updateItem method (I've wrapped it in some more layers in my program, but it is essentially the same as an updateItem method):
    public class EpisodeCell extends DuoLineCell implements MediaNodeCell {
      private final WeakBinder binder = new WeakBinder();
      @Override
      public void configureCell(MediaNode mediaNode) {
        MediaItem item = mediaNode.getMediaItem();
        StringBinding episodeRange = MapBindings.selectString(mediaNode.dataMapProperty(), Episode.class, "episodeRange");
        binder.unbindAll();
        binder.bind(titleProperty(), MapBindings.selectString(mediaNode.dataMapProperty(), Media.class, "title"));
        binder.bind(ratingProperty(), MapBindings.selectDouble(mediaNode.dataMapProperty(), Media.class, "rating").divide(10));
        binder.bind(extraInfoProperty(), Bindings.when(episodeRange.isNull()).then(new SimpleStringProperty("Special")).otherwise(episodeRange));
        binder.bind(viewedProperty(), item.viewedProperty());
        subtitleProperty().set("");
    }This code makes use of a class called WeakBinder -- it is a helper class that can make Weak bindings and can keep track of them. When you call unbindAll() on it, all of the bindings it created before are released immediately (although they will also disappear when the Cell itself is garbage collected, which is possible because it only makes weak references).
    I've tested this extensively and it solves the problem of Cells keeping references to objects with much longer life cycles (in my case, the MediaNode passed in has a longer lifecycle than the cells and so it is important to bind weakly to it). Before this would create huge memory leaks (crashing my program within a minute if you kept refreshing the Tree)... now it survives hours atleast and the Heap usage stays in a fixed range which means it is correctly able to collect all garbage).
    The code for WeakBinder is below (you can consider it public domain, so use it as you see fit, or write your own):
    package hs.mediasystem.util;
    import java.util.ArrayList;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    import javafx.beans.InvalidationListener;
    import javafx.beans.Observable;
    import javafx.beans.WeakInvalidationListener;
    import javafx.beans.property.Property;
    import javafx.beans.value.ObservableValue;
    public class WeakBinder {
      private final List<Object> hardRefs = new ArrayList<>();
      private final Map<ObservableValue<?>, WeakInvalidationListener> listeners = new HashMap<>();
      public void unbindAll() {
        for(ObservableValue<?> observableValue : listeners.keySet()) {
          observableValue.removeListener(listeners.get(observableValue));
        hardRefs.clear();
        listeners.clear();
      public <T> void bind(final Property<T> property, final ObservableValue<? extends T> dest) {
        InvalidationListener invalidationListener = new InvalidationListener() {
          @Override
          public void invalidated(Observable observable) {
            property.setValue(dest.getValue());
        WeakInvalidationListener weakInvalidationListener = new WeakInvalidationListener(invalidationListener);
        listeners.put(dest, weakInvalidationListener);
        dest.addListener(weakInvalidationListener);
        property.setValue(dest.getValue());
        hardRefs.add(dest);
        hardRefs.add(invalidationListener);
    }Let me know if this solves your problem.

  • Has anyone experienced problems with Mackeeper? I did not complete downloading this software. Yet, occasionally when on the internet, I will have the MacKeeper multi-colored circle replace my pointer. How do you deal with this?

    Has anyone experienced problems with Mackeeper? I did not complete downloading this software. Yet, occasionally when on the internet, I will have the MacKeeper multi-colored circle replace my pointer. How do you deal with this?

    Welcome to Apple Support Communities
    Don't download MacKeeper. Users complain about this app and it damages OS X. Also, Mac OS X knows how to take care of itself, so you don't need any other cleaning application that may damage OS X. See > https://discussions.apple.com/docs/DOC-3691

  • How do I deal with JPEGs of wildly various sizes for my HD Project?

    My project comprises HD DVCPRO Interviews.  Within those Interviews I'm trying to integrate JPEGs that were given to me on an external drive, but their Frame Sizes vary from 159x180 to 12648x9575 !  How do I deal with a 4584x5928 .peg for instance?  Does anybody have any idea?  I tried MPEG Streamclip_Export Frame_720x480 and it comes out crushed horizontally.  What dimensions would you recommend? Thank you very much for any suggestion.

    When you add the anything to the timeline, they "adopt" the sequence settings.  The clips themselves won't change at all...but when added to the timeline, they "render" to the sequence settings. So the stills will remain with the dimensions they have, but when rendered, the portion you added to the timeline will adopt the timeline settings.
    No need to buy Photoshop. PREVIEW is free, part of the apps that come with your computer, and can resize any picture file.  No need to get GIMP. 
    Yes, resize all stills to under 4000 pixels BEFORE you import. FCP will have issues with anything over 4000 pixels. 
    >2)  How do you calculate the other Dimension to go with 3800?
    No idea what you mean.  Just use Preview...in the TOOLS menu use ADJUST SIZE, and make sure that the SCALE PROPORTIONATLY is checked and when you adjust one number, the other will scale to maintain the same dimensions.

  • How do I deal with constant "error loading content" messages?

    I'm constantly seeing error messages on my Apple TV (2nd gen) on content I easily watch on my other iDevices. What gives? This thing is rapidly becoming a vy expensive paper weight. Possibly the worst Apple product I've yet purchased. Am I alone in this?  What can I do?

    You cannot connect to TC using USB.
    Plug the TC into the computer using ethernet.
    Press and hold the reset button on the TC for about 10sec.. until front led rapidly flashes.. release it.
    Open the airport utility and make sure you can locate the TC. Check the disk page that the disk started up without errors.
    When you say
    Sodrawi wrote:
    How do I deal with the error message at my Time Capsule saying "There is a problem to connect to server xxxx-Time-Capsule.local."
    I am guessing you mean Time Machine.
    If TM still cannot find the TC disk.. reset TM and redo the setup.
    Read A4 here.
    http://pondini.org/TM/Troubleshooting.html

Maybe you are looking for

  • Serial number not working, not disk doesn't work (mac copy)

    I've just brought a new Mac Mini installed my Photoshop CS3 onto it. When I opened the application my serial number wouldn't work because I've used it too many times. My last computer crashed, so I can't take Photoshop off it. I followed a tutorial w

  • Error message when trying to download obee

    HI, I just created a workspace and wanted to test obee installation before sendinf URL to my customer When I go to client access : https://beehiveonline.oracle.com/External_02.html and click "Download and execute Obee installer" I receive the followi

  • When I click on the "+" tab a new window does not open. Why?

    Before today, when I clicked the "+" tab a new tab (window) opened. Now it does not. What changed? I'm operating Firefox 3.5.3 -- Because I want the Google Toolbar. Using Windows 7 on a Dell laptop.

  • Resize jtable column width

    I am trying implement a utility in JTable by which when a person clicks on the column header, the whole column should resize according to the cell which has lengthiest data. If you have seen this in MS Excel where by clicking on the column this happe

  • Idoc Scenario Partner type not LS

    Hi experts , we have gone through  https://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/c09b775e-e56e-2910-1187-d8eba09c7a4a&overridelayout=true for idoc scenario where idoc partner type is not a logical system .Now we are working on case2 scenari