quicktime

iphone QuickTime error

Hi all, I try to play simple mp3 file iPhone simulator in my Mac. I use AVFoundation.framework and AVAudioPlayer. In one of my mac everything is OK, but in onother Mac, when i build app ( simulator 2.2 ) give me error: Error is: Error loading /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder: dlopen(/Library/QuickT...

How do i create a movie from a set of images using qtj and java?

I have a set of images i want to add one after another and create a movie. I will be using Quicktime for java for this(I'm on a mac). I searched the web i have found lots of examples that show how to play movies using qtj, but i can't find any code snippets or tutorials showing how i can create a movie frame by frame using qtj? ...

Cross-Platform webcam access

I'm looking for a cross-platform video capture library, for webcam access. One that wraps V4L/V4L2 on Linux, DirectShow on Windows, and QuickTime on the Mac. C or C++ is preferred, but I can work in Java or Python if those have better options for libraries. ...

How to get rid of white space around an <embed> element?

SUMMARY: an embed with 100% width and height pushes its parents size to be 100% width and height of the grandparent. How do I get the embed element to collapse all the white space around it so that it fits the width and height of its parent perfectly? I have a page with an image, which upon being clicked gets replaced by an embed elemen...

What is a good tutorial on the QuickTime API for MS Windows?

I'm working on a project that has to read and manipulate QuickTimes on Windows. Unfortunately, all the tutorials and sample code at the Apple site seem to be pretty much Mac specific. Is there a good resource on the web that deals specifically with programming QuickTime for Windows? Yes, I know that I can bludgeon my way (eventually) thr...

QuickTime for Java vs. iTunes DRM

The Apple QuickTime standalone player can manage iTunes' DRM scheme well enough to play movies downloaded from iTunes with no problem. Is there any way to get QuickTime for Java to handle iTunes DRM similarly well, or is that simply beyond the software's abilities? ...

swf to quicktime

Hi, I have a flash file that contains actionscript3 in it. I am trying to export my file as a .mov to play in quicktime. Sometimes it will work, then if I make a change to my file (moving a few frames around, but not changing the script at all), it will then export an empty file. Does any one have any tips on what I can do? Maybe how to...

AppleScript to bath export from QuickTime: Can't get it to export as .mov instead of .mp4

I need to export /compress a bunch of large .avis to .movs. I found the Action Script below (taken from http://ldopa.net/2008/05/23/batch-export-for-quicktime-pro/) to do that. It successfully takes the videos from a folder called "Input" on the desktop and exports them to a folder called "Export" on the desktop. Only problem is thou...

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 724x480. When I choose QT Profile for H264High, it by default takes only 724x480 NTSC resolution output file but my camera is 724x568 so the fi...

Set resolution in QTCapture?

I'm recording from a webcam. The camera looks great in PhotoBooth. However, when I preview it in my program with a QTCaptureView, or record it to a file, it is very, very slow. The reason is that QuickTime is giving me the maximum possible resolution of 1600x1200. How can I force a more reasonable size for both my QTCaptureView and my re...

Using QTKit to capture directly to a QTMovie

Is there any way to use QTKit to capture directly to a QTMovie, without having to go to disk first? I'm trying to glue a couple of pieces of video that I've captured together (with appendSelectionFromMovie:), and waiting for the video to be written to disk and then reading them back is inefficient and dumb. ...

How to move the cursor of a QTMovie?

I have an array of objects that have QTTime structs as attributes. The objects are in an NSArrayController which is bound to an NSTableView. I have a QTMovieView set up as an IBOutlet. I want to have it such that when an item in the NSTableView is selected the QTMovieView's cursor is moved to the time indicated in the selected objects...

Flipping Quicktime preview & capture

I need to horizontally flip some video I'm previewing and capturing. A-la iChat, I have a webcam and want it to appear as though the user is looking in a mirror. I'm previewing Quicktime video in a QTCaptureView. My capturing is done frame-by-frame (for reasons I won't get into) with something like: imageRep = [NSCIImageRep imageRepWit...

How do I load a MOV file into Flash 9

I am having issues loading an MOV file into Flash 9. When I google the question, I get alot of people say sure you can do it, but nobody provides working sample code. ...

Make QTMovieView full screen

I have a QTMovieView set up as an IBOutlet. I want to play the video in full screen. Which method allows this? ...

Video streaming woes

Hey everyone! I'm working on a video streaming application, where compatibility has so far been limited to Windows and IE (though it seems to work well enough on Firefox as well) I have been tasked to get it to work on Macs, and in the future Unix as well, but I figure that if I get Macs to work, UNIX will follow. We're using a Windo...

QuickTime Plugin not sending cookies

The application has a page with thumbnails. Clicking on a thumbnail calls the SetURL() javascript function on the player object. In Safari on Windows, about 75% of the time, the plugin makes the request, sends the cookie, and life is good. The other 25% of the time, it fails to load at all half the time and when it does load, it won't...

How to revert back to poster image when Quicktime movie has played?

I have a Quicktime movie that has a poster image, when the movie is done I would like it to revert back to this poster image. Is this possible? ...

How to show quicktime videos in succession

How do I have two or more quicktime videos to play one after the other, with no action taken by the user? I've seen an example of the technique here: http://untitled.wiredrive.com//l/p/?presentation=7c79bedbb8b02d2b1da45b033cc20345 I can't seem to boil down their code to the good stuff. Thanks! ...

Reading timecode track data using the C# version of Quicktime

Hi, I'm using the .Net activeX component of Quicktime. I would like to read the timecode track data contained in a QTMovie track. I can already select my timecode track like this : // Valid Quicktime movie QTMovie movie; QTUtils qtu = new QTUtils(); for (int i = 1; i <= movie.Tracks.Count; i++) { if (movie.Tracks[i].Type == qtu.St...