Inherits from VSingleton
Declared in VMediaExtracter.h

Overview

The Vitamio main class that provide all control about extract info from media.

Tasks

Shared Instance

Initialization & disposal

Extract methods

Class Methods

sharedInstance

Returns the share singleton instance.

+ (VMediaExtracter *)sharedInstance

Declared In

VMediaExtracter.h

Instance Methods

setDataSource:

Set the media url to media extracter.

- (BOOL)setDataSource:(NSString *)mediaURL

Parameters

mediaURL

The url of media want to extract.

See Also

Declared In

VMediaExtracter.h

reset

Resets the media extracter to its uninitialized state.

- (void)reset

Discussion

After calling this method, you will have to initialize it again by setting the data source setDataSource:.

See Also

Declared In

VMediaExtracter.h

getFrameAtTime:

Get the video frame at given time position.

- (UIImage *)getFrameAtTime:(int)timeMs

Parameters

timeMs

the offset in milliseconds from the start to extract.

Return Value

Return the UIImage object for success, nil otherwise.

Declared In

VMediaExtracter.h