Vuo  2.0.0
VuoAvWriterObject.h
Go to the documentation of this file.
1 
10 #ifndef NS_RETURNS_INNER_POINTER
12 #define NS_RETURNS_INNER_POINTER
13 #endif
14 #import <Cocoa/Cocoa.h>
15 #undef NS_RETURNS_INNER_POINTER
16 
17 #include "VuoMovieFormat.h"
18 
22 @interface VuoAvWriterObject : NSObject
23 
25 - (BOOL) isRecording;
26 
28 - (BOOL) setupAssetWriterWithUrl:(NSURL*) fileUrl imageWidth:(int)width imageHeight:(int)height channelCount:(int)channels movieFormat:(VuoMovieFormat)format;
29 
35 - (void) appendImage:(VuoImage)image presentationTime:(double)timestamp blockIfNotReady:(BOOL)blockIfNotReady;
36 
41 - (void) appendAudio:(VuoList_VuoAudioSamples) samples presentationTime:(VuoReal)timestamp blockIfNotReady:(BOOL)blockIfNotReady;
42 
46 - (void) finalizeRecording;
47 
48 @end