Edit in GitHubLog an issue
Copied to your clipboard
static var extensionVersion: String
Copied to your clipboard
+ (nonnull NSString*) extensionVersion;
Copied to your clipboard
+ (nonnull NSString*) extensionVersion;
Copied to your clipboard
static func createTracker()
Copied to your clipboard
+ (id<AEPMediaTracker> _Nonnull) createTracker;
Copied to your clipboard
+(ACPMediaTracker* _Nullable) createTracker;
Copied to your clipboard
static func createTrackerWith(config: [String: Any]?)
Copied to your clipboard
+ (id<AEPMobileMediaTracker> _Nonnull) createTrackerWithConfig:(NSDictionary<NSString *,id) * _Nullable) config;
Copied to your clipboard
+ (ACPMediaTracker* _Nullable) createTrackerWithConfig: (NSDictionary* _Nullable) config;
Copied to your clipboard
static func createAdBreakObjectWith(name: String, position: Int, startTime: Double) -> [String: Any]?
Copied to your clipboard
+ (NSDictionary<NSString * ,id> * _Nullable) createAdBreakObjectWith: (NSString * _Nonnull) name
position: (NSInteger) position
startTime: (double) startTime,
Copied to your clipboard
+ (NSDictionary* _Nonnull) createAdBreakObjectWithName: (NSString* _Nonnull) name
position: (double) position
startTime: (double) startTime;
Copied to your clipboard
static func createAdObjectWith(name: String, id: String, position: Int, length: Double) -> [String: Any]?
Copied to your clipboard
+ (NSDictionary<NSString * ,id>) * _Nullable) createAdObjectWith: (NSString * _Nonnull) name
id: (NSString * _Nonnull) id
position: (NSInteger) position
length: (double) length;
Copied to your clipboard
+ (NSDictionary* _Nonnull) createAdObjectWithName: (NSString* _Nonnull) name
adId: (NSString* _Nonnull) adId
position: (double) position
length: (double) length;
Copied to your clipboard
static func createChapterObjectWith(name: String, position: Int, length: Double, startTime: Double) -> [String: Any]?
Copied to your clipboard
+ (NSDictionary<NSString * ,id>) * _Nullable) createChapterObjectWith: (NSString * _Nonnull) name
position: (NSInteger) position
length: (double) length
startTime: (double) startTime;
Copied to your clipboard
+ (NSDictionary* _Nonnull) createChapterObjectWithName: (NSString* _Nonnull) name
position: (double) position
length: (double) length
startTime: (double) startTime;
Copied to your clipboard
static func createQoEObjectWith(bitrate: Double, startupTime: Double, fps: Double, droppedFrames: Double) -> [String: Any]?
Copied to your clipboard
static func createMediaObjectWith(name: String, id: String, length: Double, streamType: String, mediaType: MediaType) -> [String: Any]?
Copied to your clipboard
+ (NSDictionary*<NSString *,id> *_Nullable) createMediaObjectWith: (NSString *, _Nonnull) name
id: (NSString * _Nonnull) id
length: (double) length
streamType: (NSString * _Nonnull) streamType
mediaType: (enum AEPMediaType) mediaType;
Copied to your clipboard
+ (NSDictionary* _Nonnull) createMediaObjectWithName: (NSString* _Nonnull) name
mediaId: (NSString* _Nonnull) mediaId
length: (double) length
streamType: (NSString* _Nonnull) streamType
mediaType: (ACPMediaType) mediaType;
Copied to your clipboard
+ (NSDictionary<NSString * ,id>) * _Nullable) createQoEObjectWith: (double) bitrate
startTime: (double) startTime
fps: (double) fps
droppedFrames: (double) droppedFrames;
Copied to your clipboard
+ (NSDictionary* _Nonnull) createQoEObjectWithBitrate: (double) bitrate
startupTime: (double) startupTime
fps: (double) fps
droppedFrames: (double) droppedFrames;
Copied to your clipboard
static func createStateObjectWith(stateName: String) -> [String: Any]
Copied to your clipboard
+ (NSDictionary<NSString * ,id>) * _Nullable) createStateObjectWith: (NSString * _Nonnull) stateName;
Copied to your clipboard
+ (NSDictionary* _Nonnull) createStateObjectWithName: (NSString* _Nonnull) stateName;
Copied to your clipboard
func trackEvent(event: MediaEvent, info: [String: Any]?, metadata: [String: String]?)
Copied to your clipboard
- (void) trackEvent: (enum AEPMediaEvent) event
info: (NSDictionary* <NSString *,id> * _Nullable) info
data: (NSDictionary* <NSString *,NSString> * _Nullable) data;
Copied to your clipboard
- (void) trackEvent: (ACPMediaEvent) event
info: (NSDictionary* _Nullable) info
data: (NSDictionary* _Nullable) data;
Copied to your clipboard
public func trackSessionStart(info: [String: Any], metadata: [String: String]? = nil)
Copied to your clipboard
- (void) trackSessionStart:(NSDictionary<NSString *,id> * _Nonnull) mediaInfo metadata:(NSDictionary<NSString *,NSString *> * _Nullable) data;
Copied to your clipboard
- (void) trackSessionStart: (NSDictionary* _Nonnull) mediaInfo data: (NSDictionary* _Nullable) contextData;
Copied to your clipboard
func trackPlay()
Copied to your clipboard
- (void) trackPlay;
Copied to your clipboard
- (void) trackPlay;
Copied to your clipboard
func trackPause()
Copied to your clipboard
- (void) trackPause;
Copied to your clipboard
- (void) trackPause;
Copied to your clipboard
func trackComplete()
Copied to your clipboard
- (void) trackComplete;
Copied to your clipboard
- (void) trackComplete;
Copied to your clipboard
func trackSessionEnd()
Copied to your clipboard
- (void) trackSessionEnd;
Copied to your clipboard
- (void) trackSessionEnd;
Copied to your clipboard
func trackError(errorId: String)
Copied to your clipboard
- (void) trackError: (NSString* _Nonnull) errorId;
Copied to your clipboard
- (void) trackError: (NSString* _Nonnull) errorId;
Copied to your clipboard
func updateCurrentPlayhead(time: Double)
Copied to your clipboard
- (void) updateCurrentPlayhead: (double) time;
Copied to your clipboard
- (void) updateCurrentPlayhead: (double) time;
Copied to your clipboard
func updateQoEObject(qoe: [String: Any])
Copied to your clipboard
- (void) updateQoEObject: (NSDictionary*<NSString *,id> _Nonnull) qoeObject;
Copied to your clipboard
- (void) updateQoEObject: (NSDictionary* _Nonnull) qoeObject;
Copied to your clipboard
public enum MediaType: Int, RawRepresentable {
//Constant defining media type for Video streams
case Audio
//Constant defining media type for Audio streams
case Video
}
Copied to your clipboard
@objc(AEPMediaType)
public enum MediaType: Int, RawRepresentable {
//Constant defining media type for Video streams
case Audio
//Constant defining media type for Audio streams
case Video
}
Copied to your clipboard
typedef NS_ENUM(NSInteger, ACPMediaType) {
/**
* Constant defining media type for Video streams
*/
ACPMediaTypeVideo,
/**
* Constant defining media type for Audio streams
*/
ACPMediaTypeAudio
};
Copied to your clipboard
public class StreamType: NSObject {
// Constant defining stream type for VOD streams.
public static let VOD = "vod"
}
Copied to your clipboard
public class MediaConstants: NSObject {
@objc(AEPMediaStreamType)
public class StreamType: NSObject {
// Constant defining stream type for VOD streams.
public static let VOD = "vod"
}
}
Copied to your clipboard
/**
* Constant defining stream type for VOD streams
*/
FOUNDATION_EXPORT NSString* _Nonnull const ACPMediaStreamTypeVod;
Copied to your clipboard
public class VideoMetadataKeys: NSObject {
public static let SHOW = "a.media.show"
}
Copied to your clipboard
public class MediaConstants: NSObject {
@objc(AEPVideoMetadataKeys)
public class VideoMetadataKeys: NSObject {
public static let SHOW = "a.media.show"
}
}
Copied to your clipboard
FOUNDATION_EXPORT NSString* _Nonnull const ACPVideoMetadataKeyShow;
Copied to your clipboard
public class AudioMetadataKeys: NSObject {
public static let ARTIST = "a.media.artist"
}
Copied to your clipboard
public class MediaConstants: NSObject {
@objc(AEPAudioMetadataKeys)
public class AudioMetadataKeys: NSObject {
public static let ARTIST = "a.media.artist"
}
}
Copied to your clipboard
FOUNDATION_EXPORT NSString* _Nonnull const ACPAudioMetadataKeyArtist;
Copied to your clipboard
public class AdMetadataKeys: NSObject {
public static let ADVERTISER = "a.media.ad.advertiser"
}
Copied to your clipboard
public class MediaConstants: NSObject {
@objc(AEPAdMetadataKeys)
public class AdMetadataKeys: NSObject {
public static let ADVERTISER = "a.media.ad.advertiser"
}
}
Copied to your clipboard
FOUNDATION_EXPORT NSString* _Nonnull const ACPAdMetadataKeyAdvertiser;
Copied to your clipboard
public class PlayerState: NSObject {
public static let FULLSCREEN = "fullscreen"
}
Copied to your clipboard
public class MediaConstants: NSObject {
@objc(AEPMediaPlayerState)
public class PlayerState: NSObject {
public static let FULLSCREEN = "fullscreen"
}
}
Copied to your clipboard
FOUNDATION_EXPORT NSString* _Nonnull const ACPMediaPlayerStateFullScreen;
Copied to your clipboard
public enum MediaEvent: Int, RawRepresentable {
// event type for AdBreak start
case AdBreakStart
}
Copied to your clipboard
@objc(AEPMediaEvent)
public enum MediaEvent: Int, RawRepresentable {
// event type for AdBreak start
case AdBreakStart
}
Copied to your clipboard
typedef NS_ENUM(NSInteger, ACPMediaEvent) {
/**
* Constant defining event type for AdBreak start
*/
ACPMediaEventAdBreakStart,
}
Copied to your clipboard
public class MediaObjectKey: NSObject {
public static let RESUMED = "media.resumed"
}
}
Copied to your clipboard
public class MediaConstants: NSObject {
@objc(AEPMediaObjectKey)
public class MediaObjectKey: NSObject {
public static let RESUMED = "media.resumed"
}
}
Copied to your clipboard
FOUNDATION_EXPORT NSString* _Nonnull const ACPMediaKeyMediaResumed;
Was this helpful?
  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2024 Adobe. All rights reserved.