Questions tagged [qtkit]

The QuickTime Kit is an Objective-C framework (QTKit.framework) with an API for manipulating time-based media.

QuickTime Kit (aka QTKit) is a developer framework that is intended to replace previous APIs for Cocoa developers. This framework is for Mac only, and exists as Objective-C abstractions around a subset of the C interface. Mac OS X v10.5 extends QTKit to full 64-bit support. The QTKit allows multiplexing between Quicktime X and Quicktime 7 behind the scenes so that the user need not worry about which version of Quicktime they need to use.

185 questions
1
vote
0 answers

Quicktime deprecated but it was deleted

I get the error when I try upload my app to the Mac App Store: "Deprecated API Usage. Apple no longer accepts submissions of apps that use Quicktime APIs" However I've removed QTKit and Quicktime frameworks and migrated to AVFoundation. The error…
torcelly
  • 516
  • 4
  • 8
1
vote
2 answers

How do I get an openGL texture out of a video using AVFoundation?

Building a 64bit native OSX (not iOS) ap targeting 10.7+. Somewhat new to dealing with video files in a Cocoa universe. I would like to be able to open a video file and display the output inside an openGL render (IE, I would like to be able to…
andrew
  • 218
  • 3
  • 12
1
vote
0 answers

QTCaptureView shows black screen

I have an app that I want to just show a preview of the iSight camera. I am trying to use QTCaptureView to accomplish this. I have the QTCaptureView window linked in interface builder to the correct variables in my class. I can see the green light…
1
vote
1 answer

QTKit how to record a movie to a file for a specific duration

I'm having trouble with what I think should be an easy task. I'm trying to record video from any attached webcam to a file for a specific duration. But the duration that actually gets recorded is always about 3/4 of a second off. E.g. 5 secs…
Matt
  • 116
  • 5
1
vote
0 answers

Get RTSP stream from live555 and decode with AVFoundation

I need to get video frames from ip camera using RTSP. To get rtsp stream I use live555. The problem is that I can't find a way to decode incoming video frames with AVFoundation. (I can't use ffmpeg). Is there a way to use AVFoundation for video…
kestutisb
  • 261
  • 2
  • 13
1
vote
0 answers

QTMovie never sends QTMovieDidEndNotification

Using pyobjc and wxPython to embed QTMovieView (and QTMovie) widget into a wxPython panel and then registering needed notifications, however QTMovieDidEndNotification is not ever triggered. Downloadable Version of Code:…
Zimm3r
  • 3,369
  • 5
  • 35
  • 53
1
vote
0 answers

QTmovie can't play video

I'm cocoa beginner , maybe my question is a little stupid :( I setup a rtsp server, build in localhost. I use qtmovie connect to the localhost to play a video. I have two buttons which can switch channel and channel 2 in my rtsp server. It's…
1
vote
0 answers

QTCaptureSession Threading Issue

I'm currently working on a project that involves opening and receiving data from a webcam. On OS X we use the QTKit along with QTCaptureSession to access the webcam. The module we are developing is loaded as a plugin by some thread of the main…
chrish.
  • 715
  • 5
  • 11
1
vote
0 answers

How to get the names of installed video codecs in ObjectiveC

I am looking for a way to list the names of all installed video codecs with ObjectiveC on OS X Mountain Lion. There is a property of AVCaptureVideoDataOutput called availableVideoCodecTypes which returns an array containing to items: avc1 and…
1
vote
1 answer

Why is QTMovieLoadStateDidChangeNotification not firing?

I'm seeing that setting up a notification on QTMovieLoadStateDidChangeNotification has no effect and the target selector never gets called. Am I missing something? In awakeFromNib: [[NSNotificationCenter defaultCenter] addObserver:self …
martinjbaker
  • 1,424
  • 15
  • 23
1
vote
1 answer

Objective c library with c interface

I have run into a problem... I'm trying to use QTKit in an application that we have at work. The only problem with that is the app is written in C++, not Obj-C. I have looked through Apple's documentation for answers, but I haven't found anything…
Robbie
  • 831
  • 2
  • 14
  • 22
1
vote
1 answer

Using QTKit to add NSImages to movie at random frame rate

I'm an OS X programming newbie, I have to take a bunch of NSImages arriving from the internet at a varying interval and construct a progressive movie file out of it. For example the rate of arrival of the NSImage could be anywhere from milli-seconds…
N S
  • 303
  • 4
  • 17
1
vote
4 answers

How do I create an AIFF file

I have some raw sound data that I want to make into an AIFF file format. I know the specifics of the audio data. I tried creating a wave from the audio, but that didn't work. OS X does have a function to create the header, but it directly addresses…
MaddTheSane
  • 2,981
  • 24
  • 27
1
vote
0 answers

preview image is not correctly showing the exact frame image after saving the QTMovie to a file in mac os x

i found the strange behaviour while save the QTMovie to a file in a hard drive..(example:Desktop)... it shows the different frame image than the start time frame image as a preview in the desktop..... but if i open the saved QTMovie in a "Quick Time…
mammaiap
  • 11
  • 2
1
vote
2 answers

Can't call methods on objects in pyObjC

When I call setDelegate_ within my pyObjC code I get an AttributeError: 'tuple' object has no attribute 'setDelegate_'. My Code looks like this: def createMovie(self): attribs = NSMutableDictionary.dictionary() …
LifeIsHealthy
  • 347
  • 1
  • 8