45 lines
2.2 KiB
Objective-C
45 lines
2.2 KiB
Objective-C
#import <React/RCTView.h>
|
|
#import <AVFoundation/AVFoundation.h>
|
|
#import "AVKit/AVKit.h"
|
|
#import "UIView+FindUIViewController.h"
|
|
#import "RCTVideoPlayerViewController.h"
|
|
#import "RCTVideoPlayerViewControllerDelegate.h"
|
|
|
|
#if __has_include(<react-native-video/RCTVideoCache.h>)
|
|
#import <react-native-video/RCTVideoCache.h>
|
|
#import <DVAssetLoaderDelegate/DVURLAsset.h>
|
|
#import <DVAssetLoaderDelegate/DVAssetLoaderDelegate.h>
|
|
#endif
|
|
|
|
@class RCTEventDispatcher;
|
|
#if __has_include(<react-native-video/RCTVideoCache.h>)
|
|
@interface RCTVideo : UIView <RCTVideoPlayerViewControllerDelegate, DVAssetLoaderDelegatesDelegate>
|
|
#else
|
|
@interface RCTVideo : UIView <RCTVideoPlayerViewControllerDelegate>
|
|
#endif
|
|
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onVideoLoadStart;
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onVideoLoad;
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onVideoBuffer;
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onVideoError;
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onVideoProgress;
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onVideoSeek;
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onVideoEnd;
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onTimedMetadata;
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onVideoAudioBecomingNoisy;
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onVideoFullscreenPlayerWillPresent;
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onVideoFullscreenPlayerDidPresent;
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onVideoFullscreenPlayerWillDismiss;
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onVideoFullscreenPlayerDidDismiss;
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onReadyForDisplay;
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onPlaybackStalled;
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onPlaybackResume;
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onPlaybackRateChange;
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onExternalPlaybackChange;
|
|
|
|
- (instancetype)initWithEventDispatcher:(RCTEventDispatcher *)eventDispatcher NS_DESIGNATED_INITIALIZER;
|
|
|
|
- (AVPlayerViewController*)createPlayerViewController:(AVPlayer*)player withPlayerItem:(AVPlayerItem*)playerItem;
|
|
|
|
@end
|