Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
493 views

What is a 10.6-compatible means of recording video frames to a movie without using the QuickTime API?

I'm updating an application to be 64-bit-compatible, but I'm having a little difficulty with our movie recording code. We have a FireWire camera that feeds YUV frames into our application, which we ...
8
votes
1answer
757 views

How can I get image data from QTKit without color or gamma correction in Snow Leopard?

Since Snow Leopard, QTKit is now returning color corrected image data from functions like QTMovies frameImageAtTime:withAttributes:error:. Given an uncompressed AVI file, the same image data is ...
5
votes
1answer
240 views

QTMovieCurrentSizeAttribute and QTMovieSizeDidChangeNotification replacements

Does anyone know the correct way to replace old QTMovieCurrentSizeAttribute and QTMovieSizeDidChangeNotification tasks? I'm trying to clean out old deprecated code. I've found that ...
5
votes
2answers
2k views

How can I capture iSight frames with Python in Snow Leopard?

I have the following PyObjC script: from Foundation import NSObject import QTKit error = None capture_session = QTKit.QTCaptureSession.alloc().init() print 'capture_session', capture_session device = ...
4
votes
1answer
29 views

How to draw a NSCIImageRep to an NSView

I am having trouble at drawing a NSCIImageRep which I obtain via a QTKit mCaptureDecompressedVideoOutput. As I do not want to draw the image using OpenGL, I attempted to subclass a NSView and draw ...
4
votes
3answers
122 views

How do I find solutions for deprecated code?

I'm new to Mac programming. When I open sample projects, I often get 'deprecated' code warnings during a build. I'd like to fix these and get a clean build using XCode 4. When Apple deprecates ...
4
votes
1answer
231 views

How can I create a Quicktime movie from a series of generated images?

