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
3 answers

Combine and convert MP3 files using QTKit

I'm trying to combine two .mp3s into a single .wav file using QTKit. It seems to be working, but the last few seconds of the second file are getting truncated. Any ideas? - (IBAction)combineSelectedFilesAndOutputAsWAV { QTMovie *movie = [QTMovie…
Stephen Poletto
  • 3,645
  • 24
  • 24
0
votes
1 answer

Record Sound in Cocoa Example Please!

I've been scouring both this site and the net in general for an example cocoa app that uses QTKit or Audio Queue and actually works. Unfortunately, I can't find anything that fits the above description. All I want to do is get a simple audio…
0
votes
0 answers

Qt wont run the app for Android

I have been working with Qt Desktop for a year now, and I needed to set up the environment for Android. I have followed carefully the steps in Qt documentations, downloaded Android SDK, NDK, Ant and JDK 7. I included all the paths and created a kit…
Dionis
  • 73
  • 7
0
votes
1 answer

QTMovieView not in pallet

I am trying to follow the QTKit tutorial. I add and include the QTKit framework and .h file. I create the QTMovie property. Then in IB I am supposed to drag out the QTMovieView from the library but it isn't there. If I go to the Classes tab, I can…
joels
  • 7,249
  • 11
  • 53
  • 94
0
votes
1 answer

Remove QTKit dependency

I want to submint an application using FFMPEG to the Mac App Store but I get rejected because libavcodec links against the deprecated QTKit framework: Deprecated API Usage - Apple no longer accepts submissions of apps that use QuickTime APIs. I…
Martin Delille
  • 11,360
  • 15
  • 65
  • 132
0
votes
0 answers

QTMovieModernizer errors

I'm trying to write a piece of code that would "modernize" a video file. This is the code : NSOpenPanel *openPanel = [[NSOpenPanel alloc] init]; [openPanel setCanChooseFiles:NO]; [openPanel setCanChooseDirectories:YES]; if([openPanel runModal] ==…
user26830
  • 1,059
  • 4
  • 16
  • 25
0
votes
0 answers

How to convert the CODEC : AAC to AIFF in cocoa application?

I'm exporting the audio file(AIFF) from .mov using AVExportSession. The movie format is in AAC codec format. I would like to convert and write the audio file in AIFF Codec format ( i.e AAC codec to AIFF). I have tried to implement using…
Manoj Arun S
  • 543
  • 5
  • 17
0
votes
2 answers

Play QT movie located in application bundle

I'm trying to run a QT Movie located in my application bundle. Can't get it to work. Can someone advise? thanks. paul -(IBAction)runInternalMovie:(id)sender [ NSString *internalPath; NSURL *internalURL; QTMovie *internalMovie; internalPath =…
paul
  • 61
  • 4
0
votes
1 answer

AVKit trim h264 - frame accurcy

I just found the possibility, to edit mp4-movies with the AVKit-Framework. I'm trying to cut my h264-videos between two keyframes. Is this possible with the AVKit-Framework without reencoding the complete stream? (like "smart-rendering"). It seems…
Lupurus
  • 3,618
  • 2
  • 29
  • 59
0
votes
3 answers

Quicktime Framework and opening Transport Streams

I have noticed that Quicktime 10 is now able to open Transport Stream Video files and also search reliably within that video file(Which is something that VLC can not seem to handle). Quicktime 7, on the other hand, is not able to open the same Video…
Rich
0
votes
1 answer

play a movie in cocoa application

i want to know how to play a movie in Cocoa application
user226284
  • 155
  • 1
  • 3
  • 8
0
votes
1 answer

Using Quicktime C API framework on 64bits

I've searched on net for this but couldn't find much. Can I use QuickTime C api on 64 bits windows? I know it works on 32 bits but it is possible to use it on 64bits. I'm looking for encoding between different file formats. On Apple developer site…
praks411
  • 1,972
  • 16
  • 23
0
votes
2 answers

How to determine what's blocking the main thread

So I restructured a central part in my Cocoa application (I really had to!) and I am running into issues since then. Quick outline: my application controls the playback of QuickTime movies so that they are in sync with external timecode. Thus,…
guitarflow
  • 2,930
  • 25
  • 38
0
votes
1 answer

Odd behavior in NSViewController

I've started a tiny project to get my head around NSViewControllers. I have an AppController that handles a NSOpenPanel. Once I get a URL to a movie file, I pass it to a NSViewController subclass (NNMovieViewController). This is how I do…
Wukerplank
  • 4,156
  • 2
  • 28
  • 45
0
votes
1 answer

QTKit QTMovie::insertSegmentOfTrack not working on OS X 10.7 or 10.8

I have a class written using QTKit that reads and creates QuickTime movie files. My function to add an audio track to a movie, which works just fine on Snow Leopard, does not work on Lion or Mountain Lion. The audio information does appear in "Show…
Scott Miller
  • 3
  • 1
  • 2