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
0
votes
0 answers

QTKit currentFrameImage fails on RTSP (but works fine on file:// and others)

For some odd reasons - currentFrameImage fails on a QTKit QTMovie(player) - when the latter is handling RTSP; though is fine when playing things like file::///.../some.h264 Relevant code movie1 = [QTMovie movieWithURL:[NSURL…
Dirk-Willem van Gulik
  • 7,566
  • 2
  • 35
  • 40
0
votes
1 answer

Working with QTTime in milliseconds

I get the current time of my QTMovieView like so: QTTime time = self.movieView.movie.currentTime; and then put it into SMPTE form NSString *SMPTE_string; int days, hour, minute, second, frame; long long result; result = time.timeValue /…
vqdave
  • 2,361
  • 1
  • 18
  • 36
0
votes
1 answer

How to play youtube video in QTMovieView

I'm developing a cocoa application. I have to play a youtube video. http://www.youtube.com/watch?v=dElLBPL_h1Q I'm using QTKit for playing video. Code is as follow: NSURL *fileURL = [NSURL…
iPhoneDv
  • 1,969
  • 1
  • 19
  • 34
0
votes
1 answer

Check QtKit Dependencies for embedded Player

I have an application written in C# with MonoMac, that embeds a QuickTime player, so i want to know: Is possible uninstall QuickTime? If it is possible uninstall QuickTime, this prevents use the QTKit? In case that, the uninstall process will…
GustavoTM
  • 485
  • 6
  • 13
0
votes
1 answer

Change video input device QTkit

I have a list of videoInput devices. First I add the default input device for recording set up the compression, the output and everythin needed. After that I'm trying to change the input device, but somehow, the view stop working and it shows only…
gbaor
  • 1,419
  • 3
  • 11
  • 19
0
votes
1 answer

How to browse network camera in OSX ?

I'm writing a an Objective C software that will use some network camera (IP based ). I've checked many api but i'm able to detect my TP-Link TL-SC3171 camera. I'm using an Mac Book Pro. Here are the api i've seen: 1-AV foundation: With…
Yemey
  • 31
  • 4
0
votes
1 answer

How to automatically pair camera and microphone in QTKit

I am programming a video capture application using QTKit. It is set up so that users must select a webcam from the list obtained with [QTCaptureDevice inputDevicesWithMediaType: QTMediaTypeVideo]. I want the user to be able to choose a camera, and…
SteveS
  • 514
  • 3
  • 16
0
votes
1 answer

How to set the alpha mode for a QTMedia / QTTrack using QTKit

I'm trying to add subtitles to an existing movie and everything seems to work as expected except for the background of the subtitles track that should be transparent. MediaHandler media = GetMediaHandler([[subtitlesTrack media]…
Bruno Ferreira
  • 942
  • 9
  • 22
0
votes
1 answer

Playback State in QTKit

I have an application that reads audio from internet using QTkit, the problem is, that i need get the state of the playback from the QTMovie object (e.g.: Buffering, Playing, Paused, etc.) but can't find any method or property to do that Anyone…
GustavoTM
  • 485
  • 6
  • 13
0
votes
1 answer

QTKit Occasionally Crashes When Looking For Devices

I'm not sure if its just my machine or anyone else having this problem with QTKit. These two methods will occasionally crash. Is there a solution or work around to this? [QTCaptureDevice…
dpham
  • 859
  • 3
  • 11
  • 17
0
votes
1 answer

Scaling a QTMovie before appending

Using the QTKit framework, I'm developing a little app. In the app, I'm trying to append a movie after a other movie, which in essence is already working (most of the time), but I'm having a little trouble with the appended movie. The movie is which…
rien333
  • 1,154
  • 13
  • 15
0
votes
1 answer

QTCaptureSession:startRunning is blocking thread

Let me first start by saying that I'm a total objective-c newbie, and I'm picking up an existing codebase, so I'm trying to frantically read about NSRunLoop, etc. but I would love some extra help. Basically, I have inherited code that looks…
user358829
  • 741
  • 1
  • 7
  • 17
0
votes
1 answer

I cannot get a QTCaptureSession to Capture when in a Terminal Application

I've got a terminal application that needs to take a webcam picture and then perform some processing on it. I'm having trouble getting it to initialize. There's a fairly complete demo with an app called MyRecorder in the Apple docs that uses…
Grant H.
  • 3,689
  • 2
  • 35
  • 53
0
votes
1 answer

QTMovie initWithMovie:timeRange:error: fails under 10.7 but not 10.6

I have a QTMovie object created from a file. I check that it's a valid movie with which can be played or written to file nicely. Then this line fails with error: Error code: -50 domain: NSOSStatusErrorDomain description: The operation couldn’t be…
elk
  • 31
  • 6
0
votes
1 answer

How do I extract a movie frame with applied filters

So I have a QTMovieView displaying a QTMovie. Via my interface the user can add and remove CoreImage filters that are applied to the movie in real time. That works fine. Now I want to extract images from the movie (say when the user hits a button).…
Wukerplank
  • 4,156
  • 2
  • 28
  • 45
1 2 3
12
13