I need to create a movie from a series of generated images. (I'm creating the images based on the output of a physics modeling program.) I found Apple's sample in QtKitCreateMovie and used that as a ...
4
votes
3answers
936 views

How to make QTMovie play file from URL with forced (MP3) type?

I'm using QTKit to progressively download and play an MP3 from a URL. According to this documentation, this is the code I should use to accomplish that: NSURL *mp3URL = [NSURL ...
3
votes
1answer
135 views

QTMovie index of out bounds exception when trying to addImage:forDuration:withAttributes

I am trying to create a movie in Cocoa using QTKit. This movie should consist of a bunch of NSImage's that I have created. I'm running into some problems with this. The overall problem is that the ...
3
votes
0answers
244 views

Why is my QTKit based image encoding application so slow?

in a cocoa application I'm currently coding, I'm getting snapshot images from a Quartz Composer renderer (NSImage objects) and I would like to encode them in a QTMovie in 720*480 size, 25 fps, and ...
3
votes
2answers
621 views

How can I obtain raw data from a CVImageBuffer object

I'm trying to use cocoa to grab images from a webcam. I'm able to get the image in RGBA format using the QTKit and the didOutputVideoFrame delegate call, and converting the CVImageBuffer to a CIImage ...
3
votes
2answers
624 views

How to tell when a QTMovie starts playing?

So QTMovies have QTMovieDidEndNotification, but no QTMovieDidStartNotification. How can I be notified when a QTMovie starts playing?
2
votes
1answer
35 views

What is QTCaptureScreenInput?

On a screen-recording github project here, I saw one line of code: mCaptureScreenInput = [[NSClassFromString(@"QTCaptureScreenInput") alloc] init]; A google search for QTCaptureScreenInput reveals ...
2
votes
1answer
52 views

Send audio from QTMovie over internet

I have a simple audio playing app that uses QTMovie for a few of it's features. I'm also developing a little ethernet-enabled board to stream MP3 or PCM data to. Is there any way of 'grabbing' what ...
2
votes
1answer
165 views

Determine actual frame rate of a stream using QTMovie

I am using QTMovie with QTMovieOpenForPlaybackAttribute:YES, and using a QTMovieView to display it. I need to calculate the framerate it is achieving. One way I can think of doing this is to have a ...
2
votes
1answer
273 views

QTKit Play Movie in Slow Motion

I'm trying to play a movie in slow motion and attach it to an existing movie. Here's what I've done so far: QTMovie *originalMovie = ...; QTMovie *slowMotionMovie = ...; [originalMovie ...
2
votes
1answer
99 views

I am looking for QTAtomContainer in headerfiles

a lot of quicktime examples refer to QTAtomContainer to set Movie export parameters. I've got all that working code from ancient times. Now I am using xcode 4 and the compiler cannot find ...
2
votes
1answer
173 views

QTKit capture: what frame size to use?

I am writing a simple video messenger-like application, and therefore i need to get frames of some compromise size to be able to fit into the available bandwidth, and still to have the captured image ...
2
votes
1answer
734 views

How to capture frames from Apple iSight using Python and PyObjC?

I am trying to capture a single frame from the Apple iSight camera built into a Macbook Pro using Python (version 2.7 or 2.6) and the PyObjC (version 2.2). As a starting point, I used this old ...
2
votes
1answer
715 views

Extracting an image from H.264 sample data (Objective-C / Mac OS X)

Given a sample buffer of H.264, is there a way to extract the frame it represents as an image? I'm using QTKit to capture video from a camera and using a QTCaptureMovieFileOutput as the output ...
2
votes
1answer
78 views

Vibrations when exploding/repacking movie

Please bear with me, I know that what I'm doing can sound strange, but I can guarantee there's a very good reason for that. I took a movie with my camera, as avi. I imported the movie into iMovie and ...
2
votes
2answers
233 views

Is it possible to create a QTTimeRange from two frame numbers?

All QTKit examples use seconds for making ranges. I, unfortunately, have frame numbers and need to be frame accurate. I suppose I could multiply up by the frame rate if I could figure out how to get ...
2
votes
2answers
279 views

Which video file formats can QTKit play?

Is there an overview of file formats which QTKit understands?
2
votes
1answer
257 views

Providing data as needed for QTMovie

I understand that if I wanted to provide a QTMovie with data from an arbitrary source as it is needed I probably have to deal with the QTDataReference class, but unfortunately my experience with ...
2
votes
1answer
418 views

QTKit PAL Mode

I used MyRecorder sample by QTKit, it records everything but I have a problem that my camera is PAL and the resolution of H264 encoding for PAL and NTSC are different. PAL is 724x568 and NTSC is ...
2
votes
2answers
594 views

Setting QTMovie attributes

I'm trying to create a QTVR movie via QTKit, and I've got all the frames in the movie. However, setting the attributes necessary doesn't seem to be having any effect. For example: NSNumber *val = ...
2
votes
2answers
1k views

Setting movie metadata with QTKit

I'm trying to convert old QuickTime framework code to the 64-bit Cocoa-based QTKit on OS X, which means that I can't drop down to the straight C function calls at any time. Specifically, I'm trying ...
1
vote
0answers
42 views

QTMovie at 29.97 with QTMakeTime

I'm trying to use QTKit to convert a list of images to a quicktime movie. I've figured out how to do everything except get the frame rate to 29.97. Through other forums and resources, the trick seems ...
1
vote
0answers
18 views

Quicktime: set 'elng' atom, or AVAssetTrack's extendedLanguageTag property

I have some videos for which I need to set an extended language tag for each of the tracks. I haven't found any app that does this, so I'm trying to do it in code. The documentation for the elng tag ...
1
vote
1answer
24 views

QTKit: determine if a QTMovie is paused?

How can I tell, programmatically, if a QTMovie is playing or paused? It seems like it would be simple, but I've combed through the QTMovie and QTMovieView docs rather extensively, and can find ...
1
vote
2answers
115 views

NSBitmapImageRep to RGB with high efficency

I am working on my first mac osx cocoa app for 10.5+ where I have a CVImageBufferRef (captured using QTKit), I need to transfer this image over TCP Socket to the client app. The client app needs RGB ...
1
vote
1answer
46 views

Noise in recording in mac app

I am using QTKit for recording and playing, but when i am recording the resultant file having lot of noise(air pressure). I am using QTCaptureDevice *audioDevice = [QTCaptureDevice ...
1
vote
1answer
151 views

Snow Leopard: 64-bit replacement for QuickTime API

I'm migrating my movie player to 64-bit. At present it is capable of decoding movies with both QuickTime API and FFmpeg. To decode with QuickTime API I create a QTOpenGLTextureContext providing a ...
1
vote
1answer
154 views

QTKit issue on OSX Lion

I'm having an issue with an existing QTKit codebase which I need to support for OSX Lion. On upgrading to Lion our QT based capture (via QTCaptureSession) mostly seems to work fine. However, on ...
1
vote
1answer
197 views

Cocoa Add Image At End Of Video

I'm recording a video from the iSight camera using QTCaptureSession. I would like to add an image at the end of the video, so I've implemented the didFinishRecordingToOutputFileAtURL delegate ...
1
vote
1answer
69 views

next/previous track buttons action

I have an NSTableView (URLs of songs) and QTMovieView elements. I need to create an action that will execute when previous/next buttons on QTMovieView will be pressed. what I need to do?
1
vote
2answers
152 views

playing music by url

I want to play the music from internet by url. I create a simply project that has one button with the following code: NSURL *url = [[NSURL alloc] initWithString:@"http://someURL.mp3"]; NSError **err; ...
1
vote
1answer
100 views

Crop video from QTKit

I'm using the OSX QTKit sample code from here: http://bit.ly/mAaHGI I'd like to crop the video, both on the screen and the saved file, to simulate different aspect ratios. What is the best way to do ...
1
vote
1answer
177 views

How to display current time of a video?

How to do to display current time of a video ? I am developing in Obj-C and I am using QTKit framework. I am wondering how to do for that QTMovieView notify continually my function ...
1
vote
0answers
82 views

QTKit: Analog for VideoContext for the sound

I am writing a simple application for streaming video over the network, using a slightly different from the ordinary "H.264 over RTP" approach (i am using my own codecs). To achieve this, i need raw ...
1
vote
0answers
107 views

Cocoa: QTMovie “shouldContinueOperation” delegate and 64bit

Hi I try to get the progress of an QTMovie writeToFile: operation. But it seems that the QTMovie delegate "shouldContinueOperation:" is not getting called in an 64bit Application. In 32bit it works ...
1
vote
1answer
87 views

QTKit makes my program freeze when attempting to play a video while recording sounds from an other source

I have an application where I use QTKit to acquire realtime information about the sounds surrounding the machine. While this is happening some user events may launch the playback of a video (still ...
1
vote
1answer
229 views

QTKit isn't properly mixing audio tracks

I'm trying to import a single movie file twice (2 separate QTMovie instances) offset the audio track of the second instance by a second and then mix it with the audio track of the first instance. It ...
1
vote
0answers
167 views

Cocoa QTKit resolution problem

Based on a lot of online references, the way to change resolution is using the following code. NSDictionary * pixelBufferAttr = [NSDictionary dictionaryWithObjectsAndKeys: [NSNumber ...
1
vote
1answer
201 views

QTKit does not enumerate my USB- and virtual cams in 64Bit mode. Is there a workaround?

I have a problem with Quicktime, that means, QTKit. A long time ago I wrote an app, which is using camera devices on Mac OS X. The user could select the camera using a popup box. I populated the ...
1
vote
0answers
88 views

My QTKit is crashing while popping down a menu. JVT - Lib (H.264) encoding is responsible for this issue. What can I do?

I use H.264 encoding using QTKit in my application. This Application is always crashing with a "segmentation fault" or "EXEC_BAD_ACCESS". My debugger shows the crash at this place: 0x7fff801fea94: ...
1
vote
2answers
328 views

How to properly save a QTMovie after editing using QTKit?

I am making minor edits to a QTMovie in an application using NSDocument architecture (such as adding a track, as shown below). After the edit, I want to save to the original file. However, I keep ...
1
vote
2answers
158 views

QT movie processing on GPU

I'm working on a QTKit project in cocoa where the QT movie is taking up ~70% of the CPU load. I would like to move some of the processing load onto the GPU, if possible. Does anyone know if that is ...
1
vote
1answer
220 views

Xcode Cocoa QTKit - Creating a Reference file

Sorry if this is a very easy question but: I'm trying to create a reference movie of a Quicktime movie . I am cutting parts of the movie out then I want to save the file as a reference not a self ...
1
vote
2answers
633 views

Converting CVImageBufferRef to PNG

I want to write all frames to disk using QTKit.framework for camera input. But all the images I get are half transparent and without some colors, maybe colorspace problem? ;( They seem good in the ...

1 2 3