// // TWTRVideoMetaData.h // TwitterKit // // Copyright © 2016 Twitter. All rights reserved. // #import #import NS_ASSUME_NONNULL_BEGIN FOUNDATION_EXTERN NSString *const TWTRMediaTypeMP4; FOUNDATION_EXTERN NSString *const TWTRMediaTypeM3u8; @interface TWTRVideoMetaDataVariant : NSObject /** * The bitrate of the entitity */ @property (nonatomic, readonly) NSInteger bitrate; /** * The content type of the video entity. */ @property (nonatomic, copy, readonly) NSString *contentType; /** * The URL for the entity. */ @property (nonatomic, readonly) NSURL *URL; @end @interface TWTRVideoMetaData : NSObject /** * The URL of the video if the video is an mp4. This value is provided as a convenience * method but user's should query the `variants` property to have finer grained control * over which video they play. */ @property (nonatomic, readonly, nullable) NSURL *videoURL; /** * Returns the array of variants. */ @property (nonatomic, readonly) NSArray *variants; /** * The video's aspect ratio. */ @property (nonatomic, readonly) CGFloat aspectRatio; /** * The video's duration in seconds. */ @property (nonatomic, readonly) NSTimeInterval duration; @end NS_ASSUME_NONNULL_END