Looks like no one’s replied in a while. To start the conversation again, simply ask a new question.

OSStatus-error -2003

I get this error when I try to create a time lapse, bye opening the first image in a sequence. I get the error after I have chosen the number of images pr. second. I have the latest version of itunes and quicktime installed, and I have verified disk permissions and all should be ok.

20" iMac G5, 1GB Ram, Mac OS X (10.4.8)

Posted on Oct 8, 2009 8:42 AM

Reply
8 replies

Jan 27, 2010 4:26 PM in response to trondk

I open image sequences with QT Pro all the time, and I've never gotten this error before today. My sequences are usually thousands of frames long.

I found the problem with the error that I received. There were 3 corrupt frames in my sequence.

I found this out by separating the images into smaller batches. I had started with 7000 this time. I was able to open all the 1000 frame batches except for one. I then concentrated on splitting that one into small batches and opening each one. I happened to notice that one of the frames didn't generate a proper preview icon (it just showed a generic Preview icon) to the left of the name in column view. That frame and the one before and after were bad. Once removed, all was good.

I hope that helps someone to find the problem they're having.

Mar 6, 2010 4:59 PM in response to trondk

The following python script takes a path to a directory as an argument and, sorts all JPEG files and renames them to an incrementing number, starting with 1.jpg.

{quote:title=Copy the script and save it as "rename tosequence.py":}
#!/usr/bin/python

if _name_ == ' _main_':

import os, shutil, sys

if not len(sys.argv) == 2:
print 'Usage: ' + sys.argv[0] + ' SOURCE_DIR'
sys.exit()

path = os.path.abspath(sys.argv[1])

files = os.listdir(path)
files.sort()
i = 0
for f in files:
if not f.lower().endswith(('jpg','jpeg')): continue
i = i + 1
s = os.path.join(path, f)
d = os.path.join(path, str(i) + '.jpg')
os.rename(s, d)

print "renamed " + str(i) + " files to sequence"
{quote}


{quote:title=Start it in the terminal with: }
python rename tosequence.py SOURCE_DIR
{quote}

OSStatus-error -2003

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple ID.