Core Video is a pipeline model for digital video in MacOS X 10.4, iOS 4.0 and above.
0
votes
0answers
48 views
QTVisualContextCopyImageForTime CVPixelBufferGetBaseAddress
I'm trying to fetch image data from a movie using QTVisualContextCopyImageForTime which works fine when I use [CIImage imageWithCVImageBuffer:]. The image can be outputted to an NSImageView (for ...
0
votes
2answers
128 views
Converting raw data to displayable video for iOS
I have an interesting problem I need to research related to very low level video streaming.
Has anyone had any experience converting a raw stream of bytes(separated into per pixel information, but ...
0
votes
0answers
62 views
OSX CVDisplayLink for multiple monitors with different refresh rates
I'm working on an OpenGL app for OSX 10.8 that will use all available monitors in fullscreen.
I would like to know how often a CVDisplayLinkOutputCallback will be called for a CVDisplayLink obtained ...
0
votes
2answers
127 views
CVPixelBuffer to CIImage always returning nil
I am trying to convert a pixelBuffer extracted from AVPlayerItemVideoOutput to CIImage but always getting nil.
The Code
if([videoOutput_ ...
0
votes
0answers
116 views
How to do real time video editing by applying CIFilters in iOS 5 & iOS 6 maintaining 30 FPS [Frames Per Second]?
I am new to real-time video editing in iPhone.My goal is to achieve highest frame rate during video editing while working on GPU. I want to support iOS 5 & above with available CIFilters.
Kindly ...
0
votes
1answer
79 views
CVPixelBuffer to FBO
I have an application where I would like to use an FBO to display an image of a QuickTime movie.
I'm totally new to FBOs and only got a little bit of knowledge on OpenGL.
I got problems understanding ...
0
votes
1answer
106 views
iOS 6: AVPlayerItem PresentationSize returning zero - (naturalSize method Deprecated on iOS 5)
Got this code:
videoSize = [[AVPlayerItem playerItemWithAsset:asset] presentationSize];
// nslogs -> height: 000 width 000
And this deprecated:
videoSize = [asset naturalSize];
// nslogs ...
0
votes
0answers
159 views
iphone app crash when using recorded video
My application is crashing when user taps on 'Use' button followed by 'Play' button after recording a video. I dont understand why this is happening. Please help
Here's the crash report:
Nov 29 ...
1
vote
0answers
57 views
Are CVOpenGL[ES]TextureCaches incompatible with floating point formats?
On OSX10.4/iOS5 and onwards you can optimize your texture uploads and downloads using CVOpenGL[ES]TextureCaches.
Instead of uploading textures with glTexImage2D and reading from the frame buffer ...
0
votes
0answers
355 views
How to choose the a pixel format type (kCVPixelBufferPixelFormatTypeKey) for use with AVAssetReader?
We are using AVAssetReader and AVAssetWriter somewhat in the style as noted in Video Encoding using AVAssetWriter - CRASHES basically to read a video what we got from the photo gallery / asset library ...
0
votes
0answers
176 views
Core Video pixel buffers as GL_TEXTURE_2D
So I've setup CVPixelBuffer's and tied them to OpenGL FBOs successfully on iOS. But now trying to do the same on OSX has me snagged.
The textures from CVOpenGLTextureCacheCreateTextureFromImage ...
0
votes
2answers
113 views
Will the app be reject because it uses CoreVideo.framework?
According to the apple document, CoreVideo.framework is "Contains low-level routines for manipulating audio and video. Do not use this framework directly."
So, will my app be reject if i use it?
0
votes
1answer
308 views
Fast Screen Recording of iOS App
I'm new to OpenGL ES.
I'm trying to write code for screen recording of iOS apps, especially games.
I'm using the 'render to texture' method described with code in this answer to capture screen and ...
0
votes
1answer
168 views
BGRA being read as RGBA
I am using AVCapture foundation to retrieve images (from the iphone 4 front camera) through the delegate call back. I have specified BGRA as the format with the following:
...
0
votes
1answer
667 views
Rotate an AVAsset with AVAssetExportSession
I'm trying to rotate a video to its correct orientation using an AVAssetExportSession and I always get the following error:
Error Domain=AVFoundationErrorDomain Code=-11841 "The operation couldn’t be ...
4
votes
1answer
687 views
pixel updating - with CGImage and direct CGDataProvider
Actual Question
Several types of answers will solve my problem:
Can I force a CGImage to reload its data from a direct data provider (created with CGDataProviderCreateDirect) like ...
0
votes
1answer
776 views
Load video from iPhone library, modify frame and play it in real-time
I'm looking for a tips to develop an application for iPhone/iPad that will be able to process video (let's consider only local files stored on the device for simplicity) and play it in real-time. For ...
1
vote
1answer
412 views
Porting CVOpenGLESTextureCacheCreateTextureFromImage to normal OpenGL ES methods
I'm working on an app that feeds video frames coming from the camera into an OpenGL ES texture to create some effects. The app uses Core Video and its many convenience methods to create OpenGL ...
0
votes
1answer
290 views
High-performance copying of RGB pixel data to the screen in iOS
Our product contains a kind of software image decoder that essentially produces full-frame pixel data that needs to be rapidly copied the screen (we're running on iOS).
Currently we're using ...
0
votes
1answer
94 views
Filter Live camera feed
So i've been using UIImagepickercontroller to access the camera for photo and video capture, then i wanted to apply filters on those 2 sources, i succeeded with filtering token photos but i'am having ...
1
vote
0answers
330 views
How to correctly orient image generated from AVCaptureVideoDataOutputSampleBufferDelegate
I'm using AVCaptureVideoDataOutputSampleBufferDelegate and I receive a CMSampleBufferRef wich I convert to a UIImage - but the resulting image isn't correctly oriented.
// Get a CMSampleBuffer's Core ...
0
votes
1answer
292 views
Core video - displaylink I need help interpreting CVTimeStamp
Core video experts, I'm creating a custom video player for .mov files. I have the .mov parser working and using the QTCoreVideo101 sample I am trying to play video.
The problem I have is the display ...
0
votes
1answer
505 views
Memory leak in CoreImage/CoreVideo
I'm build an iOS app that does some basic detection.
I get the raw frames from AVCaptureVideoDataOutput, convert the CMSampleBufferRef to a UIImage, resize the UIImage, then convert it to a ...
0
votes
0answers
179 views
Using CIContext in NSOpenGLView
I have been exploring the CIVideoDemoGL example on Apple's website. The example utilizes a CIContext within an NSOpenGLView. A QTMovie is rendered to a QTVisualContextRef which is then converted into ...
1
vote
1answer
413 views
Why AVAssetWriter inflates video file?
Strange problem. I take frames from a video file (.mov) and write them with AVAssetWriter to another file without any explicit processing. Actually I just copy the frame from one memory buffer to ...
0
votes
1answer
152 views
Cloning CVPixelBuffer - how to?
Say I have some pixel buffer associated with variable:
CVPixelBufferRef a;
I want to clone that buffer with all it contents and assign the cloned one to another variable.
What is the most correct ...
0
votes
1answer
206 views
NSOpenGLContext + YUV to RGB Shader + Incorrect Render
I'm rendering YUV frames using NSOpenGLContext, OpenGL and a Shader to perform YUV to RGB conversion on the GPU.
The output is not what is expected. From the image below what might be the problem?
0
votes
1answer
2k views
Create CVPixelBufferRef from CIImage for Writing to File
I'm writing a custom Movie Recording app and have implemented AVAssetWriter and AVAssetWriterInputPixelBufferAdaptor for writing frames to a file. In the DataOutputDelegate callback I am trying to ...
3
votes
1answer
2k 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
835 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
838 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] ...
2
votes
0answers
1k 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 ...
2
votes
0answers
252 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
90 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
376 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 ...
0
votes
0answers
568 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 ...
2
votes
0answers
655 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 ...
4
votes
4answers
3k 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 ...
1
vote
1answer
548 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 ...
2
votes
1answer
499 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.
...
1
vote
0answers
198 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 ...
2
votes
1answer
2k 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 ...
5
votes
2answers
5k 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 ...
1
vote
2answers
426 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 ...
2
votes
0answers
422 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 ...
10
votes
2answers
7k views
How to get Bytes from CMSampleBufferRef , To Send Over Network
Am Captuing video using AVFoundation frame work .With the help of Apple Documentation ...
34
votes
2answers
1k 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, ...
2
votes
0answers
446 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 ...
1
vote
3answers
2k 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
571 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 ...

