VLCKit
|
#import <VLCMediaPlayer.h>
Instance Methods | |
(void) | - mediaPlayerStateChanged: |
(void) | - mediaPlayerTimeChanged: |
(void) | - mediaPlayerTitleChanged: |
(void) | - mediaPlayerChapterChanged: |
(void) | - mediaPlayerLoudnessChanged: |
(void) | - mediaPlayerSnapshot: |
(void) | - mediaPlayerStartedRecording: |
(void) | - mediaPlayer:recordingStoppedAtPath: |
Formal protocol declaration for playback delegates. Allows playback messages to be trapped by delegated objects.
|
optional |
Sent by the default notification center whenever the player stopped recording.
player | the player who stopped recording |
path | the path to the file that the player recorded to |
|
optional |
Sent by the default notification center whenever the player's chapter has changed (if any).
Discussion The value of aNotification is always an VLCMediaPlayerChapterChanged notification. You can retrieve the VLCMediaPlayer object in question by sending object to aNotification.
|
optional |
Sent by the default notification center whenever the player's loundess has changed (if any).
Discussion The value of aNotification is always an VLCMediaPlayerLoudnessChanged notification. You can retrieve the VLCMediaPlayer object in question by sending object to aNotification.
|
optional |
Sent by the default notification center whenever a new snapshot is taken.
Discussion The value of aNotification is always an VLCMediaPlayerSnapshotTaken notification. You can retrieve the VLCMediaPlayer object in question by sending object to aNotification.
|
optional |
Sent by the default notification center whenever the player started recording.
player | the player who started recording |
|
optional |
Sent by the default notification center whenever the player's state has changed.
Discussion The value of aNotification is always an VLCMediaPlayerStateChanged notification. You can retrieve the VLCMediaPlayer object in question by sending object to aNotification.
|
optional |
Sent by the default notification center whenever the player's time has changed.
Discussion The value of aNotification is always an VLCMediaPlayerTimeChanged notification. You can retrieve the VLCMediaPlayer object in question by sending object to aNotification.
|
optional |
Sent by the default notification center whenever the player's title has changed (if any).
Discussion The value of aNotification is always an VLCMediaPlayerTitleChanged notification. You can retrieve the VLCMediaPlayer object in question by sending object to aNotification.