The core-video tag has no wiki summary.
33
votes
2answers
846 views
Cocoa drawing on different screens loses performance
I have a document-based app, where each document has one window with an NSScrollView that does some (fairly continuous) drawing using only Cocoa.
To call the drawing, I am using a CVDisplayLink, ...
5
votes
2answers
2k views
How to get Bytes from CMSampleBufferRef , To Send Over Network
Am Captuing video using AVFoundation frame work .With the help of Apple Documentation ...
4
votes
1answer
634 views
Core Video examples for iOS
Does anyone know of any tutorials and examples for using Core Video except for the Core Video Programming Guide?
4
votes
1answer
2k views
How do I convert a CGImage to CMSampleBufferRef?
I’d like to convert a CGImage to CMSampleBufferRef and append it to a AVAssetWriterInput using the appendSampleBuffer: method. I’ve managed to get the CMSampleBufferRef using the following code, but ...
2
votes
0answers
259 views
iOS: Cropping a CMSampleBufferRef before appending to AVAssetWriterInput
I'm currently experimenting with CoreImage, learning how to apply CIFilters to a camera feed. Presently I'm succeeded in taking a camera feed, applying a filter and writing the feed to an ...
2
votes
3answers
486 views
Knowing resolution of AVCaptureSession's session presets
I'm accessing the camera in iOS and using session presets as so:
captureSession.sessionPreset = AVCaptureSessionPresetMedium;
Pretty standard stuff. However, I'd like to know ahead of time the ...
2
votes
1answer
190 views
Does AVQueuePlayer support asynchronously adding AVPlayerItems?
I have a video player that needs to play a sequence of videos from the network. The URLs for these videos are not known in advance, as they come from XML or JSON responses from other HTTP requests.
...
2
votes
1answer
713 views
Reading video frame-by-frame under iOS
I'm looking for a way to retrieve the individual frames of a video using iOS API.
I tried using AVAssetImageGenerator but it seems to only provide frame to the nearest second which is a bit too rough ...
2
votes
0answers
262 views
first memcpy into buffer faster than direct access to pixels of CVPixelBufferGetBaseAddress
I noticed that accessing the pixels returned by CVPixelBufferGetBaseAddress directly (I'm using two nested for-loops) is about 100 times slower than first allocating a buffer with malloc, memcpy the ...
2
votes
2answers
842 views
iOS CoreVideo Memory Leaks
Can somebody help me trace these CoreVideo memory leaks when running Instruments in XCode?
Basically, the memory leak happens when I press the "Record Video" button on my custom motion jpeg player. I ...
2
votes
0answers
169 views
use core-image in 3d
i have a working Core Video setup (a frame captured from a USB camera via QTKit) and the current frame is rendered as a texture on an arbitary plane in 3d space in a subclassed NSOpenGLView. so far so ...
2
votes
0answers
492 views
Movie time from QTVisualContext given CVTimeStamp in CAOpenGLLayer rendering method?
I'm using the standard CoreVideo Display Link + QTVisualContext to render a QuickTime movie into an NSOpenGLView subclass. I would now like to synchronize a timeline view with movie playback. The ...
1
vote
0answers
40 views
Using OpenGL ES texture caches instead of glReadPixels to get texture data
In iOS 5, OpenGL ES Texture caches were introduced to provide a direct way from the camera video data to OpenGL without the need of copying the buffers. There was a brief introduction to texture ...
1
vote
2answers
93 views
How to convert an OpenGL ES texture into a CIImage
I know how to do it the other way around. But how can I create a CIImage from a texture, without having to copy into CPU memory? [CIImage imageWithData]? CVOpenGLESTextureCache?
1
vote
1answer
118 views
How to fix leak CVPixelBuffer
please tell me where is leak in this code...
//here I did video with images from Document Directory
- (void) testCompressionSession:(NSString *)path
{
if ([[NSFileManager defaultManager] ...
1
vote
0answers
63 views
AVAssetWriterInputPixelBufferAdaptor memory management
I'm writing some frames to video with AVAssetWriterInputPixelBufferAdaptor, and when I write a lot of frames my app crashes because of memory allocation. How can I prevent that? Here is the code:
...
1
vote
0answers
25 views
how to add the effect of transition from one picture to another in AVWriterInput
I did it with QuartzCore, but was Recieve Memory, because buffer
occupy too much memory. working on simulator but in device no.
please help me. it's possible append frames direct to video file.
...
1
vote
2answers
136 views
glGetTexImage doesn't work with CVOpenGLTextureRef
I'm writing an app for Mac OS X with OpenGL 2.1
I have a CVOpenGLTextureRef which holds the texture that I render with GL_QUADS and everything works fine.
I now need to determine which pixels of the ...
1
vote
1answer
189 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
0answers
99 views
How fast do I need to draw with CVDisplayLink?
How fast do I need to draw with CVDisplayLink?
Am I correct in thinking that, after drawing my scene in my display link callback, if CVGetCurrentHostTime() > outputTime->hostTime, then I've ...
1
vote
1answer
89 views
CVImageBuffer comes back with extra column padding. How do I crop it?
I have a CVImageBuffer that comes back with recorded height of 640px and width of 852px. The bytes per row are 3456. You'll notice that 3456/852px != 4 (it's something like 4.05). After some ...
1
vote
3answers
676 views
AVAssetWriterInputPixelBufferAdaptor returns null pixel buffer pool
I'm sure something's wrong with my buffer attributes, but it's not clear to me what -- it's not well documented what's supposed to go there, so I'm guessing based on CVPixelBufferPoolCreate -- and ...
1
vote
1answer
285 views
How to Create a CVOpenGLTextureRef from a OpenGL Texture
I have a little Project setup using OpenGL and Core Video. I render to a FBO and use this as a Texture for other parts of the Programm, but it would be nicer to pass this Texture reference in form of ...
1
vote
2answers
610 views
Saving video screencast of iPhone application
Is there a way to capture video of a screen from your own application? As far as I see there is no way to do it with UIImagePickerController (cameras only), but maybe there is a way to do it with iOS ...
1
vote
2answers
402 views
iPhone: Real-time video color info, focal length, aperture?
Is there any way using AVFoundation and CoreVideo to get color info, aperture and focal length values in real-time?
Let me explain. Say when I am shooting video I want to sample the color in a small ...
1
vote
1answer
233 views
hardware acceleration / performance and linkage of different macosx graphics apis, frameworks and layers
the more i read about the different type of views/context/rendering backends, the more i get confused.
regarding to http://en.wikipedia.org/wiki/Quartz_%28graphics_layer%29
MacOSX offers Quartz ...
1
vote
2answers
788 views
Getting PIX_FMT_YUYV422 out of libswscale
I'm trying to learn to use the different ffmpeg libs with Cocoa, and I'm trying to get frames to display with help of Core Video. It seems I have gotten the CV callbacks to work, and it gets frames ...
0
votes
0answers
56 views
CVPixelBufferRef or CVImageBufferRef from NSView
Is there a way to get the CVPixelBufferRef or CVImageBufferRef currently being rendered at a particular point in time given the NSView object? I am using a third party library to handle the rendering ...
0
votes
0answers
249 views
AVFoundation: Read video from file — process frames+audio and reoutput
I've been banging my head against this for a while but can't figure out what I'm doing wrong. I want to read a video file -- process the frames ... then re output it:
The problem I"m facing is that ...
0
votes
0answers
203 views
CGContextFillRect bottleneck in live photo effect preview
I'm trying to make a live preview of taking a photo with a tint effect, using CGContextFillRect with kCGBlendModeMultiply. It is causing memory problems and very slow performance.
This (photo preview ...
0
votes
1answer
651 views
Changing video Frame size using AVFoundation
I am trying to change the video frame size to square i.e 100 x 100. Here is the code:
- (void) changeSize :(NSURL *) url
{
//Create audio/video Settings
NSDictionary *videoSettings = [NSDictionary ...
0
votes
0answers
195 views
Playing Raw Video data in ios
I have an audio file and a video file containing raw audio and video data respectively. I have successfully played the audio file on ios using CoreAudio and AudioToolBox Frameworks. Now I want to play ...
0
votes
1answer
567 views
Creating video from scratch in iOS
I've got an app where the user shoots some video, enters a title for it, and picks a music track. I've got the music dubbing working with AVMutableComposition, but the titling is a bad hack -- just a ...
0
votes
1answer
478 views
Real-time way to extract all video frames in YV12 (YUV420) format from QuickTime movie?
I have QTMovie open in QTKit.
I need to get each frame of this video in YV12 format (kYUV420PixelFormat), in real time (ie. I'm passing it to foreign code which only accepts YV12 and needs to play ...
0
votes
0answers
58 views
Supply video buffers during play
Is there a way to play a video where the buffers are supplied through a callback during play time?
0
votes
3answers
333 views
I need to upload a video file to a web server iphone sdk
I need to upload a video file to a web server iphone sdk. It is just a quicktime movie.