|
@@ -282,6 +282,12 @@ extern NSString * VLCMediaPlayerStateToString(VLCMediaPlayerState state);
|
|
|
@property (NS_NONATOMIC_IOSONLY, readonly, copy) NSArray *videoTrackIndexes;
|
|
|
|
|
|
/**
|
|
|
+ * returns the number of video tracks available in the current media
|
|
|
+ * \return number of tracks
|
|
|
+ */
|
|
|
+@property (NS_NONATOMIC_IOSONLY, readonly) int numberOfVideoTracks;
|
|
|
+
|
|
|
+/**
|
|
|
* Return the video tracks
|
|
|
*
|
|
|
* It includes the disabled fake track at index 0.
|
|
@@ -311,6 +317,12 @@ extern NSString * VLCMediaPlayerStateToString(VLCMediaPlayerState state);
|
|
|
@property (NS_NONATOMIC_IOSONLY, readonly, copy) NSArray *videoSubTitlesIndexes;
|
|
|
|
|
|
/**
|
|
|
+ * returns the number of SPU tracks available in the current media
|
|
|
+ * \return number of tracks
|
|
|
+ */
|
|
|
+@property (NS_NONATOMIC_IOSONLY, readonly) int numberOfSubtitlesTracks;
|
|
|
+
|
|
|
+/**
|
|
|
* Return the video subtitle tracks
|
|
|
* \note this property is deprecated. use (NSArray *)videoSubtitleNames instead.
|
|
|
* It includes the disabled fake track at index 0.
|
|
@@ -381,6 +393,12 @@ extern NSString * VLCMediaPlayerStateToString(VLCMediaPlayerState state);
|
|
|
@property (NS_NONATOMIC_IOSONLY, readonly, copy) NSArray *audioTrackIndexes;
|
|
|
|
|
|
/**
|
|
|
+ * returns the number of audio tracks available in the current media
|
|
|
+ * \return number of tracks
|
|
|
+ */
|
|
|
+@property (NS_NONATOMIC_IOSONLY, readonly) int numberOfAudioTracks;
|
|
|
+
|
|
|
+/**
|
|
|
* Return the audio tracks
|
|
|
*
|
|
|
* It includes the "Disable" fake track at index 0.
|