Vuo  2.3.2
VuoAvWriterObject.h
Go to the documentation of this file.
1 
10 #include "VuoMacOSSDKWorkaround.h"
11 #import <Foundation/Foundation.h>
12 
13 #include "VuoMovieFormat.h"
14 
18 @interface VuoAvWriterObject : NSObject
19 
21 - (BOOL) isRecording;
22 
24 - (BOOL) setupAssetWriterWithUrl:(NSURL*) fileUrl imageWidth:(int)width imageHeight:(int)height channelCount:(int)channels movieFormat:(VuoMovieFormat)format;
25 
31 - (void) appendImage:(VuoImage)image presentationTime:(double)timestamp blockIfNotReady:(BOOL)blockIfNotReady;
32 
37 - (void) appendAudio:(VuoList_VuoAudioSamples) samples presentationTime:(VuoReal)timestamp blockIfNotReady:(BOOL)blockIfNotReady;
38 
42 - (void) finalizeRecording;
43 
44 @end