VLCKit
Instance Methods | Class Methods | Properties | List of all members
VLCLibrary Class Reference

#import <VLCLibrary.h>

Inheritance diagram for VLCLibrary:

Instance Methods

(instancetype) - initWithOptions:
 
(void) - setHumanReadableName:withHTTPUserAgent:
 
(void) - setApplicationIdentifier:withVersion:andApplicationIconName:
 

Class Methods

(VLCLibrary *) + sharedLibrary
 

Properties

BOOL debugLogging
 
int debugLoggingLevel
 
NSString * version
 
NSString * compiler
 
NSString * changeset
 
void * instance
 

Detailed Description

The VLCLibrary is the base library of VLCKit.framework. This object provides a shared instance that exposes the internal functionalities of libvlc and libvlc-control. The VLCLibrary object is instantiated automatically when VLCKit.framework is loaded into memory. Also, it is automatically destroyed when VLCKit.framework is unloaded from memory.

Currently, the framework does not support multiple instances of VLCLibrary. Furthermore, you cannot destroy any instance of VLCLibrary; this is done automatically by the dynamic link loader.

Method Documentation

◆ initWithOptions:()

- (instancetype) initWithOptions: (NSArray *)  options

Returns an individual instance which can be customized with options

Parameters
optionsNSArray with NSString instance containing the options
Returns
the individual library instance

◆ setApplicationIdentifier:withVersion:andApplicationIconName:()

- (void) setApplicationIdentifier: (NSString *)  identifier
withVersion: (NSString *)  version
andApplicationIconName: (NSString *)  icon 

Sets meta-information about the application

Parameters
identifierJava-style application identifier, e.g. "com.acme.foobar"
versionApplication version numbers, e.g. "1.2.3"
iconApplication icon name, e.g. "foobar"

◆ setHumanReadableName:withHTTPUserAgent:()

- (void) setHumanReadableName: (NSString *)  readableName
withHTTPUserAgent: (NSString *)  userAgent 

Sets the application name and HTTP User Agent libvlc will pass it to servers when required by protocol

Parameters
readableNameHuman-readable application name, e.g. "FooBar player 1.2.3"
userAgentHTTP User Agent, e.g. "FooBar/1.2.3 Python/2.6.0"

◆ sharedLibrary()

+ (VLCLibrary *) sharedLibrary

Returns the library's shared instance

Returns
The library's shared instance

Property Documentation

◆ changeset

- (NSString*) changeset
readatomiccopy

Returns the library's changeset

Returns
The library version example "adfee99"

◆ compiler

- (NSString*) compiler
readatomiccopy

Returns the compiler used to build the libvlc binary

Returns
The compiler version string.

◆ debugLogging

- (BOOL) debugLogging
readwritenonatomicassign

Enables/disables debug logging

Note
NSLog is used to log messages

◆ debugLoggingLevel

- (int) debugLoggingLevel
readwritenonatomicassign

Gets/sets the debug logging level

Note
Logging level ranges from 0 (just error messages) to 4 (everything)
Warning
If an invalid level is provided, level defaults to 0

◆ instance

- (void*) instance
readwritenonatomicassign

libvlc instance wrapped by the VLCLibrary instance

Note
If you want to use it, you are most likely wrong (or want to add a proper ObjC API)

◆ version

- (NSString*) version
readatomiccopy

Returns the library's version

Returns
The library version example "0.9.0-git Grishenko"

The documentation for this class was generated from the following file: