How many images can QT handle in an image sequence?

I want to make an image sequence of 6000 jpg-files. I've got an OSStatus error -8969.
Whats wrong?
mayby 6000 files are a bit to much? does anybody has experiences with handling many files? I've got  hundreds of maps with 14000 files. I want them all as image sequences. What's the best solution?

Ten years ago I tested and used 67,000 files in a sequence and it imported into QuickTime in under 4 minutes.
That error code mentions a bad codec. Are you sure all your files are .jpg? No RAW images mixed in?

Similar Messages

  • How many pages can Muse handle?

    How many pages and/or how big of a site can Muse handle?
    Thanks,
    Roddy

    Muse can handle pretty big sites but it also depends on what your computer can handle. The program will start to chug with a lot of pages. If you want to make really big sites you can split them up in different Muse files and manage them that way. I also find it easier to manage if you split them up.

  • How many pages can iWeb handle?

    I'm planning to do a web project that will have hundreds of pages with links to one another. Is iWeb able to handle that kind of thing, or will I need to buy something like Dreamweaver? Thank you.

    If you decide to use iWeb I suggest you don't put all the pages in one site. That site will get very large, take a long time to load in iWeb and really cause problems if you have to fully republish a number of pages instead of just the changed. You would have to republish the entire site.
    If you go that route separate pages into separate sites and link them together. There's a way to do that thru the navbar. It can be done but might not be as effective as Dreamweaver as Wyodor described.
    OT

  • How many photos can iPhoto handle?

    We have close to 26,000 photos in our 2011 iPhoto library (we create a new library each year and use iPhoto Manager to switch between them. This helps us keep our personal and professional photos separate, and it also helps us archive older data).
    26,000 photos seems like a lot to me, but I can't find anywhere the maximum or recommended number of photos. At what point do we need to look at using a professional product (like Aperture or Lightroom) to manage our photos?
    Thanks.
    Eric

    250,000 images per Library. Put it this way, you need to migrate to Aperture when you want the additional features.
    Personally, I have just short of 40k images in my main Library. I’ve seen reports on here from folks with in excess of 130,000
    Regards
    TD

  • How many videos can Keynote handle?

    I want to do a presentation using a lot of video clips -- MOVs at 1280 x 720.
    The idea is to have one clip per slide... perhaps about 12-15.
    We want to do a presentation where we have control over clicking forward to the next video clip, with possible loops of specific videos along the way.
    Anyone know if Keynote is capable of handling this?

    The only thing I am not sure of is the video looping (if you're meaning a video restarting after it finishes).  You could have multiple copies of the same video on one slide and loop it that way, or sew multiple copies of the movie in iMovie before adding it to Keynote.  You should then be able to move to another slide just by clicking, forcing the video to end.
    But Keynote is for sure capable of handling a large load of videos as I use the software quite frequently to display student work (up to over 100 slides of videos at one point) without problems.

  • How many cards can Address Book Handle?

    Hey - i have 2,484 and growing day by day - and I am afraid that it is approaching the limit. How many does everyone else have? How many cards can it handle without acting weird? Does anyone have like 10 or 20,000?
    Any info would help -thanks!

    Hi ...
    Eight >  Apple Pay is limited to 8 credit cards at any one time

  • Offline updates mechanism: how many times can you use it before corrupting the image(wim)?

    Hi,
    As title mentions: "how many times can you use sccm 2012 offline updates for the wim file before corrupting the image(wim)"?
    J.
    Jan Hoedt

    In my experience the offline servicing feature is only OK and too unreliable for production.
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

  • How many images per sec can I get from ImageIO.read(url) ??????

    Hello,
    In my program I read images from a url...I'm wondering how many images I can get with ImageIO.read(url) per second..
    Hereby is the code that I'm using:
    import java.awt.*; //Contains all of the classes for creating user interfaces and for painting graphics and images
    import java.awt.event.*;//Provides interfaces and classes for dealing with different types of events fired by AWT components
    import java.awt.image.*;//Provides classes for creating and modifying images
    import java.io.*;//Provides for system input and output through data streams, serialization and the file system
    import java.net.URL;
    import javax.imageio.*;//The main package of the Java Image I/O API.
    import javax.swing.*;//Provides a set of "lightweight" (all-Java language) components that, to the maximum degree possible, work the same on all platforms.
    import java.text.*;
    import java.text.SimpleDateFormat;
    import java.util.Date;
    public class getPic extends Component{
    private BufferedImage img;
        static int n=0;
        private URL url;
        private DateFormat dateFormat;
        private Date date;
        private String s;
        private String str1= ".jpeg";
        private String str2="C:\\Users\\";
        private String str3;
        private String str4;
          public getPic() {
         try {
                  url = new URL("http://"); //a url that gives a real-time image
                  img = ImageIO.read(url);
                } catch (IOException e) {
               System.err.println("Unable to read file");
    public void savePic(){
    try{
    n++;
    str3=str2.concat(Integer.toString(n-1));
                        str4=str3.concat(str1);
                        ImageIO.write(img, "jpeg" , new File(str4));
                    } catch(IOException e) {
                      System.err.println("Unable to output results");
    @Override
        public Dimension getPreferredSize() {
            if (img == null) {
               return new Dimension(100,100);
            } else {
               return new Dimension(img.getWidth(), img.getHeight());
        @Override
          public void paint(Graphics g) {  //http://java.sun.com/j2se/1.4.2/docs/api/java/awt/Paint.html
            g.drawImage(img, 10, 10, null);//http://java.sun.com/j2se/1.4.2/docs/api/java/awt/Graphics.html
        public static void main(String[] args) throws IOException {
           JFrame f = new JFrame(" Image without processing!!");
           f.addWindowListener(new WindowAdapter(){//http://java.sun.com/j2se/1.4.2/docs/api/java/awt/event/WindowListener.html
                @Override
                    public void windowClosing(WindowEvent e) {
                        System.exit(0);
        int i=0;
        for( ; ; ){
            i++;
            getPic pi = new getPic();
            pi.savePic();
            f.add(pi);
            f.pack();  //Causes this Window to be sized to fit the preferred size and layouts of its subcomponents.
            f.setVisible(true);
         try
            Thread.sleep(1000);
            }catch (InterruptedException ie)
            System.out.println(ie.getMessage());
    }Thank you in advance for your answers
    Joan

    Finally I solved my problem(getting as many images as possible from a url infinitely) using the above code:
    import java.net.*;
    import java.io.*;
    public class UserApplication {
        private static int n=0;
        String url;
      public void UserApplication(){
        public static void main(String[] args) throws Exception {
            UserApplication app= new UserApplication();
            for(;;){
            app.urlStr();
        private void urlStr(){
            try{
                url= "http://mplamplampla/frame.php/";
                HttpURLConnection con=(HttpURLConnection) ((new URL(url).openConnection()));
                BufferedOutputStream out = new BufferedOutputStream( new FileOutputStream("C:\\Users\\mpla\\Desktop\\" + n + ".jpeg"));
                con.setDoInput(true);
                con.setDoOutput(false);
                con.setRequestMethod("GET");
                BufferedInputStream in = new BufferedInputStream(con.getInputStream());
                int bt = 0;
                byte[] buffer = new byte[4096];
                while ((bt = in.read(buffer, 0, 4096)) > -1) {
                  out.write(buffer, 0, bt);
                in.close();
                out.close();
                System.out.println("Image " + n + " saved");
                n++;
                } catch (Exception e) {e.printStackTrace();}
    }

  • How many images can iPhoto 2.01 hold?

    How many images can iPhoto 2.01 hold? What's the maximum.
    And why does iPhoto occassionally crash when dragging folders of images into the Album list area?
    thanks,
    Hairfarmer

    I have 70,000 RAW images arranged in directories by year/day.  The only thing slow about it is during catalog backup. When first starting LR it takes a couple of minutes to enumerate the dates with photo counts, but that occurs in the background.  I detect no database related slowness while editing or performing random accesses and searches.  I have seen no difference in the above after having upgraded to V4.
    The only slowness that I find annoying has nothing to do with the database.  It is after a certain number of spot removals of varying sizes. The larger and/or more varied the spot size tends to accelerate this.  At some point it starts disk thrashing and becomes impossible to work with (I have to back up to a history step when it was running OK, which can take several minutes).  When this occurs the task manager shows a high rate of page faults, meaning it is swapping out stuff to disk (even though I have plenty of unused ram).  This suggests a problem with the compiler, but that is just an wild educated guess.

  • How many images can LR4 catalog hold?

    I have been using Lightroom since version 1, it is my main editing software. LR4 is brilliant, however I it seems to run much slower then LR3 especially in the print module. I'm thinking this maybe due to the size of my catalog. How many images can a catelog hold?
    Many thanks
    RP

    I have 70,000 RAW images arranged in directories by year/day.  The only thing slow about it is during catalog backup. When first starting LR it takes a couple of minutes to enumerate the dates with photo counts, but that occurs in the background.  I detect no database related slowness while editing or performing random accesses and searches.  I have seen no difference in the above after having upgraded to V4.
    The only slowness that I find annoying has nothing to do with the database.  It is after a certain number of spot removals of varying sizes. The larger and/or more varied the spot size tends to accelerate this.  At some point it starts disk thrashing and becomes impossible to work with (I have to back up to a history step when it was running OK, which can take several minutes).  When this occurs the task manager shows a high rate of page faults, meaning it is swapping out stuff to disk (even though I have plenty of unused ram).  This suggests a problem with the compiler, but that is just an wild educated guess.

  • How many clients can the time capsule handle?

    I'm trying to research how many clients can be accomodated by the time capsule - anyone know?

    Welcome to the Apple Support Communities
    You can connect 50 devices and computer wirelessly to the Time Capsule, but you can connect more through Ethernet

  • HT4722 How many computers can you install Final Cut on

    How many computers can you install Final Cut on with one license or purchase?

    This is an excerpt from the FCPX license, available here.
    http://images.apple.com/legal/sla/docs/FinalCutPro.pdf
    2. Permitted License Uses and Restrictions.
    A. Mac App Store License. Subject to the terms and conditions of this License and as permitted by the Mac App Store Product Usage Rules set forth in the App Store Terms and Conditions (http:// www.apple.com/legal/itunes/ww/) (“Usage Rules”), you are granted a limited, non-transferable, non- exclusive license:
    to download, install, use and run for personal, non-commercial use, one (1) copy of the Apple Software directly on each Apple-branded computer running OS X (“Mac Computer”) that you own or control; and
    (ii) if you are a commercial enterprise or educational institution, to download, install, use and run one (1) copy of the Apple Software for use either: (a) by a single individual on each of the Mac Computer(s) that you own or control, or (b) by multiple individuals on a single shared Mac
    Computer that you own or control. For example, a single employee may use the Apple Software on both the employee’s desktop Mac Computer and laptop Mac Computer, or multiple students may serially use the Apple Software on a single Mac Computer located at a resource center or library.

  • How many times can you install Lightroom 5? My problem is that I have saved my programs on C. To I have more space, I want to save my programs now on E. Can I now uninstall Lightroom and reinstall from C to E? Can I use the same license code as the first

    Please help!!
    How many times can you install Lightroom 5? My problem is that I have saved my programs on C. To I have more space, I want to save my programs now on E. Can I now uninstall Lightroom and reinstall from C to E? Can I use the same license code as the first installation?

    Thank you for your answers, it helps me a lot.
    But sorry for my ignorance. I understand how you mean it, but I don't know how to do it. I'm scared to lose the settings/edits of the images.

  • How many computers can I install logic express 9?

    How many computers can I install Logic 9 on?

    See: http://images.apple.com/legal/sla/docs/logicexpress.pdf
    2 computers - one desktop and one laptop and not running at the same time.

  • How many webpages can I create?

    How many different webpages can I create with iWeb? I just created a site to show friends a slide show from a recent trip, but I need to create another webpage that will have video on it. It would be a totally different subject matter. I do have a .MAC account and not sure if I need to do anything with that so I can have more webpages.
    I guess what I am saying is that I am going to need different URL's for the webpages I am going to need to create and want to know how many you can have or create using iWeb.

    Well let's see if we can sort this out.
    Hmmmmm that sounds like a lot of duplicating domain files and putting them in folders yada yada yada.
    "yada yada yada" aside, you can't appreciate what you don't understand. Get a few sites created in iWeb, all sitting in the same Domain file, and I guarantee you will start to get a handle on it.
    I don't know why there isn't a way you can give your newly created website a title and then iWeb uses that title as a NEW URL to go under your domain name.
    You can. And iWeb does. If you are hosting with .Mac your url will correspond with the name of your site. (web.mac.com/username/iWeb/nameofsite)
    In iWeb it seems like I can only add 1 video per page!
    Probably better if you don't embed a bunch of video in a single web page; the page will take forever and a day to load. Find a frame in the video that best represents the video and take a screen shot of it. Save this shot as a jpg and then place it in the page. Now enable it as a hyperlink using Inspector, and then link to the video file. iWeb will upload the file upon publishing and the plug-in will take over from there for visitors.
    Should I just try to make my page in .MAC? If I go that route and publish it, will the .MAC page messed up my iWeb page which would be of a totally different subject matter? [sic]
    I don't really understand your question there, but let me try to give an answer anyway. Homepages aside, you don't create stuff with .Mac. .Mac is server space, referred to as your iDisk, that integrates beautifully with Macintosh iLife. Use iWeb, create your sites, name them differently so they don't overwrite each other upon publishing and fire away. If you want to keep them all in a single Domain file then go ahead. Use the File/New Site command in the menu. You can publish as many different and individual sites to .Mac as your subscription space will allow.

  • Memory usage Adobe Photoshop Elements 9 - How many images are too many?

    My wife and I are having a discussion about the memory allocation of Adobe PSE 9.
    We run both of our profiles logged in on a 27" iMac top end from May, 2010, with 12 GB of RAM.
    She had a number of pictures open (let's say 20 - 25) that she was working on editing.  Trying to shut the program down or work within it, the spinning wheel of death made a cameo appearance and brought the system to a crawl.
    I ran Activity Monitor and it said that she had 746 MB of memory free out of 7.39 GB active and 11.27 GB used.  With each image I closed, I gained an additional 5 - 7 MB of free memory.
    Once I force quit PSE 9, that number jumped to nearly 2.5 GB free.
    For those with experience using PSE 9, can you give me an indication:
    How many images do you have open that you're working with at the same time?
    For those people with more Mac OS X experience, would having 750 MB free out of 12 GB reduce the computer to a crawl?
    Thanks in advance.

    As a general rule of thumb (some will disagree with me) if your machine has about 500MB of Free RAM or less this will slow down the computer significantly. Also as a general rule you can never have too much RAM. One nice thing about your machine is it can be upgraded up to as much as 32GB of RAM however 8GB chips are EXTREMELY expensive right now and currently only OWC sells a kit. You can upgrade to 16GB for a lot less, whether you need it or not no one here can say for sure. I would continue to keep an eye on Activity Monitor and keep my first sentence in the back of your mind.
    Roger

Maybe you are looking for

  • IDVD-problems with burning a DVD

    I cannot burn a DVD, i get a message There seems to be too much motion menu content in your project. Correct this problem before you continue burning this project. But i am not sure how to fix it. Please help. And also if i want for a PC user to be a

  • Word 2010 lookup fields from Access 2010

    Hello, I am trying to set up a Word document that I can have columns or fields that can be looked up and get information from Access data base. For example, names, addresses, telephone, email and so on. I am using the Office 2010 suite. I would appri

  • Wrong Status in SPAM

    Dear All, I have applied CIN(Country Version India) add-on to my IDES 4.6c. Thought the application was successfull, but it does not show the CIN component in SPAM when we click on support package level. Any suggestions would be appreciated. Rgds, Nk

  • Toolbar disppears when control comes back to the form

    Hi, When a form calls another form and after the control goes back to the calling form, the toolbar disappears and the menu is getting disabled. Inference: If i change the window of that canvas(with the same old properties), it works fine. Can any1 h

  • Login on to WLS with jdk 1.4 doesnot work

    Hi, I had ealier posted a question on how to debug ejb's on wls with eclipse and was directed to this site "http://www.genuitec.com/products.htm#weblogic_jdk14". There I found a document on how to setup WLS into debug and how to setup WLS to work wit