-
Notifications
You must be signed in to change notification settings - Fork 583
/
SCPlayer.h
172 lines (136 loc) · 4.79 KB
/
SCPlayer.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
//
// SCVideoPlayer.h
// SCAudioVideoRecorder
//
// Created by Simon CORSIN on 8/30/13.
// Copyright (c) 2013 rFlex. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <AVFoundation/AVFoundation.h>
#import "SCImageView.h"
@class SCPlayer;
@protocol SCPlayerDelegate <NSObject>
@optional
/**
Called when the player has played some frames. The loopsCount will contains the number of
loop if the curent item was set using setSmoothItem.
*/
- (void)player:(SCPlayer *__nonnull)player didPlay:(CMTime)currentTime loopsCount:(NSInteger)loopsCount;
/**
Called when the item has been changed on the SCPlayer
*/
- (void)player:(SCPlayer *__nonnull)player didChangeItem:(AVPlayerItem *__nullable)item;
/**
Called when the item has reached end
*/
- (void)player:(SCPlayer *__nonnull)player didReachEndForItem:(AVPlayerItem *__nonnull)item;
/**
Called when the item is ready to play
*/
- (void)player:(SCPlayer *__nonnull)player itemReadyToPlay:(AVPlayerItem *__nonnull)item;
/**
Called when the player has setup the renderer so it can receive the image in the
proper orientation.
*/
- (void)player:(SCPlayer *__nonnull)player didSetupSCImageView:(SCImageView *__nonnull)SCImageView;
/**
Called when the item has updated the time ranges that have been loaded
*/
- (void)player:(SCPlayer *__nonnull)player didUpdateLoadedTimeRanges:(CMTimeRange)timeRange;
/**
Called when the item playback buffer is empty
*/
- (void)player:(SCPlayer *__nonnull)player itemPlaybackBufferIsEmpty:(AVPlayerItem *__nullable)item;
@end
/**
A player that inherits from the standard AVPlayer but adds some feature, such as the
CIImageRenderer support.
*/
@interface SCPlayer : AVPlayer
/**
The delegate that will receive the messages
*/
@property (weak, nonatomic) __nullable id<SCPlayerDelegate> delegate;
/**
Whether the video should start again from the beginning when its reaches the end
*/
@property (assign, nonatomic) BOOL loopEnabled;
/**
Will be true if beginSendingPlayMessages has been called.
*/
@property (readonly, nonatomic) BOOL isSendingPlayMessages;
/**
Whether this instance is currently playing.
*/
@property (readonly, nonatomic) BOOL isPlaying;
/**
Whether this instance displays default rendered video
*/
@property (assign, nonatomic) BOOL shouldSuppressPlayerRendering;
/**
The actual item duration.
*/
@property (readonly, nonatomic) CMTime itemDuration;
/**
The total currently loaded and playable time.
*/
@property (readonly, nonatomic) CMTime playableDuration;
/**
If true, the player will figure out an affine transform so the video best fits the screen. The resulting video may not be in the correct device orientation though.
For example, if the video is in landscape and the current device orientation is in portrait mode,
with this property enabled the video will be rotated so it fits the entire screen. This avoid
showing the black border on the sides. If your app supports multiple orientation, you typically
wouldn't want this feature on.
*/
@property (assign, nonatomic) BOOL autoRotate;
/**
The renderer for the CIImage. If this property is set, the player will set the CIImage
property when the current frame changes.
*/
@property (strong, nonatomic) SCImageView *__nullable SCImageView;
/**
Convenient method to return a new instance of a SCPlayer
*/
+ (SCPlayer *__nonnull)player;
/**
Ask the SCPlayer to send didPlay messages during the playback
endSendingPlayMessages must be called, otherwise the SCPlayer will never
be deallocated
*/
- (void)beginSendingPlayMessages;
/**
Ask the SCPlayer to stop sending didPlay messages during the playback
*/
- (void)endSendingPlayMessages;
/**
Set the item using a file string path.
*/
- (void)setItemByStringPath:(NSString *__nullable)stringPath;
/**
Set the item using an URL
*/
- (void)setItemByUrl:(NSURL *__nullable)url;
/**
Set the item using an Asset
*/
- (void)setItemByAsset:(AVAsset *__nullable)asset;
/**
Set the item using an AVPlayerItem
*/
- (void)setItem:(AVPlayerItem *__nullable)item;
/**
Set an item using a file string path. This will generate an AVComposition containing "loopCount"
times the item. This avoids the hiccup when looping for up to "loopCount" times.
*/
- (void)setSmoothLoopItemByStringPath:(NSString *__nullable)stringPath smoothLoopCount:(NSUInteger)loopCount;
/**
Set the item using an URL. This will generate an AVComposition containing "loopCount"
times the item. This avoids the hiccup when looping for up to "loopCount" times.
*/
- (void)setSmoothLoopItemByUrl:(NSURL *__nullable)url smoothLoopCount:(NSUInteger)loopCount;
/**
Set the item using an Asset. This will generate an AVComposition containing "loopCount"
times the item. This avoids the hiccup when looping for up to "loopCount" times.
*/
- (void)setSmoothLoopItemByAsset:(AVAsset *__nullable)asset smoothLoopCount:(NSUInteger)loopCount;
@end