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

learn more… | top users | synonyms

0
votes
0answers
13 views

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 ...
0
votes
0answers
9 views

QTMovie play crashing

- (void)exportMovie { SEL s = @selector(doExportOnThread:); QTMovie *movie = [[self.mMovieView movie] retain]; BOOL success = [movie detachFromCurrentThread]; if (!success) { ...
0
votes
0answers
20 views

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 = ...
0
votes
1answer
38 views

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; ...
0
votes
1answer
35 views

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: ...
0
votes
1answer
22 views

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 ...
0
votes
0answers
39 views

How to play iTunes protected files? [closed]

Good day i search C/C++ library for playing iTunes protected files.Now my choice stops between GStreamer and QTKit. In QTKit i implement first example link ...
0
votes
0answers
19 views

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 ...
0
votes
0answers
8 views

QTCapture and SGSettingsDialog

I'm currently working with a Pixelink firewire camera on OSX 10.6 and am having issues with the video input. I can get the camera to record but using QTKit/CoreVideo the recording is inverted. What is ...
0
votes
0answers
41 views

In Xcode, how can I share a local camera through LAN or even Internet?

I am now doing a research on sharing local camera of Macbook with another OS X or iOS device. Of cause, that would consist of a server and a client. I read the "QTKit Application Programming Guide" ...
0
votes
0answers
69 views

QTMovie and HTTP streaming

i'm trying to play a HTTP video stream using QTKit Framework. Loading video is done like this: NSString *url = @"http://devimages.apple.com/iphone/samples/bipbop/bipbopall.m3u8"; NSError *error = ...
2
votes
1answer
167 views

Get frame number (like Quicktime Player 7) from QTKit

This has been driving me nuts for a while now. I have very little knowledge of QTKit / QTMovie, but have created a little Cocoa app that previews a video and lets you save a 3 second version of it ...
0
votes
1answer
56 views

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 ...
3
votes
1answer
133 views

Recording multiple videos at once using AVFoundation / QTKit

Using AVFoundation/QTKit how would you record multiple video devices at same time to a file/files? I know how to record them separately but trying to record both at once causes errors like... ...
1
vote
1answer
105 views

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 ...
0
votes
0answers
166 views

Right way to process video files and video streams

//update I found a small improvement with my problem: i'm start convert small pieces of video while it recording with really low thread priory. After stop playing, i set medium priory, without ...
0
votes
0answers
31 views

initialPlaybackTime for a QTMovie?

How do I load an MP3 from a URL in QTMovie skipping to a specific time? It's easy on iOS with initialPlaybackTime and MPMoviePlayerController, but QTMovie doesn't seem to have any equivalent. I've ...
0
votes
1answer
74 views

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 ...
0
votes
0answers
25 views

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 ...
0
votes
3answers
61 views

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 ...
2
votes
1answer
105 views

How to get PCM audio from QTKit in a 64-bit app?

I have a 64-bit Mac OS X Cocoa app that uses AV Foundation for most of its media I/O needs, however I would like it to also be able to read other formats, most notably Motion JPEG inside of an AVI ...
0
votes
0answers
72 views

QTKit replicate cinema tools conform tool with correct audio scaling

I'm trying to write a tool that changes a QuickTime clip to a different frame rate, replicating CinemaTools' "conform" function. I've managed to get the movie and the video tracks to behave properly ...
0
votes
0answers
59 views

How do I create a QTKit movie object from raw audio data?

In my program that I'm writing, PlayerPRO Cocoa, I'm getting raw audio data and I want to export the data as an audio file. I've decided to use QTKit. How do I make it so that I can create a QTKit ...
0
votes
0answers
53 views

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 = ...
0
votes
0answers
68 views

Is this a BUG of QTKit? I failed to play a m3u8 URL using QTKit, but I can play the same m3u8 using QuickTime X successfully

URL : http://odioshlslive237.ngcdn.telstra.com/hlsdemo.m3u8 The URL will do a HTTP redirection. When I played the URL using QTKit, it failed. But when I played the same URL using QuickTime X, it ...
0
votes
0answers
74 views

QTMovieView enterFullScreenmode not working

I'm trying to make my qtmovieview enter full screen. I wrote this: NSDictionary *fullscreenOption = [NSDictionary dictionaryWithObjectsAndKeys: [NSNumber ...
0
votes
1answer
74 views

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 ...
1
vote
0answers
116 views

Xcode recognition of objects in a video

Is there a way, using xcode, I can get the input video from webcam and analyze each image frame? For example, if I have a white box. I move it in front of the webcam. The output of my Mac Xcode ...
0
votes
1answer
54 views

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 ...
1
vote
0answers
58 views

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..... ...
0
votes
1answer
149 views

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 ...
2
votes
0answers
359 views

Webcam capture on Mac OSX 10.7 - QucikTime/QTKit/AV Foundation

I'm new to Mac programming and am really getting confused on what is the correct way to capture any webcam. Learnt: On Windows - Directshow filters are the only recommended way. On Mac, there are ...
2
votes
0answers
248 views

Cocoa: AVAsset from raw data (i.e. NSData)

I'd like to use AVFoundation to display a video on osx. I would like to initialize the movie from raw data at runtime. According to this document: ...
0
votes
1answer
121 views

How would I go about programatically recording the screen on OSX 10.6+?

I am interested in developing a small application which records the desktop. I am aware that in 10.7 and above I can use the AV Foundation to get this done. However, I am really interested in what I ...
1
vote
2answers
104 views

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 = ...
0
votes
0answers
55 views

Playback of De-Interlaced video using QTKit

I'm using QTKit and a QTMovie object to playback a 1920x1080 ProRes 422 59.94i video file. I am not convinced the de-interlacing is being handled properly because the video playback 'appears fuzzy'. I ...
0
votes
1answer
145 views

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. ...
0
votes
1answer
100 views

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 ...
1
vote
1answer
114 views

how to place image on top of qtmovie in xcode

I am trying to make an OS X application in xcode 4.4 that can load a movie and place an image on top of this movie. The aim is to be able to resize/skew/distort the image with certain frames of the ...
0
votes
1answer
87 views

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: ...
0
votes
1answer
122 views

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 ...
2
votes
0answers
229 views

Cocoa: AVFoundation - no active/enabled connections

I'm trying to build a simple app that captures video off of the built-in iSight camera of a MacBook. I've looked at a couple of example projects on the developer site and am following the tutorial ...
0
votes
1answer
88 views

How can captured video be vertically reflected using QTKit?

I have a QTCaptureSession set up which has as its input a QTCaptureDeviceInput (initialized with a QTCaptureDevice corresponding to a webcam); a QTCaptureLayer has had its session set to be this ...
-4
votes
1answer
244 views

Record audio on a mac with OBJC

As the title says, I just want to record audio with Objective-C on a mac, not an iPhone, I just need a simple example, I've already search with core audio and QTKit, but the examples are much more ...
1
vote
0answers
86 views

How to use QTKit to split a stereo audio track into two mono audio tracks?

I've been writing an audio conversion application in OSX meant for use in podcasting, and I've run into an issue. I can access the QTTrack for the audio I want, but it has two very different audio ...
0
votes
0answers
58 views

Need help loading DPX images into an NSImage

I've developed an app that searches through a folder to find image sequences then converts them into QuickTime movies. It works great with TIF and JPEG sequences, however I'd like to add the ability ...
0
votes
1answer
1k views

Playing HLS (.m3u8) using QTKit in MacOS 10.6.8

I'm creating an app that supports playing hls files (.m3u8) on a Mac OS environment, and I've just found out that AVFoundation is only available for Mac OS 10.7 onwards. So, I've been left with ...
2
votes
1answer
81 views

Why am I experiencing low frame rates when using multiple QTCaptureVideoPreviewOutputs with a single QTCaptureSession?

I have an app in which the same captured video is displayed in multiple QTCaptureLayers. I am experiencing very low frame rates. Why is this happening?
0
votes
0answers
49 views

clicks/pops in looping QTMovie due to the lack of zero crossing?

I made a kind of synthesizer/movieplayer app, when MIDI signal (piano keys pressed) is received one or more QTMovies are played in loop on a QTMovieLayer. These small clips are generated from several ...
2
votes
0answers
119 views

How to continue QTCaptureSession at login screen?

I've got a program I have written which creates a QTCaptureSession, and is able to receive and process image frames. The problem is when I switch to the login screen the iSight LED goes off and I ...

1 2 3 4