YTPlayerView.h 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650
  1. // Copyright 2014 Google Inc. All rights reserved.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. #import <UIKit/UIKit.h>
  15. #import <WebKit/WebKit.h>
  16. @class YTPlayerView;
  17. /** These enums represent the state of the current video in the player. */
  18. typedef NS_ENUM(NSInteger, YTPlayerState) {
  19. kYTPlayerStateUnstarted,
  20. kYTPlayerStateEnded,
  21. kYTPlayerStatePlaying,
  22. kYTPlayerStatePaused,
  23. kYTPlayerStateBuffering,
  24. kYTPlayerStateCued,
  25. kYTPlayerStateUnknown
  26. };
  27. /** These enums represent the resolution of the currently loaded video. */
  28. typedef NS_ENUM(NSInteger, YTPlaybackQuality) {
  29. kYTPlaybackQualitySmall,
  30. kYTPlaybackQualityMedium,
  31. kYTPlaybackQualityLarge,
  32. kYTPlaybackQualityHD720,
  33. kYTPlaybackQualityHD1080,
  34. kYTPlaybackQualityHighRes,
  35. kYTPlaybackQualityAuto, /** Addition for YouTube Live Events. */
  36. kYTPlaybackQualityDefault,
  37. kYTPlaybackQualityUnknown /** This should never be returned. It is here for future proofing. */
  38. };
  39. /** These enums represent error codes thrown by the player. */
  40. typedef NS_ENUM(NSInteger, YTPlayerError) {
  41. kYTPlayerErrorInvalidParam,
  42. kYTPlayerErrorHTML5Error,
  43. kYTPlayerErrorVideoNotFound, // Functionally equivalent error codes 100 and
  44. // 105 have been collapsed into |kYTPlayerErrorVideoNotFound|.
  45. kYTPlayerErrorNotEmbeddable, // Functionally equivalent error codes 101 and
  46. // 150 have been collapsed into |kYTPlayerErrorNotEmbeddable|.
  47. kYTPlayerErrorUnknown
  48. };
  49. /** Completion handlers for player API calls. */
  50. typedef void (^YTIntCompletionHandler)(int result, NSError *_Nullable error);
  51. typedef void (^YTFloatCompletionHandler)(float result, NSError *_Nullable error);
  52. typedef void (^YTDoubleCompletionHandler)(double result, NSError *_Nullable error);
  53. typedef void (^YTStringCompletionHandler)(NSString *_Nullable result, NSError *_Nullable error);
  54. typedef void (^YTArrayCompletionHandler)(NSArray *_Nullable result, NSError *_Nullable error);
  55. typedef void (^YTURLCompletionHandler)(NSURL *_Nullable result, NSError *_Nullable error);
  56. typedef void (^YTPlayerStateCompletionHandler)(YTPlayerState result, NSError *_Nullable error);
  57. typedef void (^YTPlaybackQualityCompletionHandler)(YTPlaybackQuality result,
  58. NSError *_Nullable error);
  59. /**
  60. * A delegate for ViewControllers to respond to YouTube player events outside
  61. * of the view, such as changes to video playback state or playback errors.
  62. * The callback functions correlate to the events fired by the IFrame API.
  63. * For the full documentation, see the IFrame documentation here:
  64. * https://developers.google.com/youtube/iframe_api_reference#Events
  65. */
  66. @protocol YTPlayerViewDelegate<NSObject>
  67. @optional
  68. /**
  69. * Invoked when the player view is ready to receive API calls.
  70. *
  71. * @param playerView The YTPlayerView instance that has become ready.
  72. */
  73. - (void)playerViewDidBecomeReady:(nonnull YTPlayerView *)playerView;
  74. /**
  75. * Callback invoked when player state has changed, e.g. stopped or started playback.
  76. *
  77. * @param playerView The YTPlayerView instance where playback state has changed.
  78. * @param state YTPlayerState designating the new playback state.
  79. */
  80. - (void)playerView:(nonnull YTPlayerView *)playerView didChangeToState:(YTPlayerState)state;
  81. /**
  82. * Callback invoked when playback quality has changed.
  83. *
  84. * @param playerView The YTPlayerView instance where playback quality has changed.
  85. * @param quality YTPlaybackQuality designating the new playback quality.
  86. */
  87. - (void)playerView:(nonnull YTPlayerView *)playerView didChangeToQuality:(YTPlaybackQuality)quality;
  88. /**
  89. * Callback invoked when an error has occured.
  90. *
  91. * @param playerView The YTPlayerView instance where the error has occurred.
  92. * @param error YTPlayerError containing the error state.
  93. */
  94. - (void)playerView:(nonnull YTPlayerView *)playerView receivedError:(YTPlayerError)error;
  95. /**
  96. * Callback invoked frequently when playBack is plaing.
  97. *
  98. * @param playerView The YTPlayerView instance where the error has occurred.
  99. * @param playTime float containing curretn playback time.
  100. */
  101. - (void)playerView:(nonnull YTPlayerView *)playerView didPlayTime:(float)playTime;
  102. /**
  103. * Callback invoked when setting up the webview to allow custom colours so it fits in
  104. * with app color schemes. If a transparent view is required specify clearColor and
  105. * the code will handle the opacity etc.
  106. *
  107. * @param playerView The YTPlayerView instance where the error has occurred.
  108. * @return A color object that represents the background color of the webview.
  109. */
  110. - (nonnull UIColor *)playerViewPreferredWebViewBackgroundColor:(nonnull YTPlayerView *)playerView;
  111. /**
  112. * Callback invoked when initially loading the YouTube iframe to the webview to display a custom
  113. * loading view while the player view is not ready. This loading view will be dismissed just before
  114. * -playerViewDidBecomeReady: callback is invoked. The loading view will be automatically resized
  115. * to cover the entire player view.
  116. *
  117. * The default implementation does not display any custom loading views so the player will display
  118. * a blank view with a background color of (-playerViewPreferredWebViewBackgroundColor:).
  119. *
  120. * Note that the custom loading view WILL NOT be displayed after iframe is loaded. It will be
  121. * handled by YouTube iframe API. This callback is just intended to tell users the view is actually
  122. * doing something while iframe is being loaded, which will take some time if users are in poor networks.
  123. *
  124. * @param playerView The YTPlayerView instance where the error has occurred.
  125. * @return A view object that will be displayed while YouTube iframe API is being loaded.
  126. * Pass nil to display no custom loading view. Default implementation returns nil.
  127. */
  128. - (nullable UIView *)playerViewPreferredInitialLoadingView:(nonnull YTPlayerView *)playerView;
  129. @end
  130. /**
  131. * YTPlayerView is a custom UIView that client developers will use to include YouTube
  132. * videos in their iOS applications. It can be instantiated programmatically, or via
  133. * Interface Builder. Use the methods YTPlayerView::loadWithVideoId:,
  134. * YTPlayerView::loadWithPlaylistId: or their variants to set the video or playlist
  135. * to populate the view with.
  136. */
  137. @interface YTPlayerView : UIView
  138. @property(nonatomic, nullable, readonly) WKWebView *webView;
  139. /** A delegate to be notified on playback events. */
  140. @property(nonatomic, weak, nullable) id<YTPlayerViewDelegate> delegate;
  141. /**
  142. * This method loads the player with the given video ID.
  143. * This is a convenience method for calling YTPlayerView::loadPlayerWithVideoId:withPlayerVars:
  144. * without player variables.
  145. *
  146. * This method reloads the entire contents of the webview and regenerates its HTML contents.
  147. * To change the currently loaded video without reloading the entire webview, use the
  148. * YTPlayerView::cueVideoById:startSeconds: family of methods.
  149. *
  150. * @param videoId The YouTube video ID of the video to load in the player view.
  151. * @return YES if player has been configured correctly, NO otherwise.
  152. */
  153. - (BOOL)loadWithVideoId:(nonnull NSString *)videoId;
  154. /**
  155. * This method loads the player with the given playlist ID.
  156. * This is a convenience method for calling YTPlayerView::loadWithPlaylistId:withPlayerVars:
  157. * without player variables.
  158. *
  159. * This method reloads the entire contents of the webview and regenerates its HTML contents.
  160. * To change the currently loaded video without reloading the entire webview, use the
  161. * YTPlayerView::cuePlaylistByPlaylistId:index:startSeconds:
  162. * family of methods.
  163. *
  164. * @param playlistId The YouTube playlist ID of the playlist to load in the player view.
  165. * @return YES if player has been configured correctly, NO otherwise.
  166. */
  167. - (BOOL)loadWithPlaylistId:(nonnull NSString *)playlistId;
  168. /**
  169. * This method loads the player with the given video ID and player variables. Player variables
  170. * specify optional parameters for video playback. For instance, to play a YouTube
  171. * video inline, the following playerVars dictionary would be used:
  172. *
  173. * @code
  174. * @{ @"playsinline" : @1 };
  175. * @endcode
  176. *
  177. * Note that when the documentation specifies a valid value as a number (typically 0, 1 or 2),
  178. * both strings and integers are valid values. The full list of parameters is defined at:
  179. * https://developers.google.com/youtube/player_parameters?playerVersion=HTML5.
  180. *
  181. * This method reloads the entire contents of the webview and regenerates its HTML contents.
  182. * To change the currently loaded video without reloading the entire webview, use the
  183. * YTPlayerView::cueVideoById:startSeconds: family of methods.
  184. *
  185. * @param videoId The YouTube video ID of the video to load in the player view.
  186. * @param playerVars An NSDictionary of player parameters.
  187. * @return YES if player has been configured correctly, NO otherwise.
  188. */
  189. - (BOOL)loadWithVideoId:(nonnull NSString *)videoId playerVars:(nullable NSDictionary *)playerVars;
  190. /**
  191. * This method loads the player with the given playlist ID and player variables. Player variables
  192. * specify optional parameters for video playback. For instance, to play a YouTube
  193. * video inline, the following playerVars dictionary would be used:
  194. *
  195. * @code
  196. * @{ @"playsinline" : @1 };
  197. * @endcode
  198. *
  199. * Note that when the documentation specifies a valid value as a number (typically 0, 1 or 2),
  200. * both strings and integers are valid values. The full list of parameters is defined at:
  201. * https://developers.google.com/youtube/player_parameters?playerVersion=HTML5.
  202. *
  203. * This method reloads the entire contents of the webview and regenerates its HTML contents.
  204. * To change the currently loaded video without reloading the entire webview, use the
  205. * YTPlayerView::cuePlaylistByPlaylistId:index:startSeconds:
  206. * family of methods.
  207. *
  208. * @param playlistId The YouTube playlist ID of the playlist to load in the player view.
  209. * @param playerVars An NSDictionary of player parameters.
  210. * @return YES if player has been configured correctly, NO otherwise.
  211. */
  212. - (BOOL)loadWithPlaylistId:(nonnull NSString *)playlistId
  213. playerVars:(nullable NSDictionary *)playerVars;
  214. /**
  215. * This method loads an iframe player with the given player parameters. Usually you may want to use
  216. * -loadWithVideoId:playerVars: or -loadWithPlaylistId:playerVars: instead of this method does not handle
  217. * video_id or playlist_id at all. The full list of parameters is defined at:
  218. * https://developers.google.com/youtube/player_parameters?playerVersion=HTML5.
  219. *
  220. * @param additionalPlayerParams An NSDictionary of parameters in addition to required parameters
  221. * to instantiate the HTML5 player with. This differs depending on
  222. * whether a single video or playlist is being loaded.
  223. * @return YES if successful, NO if not.
  224. */
  225. - (BOOL)loadWithPlayerParams:(nullable NSDictionary *)additionalPlayerParams;
  226. #pragma mark - Player controls
  227. // These methods correspond to their JavaScript equivalents as documented here:
  228. // https://developers.google.com/youtube/iframe_api_reference#Playback_controls
  229. /**
  230. * Starts or resumes playback on the loaded video. Corresponds to this method from
  231. * the JavaScript API:
  232. * https://developers.google.com/youtube/iframe_api_reference#playVideo
  233. */
  234. - (void)playVideo;
  235. /**
  236. * Pauses playback on a playing video. Corresponds to this method from
  237. * the JavaScript API:
  238. * https://developers.google.com/youtube/iframe_api_reference#pauseVideo
  239. */
  240. - (void)pauseVideo;
  241. /**
  242. * Stops playback on a playing video. Corresponds to this method from
  243. * the JavaScript API:
  244. * https://developers.google.com/youtube/iframe_api_reference#stopVideo
  245. */
  246. - (void)stopVideo;
  247. /**
  248. * Seek to a given time on a playing video. Corresponds to this method from
  249. * the JavaScript API:
  250. * https://developers.google.com/youtube/iframe_api_reference#seekTo
  251. *
  252. * @param seekToSeconds The time in seconds to seek to in the loaded video.
  253. * @param allowSeekAhead Whether to make a new request to the server if the time is
  254. * outside what is currently buffered. Recommended to set to YES.
  255. */
  256. - (void)seekToSeconds:(float)seekToSeconds allowSeekAhead:(BOOL)allowSeekAhead;
  257. #pragma mark - Cueing videos
  258. // Cueing functions for videos. These methods correspond to their JavaScript
  259. // equivalents as documented here:
  260. // https://developers.google.com/youtube/iframe_api_reference#Queueing_Functions
  261. /**
  262. * Cues a given video by its video ID for playback starting at the given time.
  263. * Cueing loads a video, but does not start video playback. This method
  264. * corresponds with its JavaScript API equivalent as documented here:
  265. * https://developers.google.com/youtube/iframe_api_reference#cueVideoById
  266. *
  267. * @param videoId A video ID to cue.
  268. * @param startSeconds Time in seconds to start the video when YTPlayerView::playVideo is called.
  269. */
  270. - (void)cueVideoById:(nonnull NSString *)videoId
  271. startSeconds:(float)startSeconds;
  272. /**
  273. * Cues a given video by its video ID for playback starting and ending at the given times.
  274. * Cueing loads a video, but does not start video playback. This
  275. * method corresponds with its JavaScript API equivalent as documented here:
  276. * https://developers.google.com/youtube/iframe_api_reference#cueVideoById
  277. *
  278. * @param videoId A video ID to cue.
  279. * @param startSeconds Time in seconds to start the video when playVideo() is called.
  280. * @param endSeconds Time in seconds to end the video after it begins playing.
  281. */
  282. - (void)cueVideoById:(nonnull NSString *)videoId
  283. startSeconds:(float)startSeconds
  284. endSeconds:(float)endSeconds;
  285. /**
  286. * Loads a given video by its video ID for playback starting at the given time.
  287. * Loading a video both loads it and begins playback. This method
  288. * corresponds with its JavaScript API equivalent as documented here:
  289. * https://developers.google.com/youtube/iframe_api_reference#loadVideoById
  290. *
  291. * @param videoId A video ID to load and begin playing.
  292. * @param startSeconds Time in seconds to start the video when it has loaded.
  293. */
  294. - (void)loadVideoById:(nonnull NSString *)videoId
  295. startSeconds:(float)startSeconds;
  296. /**
  297. * Loads a given video by its video ID for playback starting and ending at the given times.
  298. * Loading a video both loads it and begins playback. This method
  299. * corresponds with its JavaScript API equivalent as documented here:
  300. * https://developers.google.com/youtube/iframe_api_reference#loadVideoById
  301. *
  302. * @param videoId A video ID to load and begin playing.
  303. * @param startSeconds Time in seconds to start the video when it has loaded.
  304. * @param endSeconds Time in seconds to end the video after it begins playing.
  305. */
  306. - (void)loadVideoById:(nonnull NSString *)videoId
  307. startSeconds:(float)startSeconds
  308. endSeconds:(float)endSeconds;
  309. /**
  310. * Cues a given video by its URL on YouTube.com for playback starting at the given time.
  311. * Cueing loads a video, but does not start video playback.
  312. * This method corresponds with its JavaScript API equivalent as documented here:
  313. * https://developers.google.com/youtube/iframe_api_reference#cueVideoByUrl
  314. *
  315. * @param videoURL URL of a YouTube video to cue for playback.
  316. * @param startSeconds Time in seconds to start the video when YTPlayerView::playVideo is called.
  317. */
  318. - (void)cueVideoByURL:(nonnull NSString *)videoURL
  319. startSeconds:(float)startSeconds;
  320. /**
  321. * Cues a given video by its URL on YouTube.com for playback starting at the given time.
  322. * Cueing loads a video, but does not start video playback.
  323. * This method corresponds with its JavaScript API equivalent as documented here:
  324. * https://developers.google.com/youtube/iframe_api_reference#cueVideoByUrl
  325. *
  326. * @param videoURL URL of a YouTube video to cue for playback.
  327. * @param startSeconds Time in seconds to start the video when YTPlayerView::playVideo is called.
  328. * @param endSeconds Time in seconds to end the video after it begins playing.
  329. */
  330. - (void)cueVideoByURL:(nonnull NSString *)videoURL
  331. startSeconds:(float)startSeconds
  332. endSeconds:(float)endSeconds;
  333. /**
  334. * Loads a given video by its video ID for playback starting at the given time.
  335. * Loading a video both loads it and begins playback. This method
  336. * corresponds with its JavaScript API equivalent as documented here:
  337. * https://developers.google.com/youtube/iframe_api_reference#loadVideoByUrl
  338. *
  339. * @param videoURL URL of a YouTube video to load and play.
  340. * @param startSeconds Time in seconds to start the video when it has loaded.
  341. */
  342. - (void)loadVideoByURL:(nonnull NSString *)videoURL
  343. startSeconds:(float)startSeconds;
  344. /**
  345. * Loads a given video by its video ID for playback starting and ending at the given times.
  346. * Loading a video both loads it and begins playback. This method
  347. * corresponds with its JavaScript API equivalent as documented here:
  348. * https://developers.google.com/youtube/iframe_api_reference#loadVideoByUrl
  349. *
  350. * @param videoURL URL of a YouTube video to load and play.
  351. * @param startSeconds Time in seconds to start the video when it has loaded.
  352. * @param endSeconds Time in seconds to end the video after it begins playing.
  353. */
  354. - (void)loadVideoByURL:(nonnull NSString *)videoURL
  355. startSeconds:(float)startSeconds
  356. endSeconds:(float)endSeconds;
  357. #pragma mark - Cueing functions for playlists
  358. // Cueing functions for playlists. These methods correspond to
  359. // the JavaScript methods defined here:
  360. // https://developers.google.com/youtube/js_api_reference#Playlist_Queueing_Functions
  361. /**
  362. * Cues a given playlist with the given ID. The |index| parameter specifies the 0-indexed
  363. * position of the first video to play, starting at the given time. Cueing loads a playlist,
  364. * but does not start video playback. This method corresponds with its JavaScript API equivalent as documented here:
  365. * https://developers.google.com/youtube/iframe_api_reference#cuePlaylist
  366. *
  367. * @param playlistId Playlist ID of a YouTube playlist to cue.
  368. * @param index A 0-indexed position specifying the first video to play.
  369. * @param startSeconds Time in seconds to start the video when YTPlayerView::playVideo is called.
  370. */
  371. - (void)cuePlaylistByPlaylistId:(nonnull NSString *)playlistId
  372. index:(int)index
  373. startSeconds:(float)startSeconds;
  374. /**
  375. * Cues a playlist of videos with the given video IDs. The |index| parameter specifies the
  376. * 0-indexed position of the first video to play, starting at the given time.
  377. * Cueing loads a playlist, but does not start video playback. This method
  378. * corresponds with its JavaScript API equivalent as documented here:
  379. * https://developers.google.com/youtube/iframe_api_reference#cuePlaylist
  380. *
  381. * @param videoIds An NSArray of video IDs to compose the playlist of.
  382. * @param index A 0-indexed position specifying the first video to play.
  383. * @param startSeconds Time in seconds to start the video when YTPlayerView::playVideo is called.
  384. */
  385. - (void)cuePlaylistByVideos:(nonnull NSArray *)videoIds
  386. index:(int)index
  387. startSeconds:(float)startSeconds;
  388. /**
  389. * Loads a given playlist with the given ID. The |index| parameter specifies the 0-indexed
  390. * position of the first video to play, starting at the given time. Loading a playlist starts video playback. This method
  391. * corresponds with its JavaScript API equivalent as documented here:
  392. * https://developers.google.com/youtube/iframe_api_reference#loadPlaylist
  393. *
  394. * @param playlistId Playlist ID of a YouTube playlist to cue.
  395. * @param index A 0-indexed position specifying the first video to play.
  396. * @param startSeconds Time in seconds to start the video when YTPlayerView::playVideo is called.
  397. */
  398. - (void)loadPlaylistByPlaylistId:(nonnull NSString *)playlistId
  399. index:(int)index
  400. startSeconds:(float)startSeconds;
  401. /**
  402. * Loads a playlist of videos with the given video IDs. The |index| parameter specifies the
  403. * 0-indexed position of the first video to play, starting at the given time. Loading a playlist starts video playback.
  404. * This method corresponds with its JavaScript API equivalent as documented here:
  405. * https://developers.google.com/youtube/iframe_api_reference#loadPlaylist
  406. *
  407. * @param videoIds An NSArray of video IDs to compose the playlist of.
  408. * @param index A 0-indexed position specifying the first video to play.
  409. * @param startSeconds Time in seconds to start the video when YTPlayerView::playVideo is called.
  410. */
  411. - (void)loadPlaylistByVideos:(nonnull NSArray *)videoIds
  412. index:(int)index
  413. startSeconds:(float)startSeconds;
  414. #pragma mark - Playing a video in a playlist
  415. // These methods correspond to the JavaScript API as defined under the
  416. // "Playing a video in a playlist" section here:
  417. // https://developers.google.com/youtube/iframe_api_reference#Playback_status
  418. /**
  419. * Loads and plays the next video in the playlist. Corresponds to this method from
  420. * the JavaScript API:
  421. * https://developers.google.com/youtube/iframe_api_reference#nextVideo
  422. */
  423. - (void)nextVideo;
  424. /**
  425. * Loads and plays the previous video in the playlist. Corresponds to this method from
  426. * the JavaScript API:
  427. * https://developers.google.com/youtube/iframe_api_reference#previousVideo
  428. */
  429. - (void)previousVideo;
  430. /**
  431. * Loads and plays the video at the given 0-indexed position in the playlist.
  432. * Corresponds to this method from the JavaScript API:
  433. * https://developers.google.com/youtube/iframe_api_reference#playVideoAt
  434. *
  435. * @param index The 0-indexed position of the video in the playlist to load and play.
  436. */
  437. - (void)playVideoAt:(int)index;
  438. #pragma mark - Setting the playback rate
  439. /**
  440. * Gets the playback rate. The default value is 1.0, which represents a video
  441. * playing at normal speed. Other values may include 0.25 or 0.5 for slower
  442. * speeds, and 1.5 or 2.0 for faster speeds. This method corresponds to the
  443. * JavaScript API defined here:
  444. * https://developers.google.com/youtube/iframe_api_reference#getPlaybackRate
  445. * @param completionHandler async callback block that contains a float value representing the current value
  446. * or an error.
  447. */
  448. - (void)playbackRate:(_Nullable YTFloatCompletionHandler)completionHandler;
  449. /**
  450. * Sets the playback rate. The default value is 1.0, which represents a video
  451. * playing at normal speed. Other values may include 0.25 or 0.5 for slower
  452. * speeds, and 1.5 or 2.0 for faster speeds. To fetch a list of valid values for
  453. * this method, call YTPlayerView::getAvailablePlaybackRates. This method does not
  454. * guarantee that the playback rate will change.
  455. * This method corresponds to the JavaScript API defined here:
  456. * https://developers.google.com/youtube/iframe_api_reference#setPlaybackRate
  457. *
  458. * @param suggestedRate A playback rate to suggest for the player.
  459. */
  460. - (void)setPlaybackRate:(float)suggestedRate;
  461. /**
  462. * Gets a list of the valid playback rates, useful in conjunction with
  463. * YTPlayerView::setPlaybackRate. This method corresponds to the
  464. * JavaScript API defined here:
  465. * https://developers.google.com/youtube/iframe_api_reference#getPlaybackRate
  466. *
  467. * @param completionHandler async callback block that contains an array containing the available
  468. * playback rates or an error.
  469. */
  470. - (void)availablePlaybackRates:(_Nullable YTArrayCompletionHandler)completionHandler;
  471. #pragma mark - Setting playback behavior for playlists
  472. /**
  473. * Sets whether the player should loop back to the first video in the playlist
  474. * after it has finished playing the last video. This method corresponds to the
  475. * JavaScript API defined here:
  476. * https://developers.google.com/youtube/iframe_api_reference#loopPlaylist
  477. *
  478. * @param loop A boolean representing whether the player should loop.
  479. */
  480. - (void)setLoop:(BOOL)loop;
  481. /**
  482. * Sets whether the player should shuffle through the playlist. This method
  483. * corresponds to the JavaScript API defined here:
  484. * https://developers.google.com/youtube/iframe_api_reference#shufflePlaylist
  485. *
  486. * @param shuffle A boolean representing whether the player should
  487. * shuffle through the playlist.
  488. */
  489. - (void)setShuffle:(BOOL)shuffle;
  490. #pragma mark - Playback status
  491. // These methods correspond to the JavaScript methods defined here:
  492. // https://developers.google.com/youtube/js_api_reference#Playback_status
  493. /**
  494. * Returns a number between 0 and 1 that specifies the percentage of the video
  495. * that the player shows as buffered. This method corresponds to the
  496. * JavaScript API defined here:
  497. * https://developers.google.com/youtube/iframe_api_reference#getVideoLoadedFraction
  498. *
  499. * @param completionHandler async callback block that contains a float number with the result or an error.
  500. */
  501. - (void)videoLoadedFraction:(_Nullable YTFloatCompletionHandler)completionHandler;
  502. /**
  503. * Returns the state of the player. This method corresponds to the
  504. * JavaScript API defined here:
  505. * https://developers.google.com/youtube/iframe_api_reference#getPlayerState
  506. *
  507. * @param completionHandler async callback block that contains a YTPlayerState enum value
  508. * with the current player state or an error.
  509. */
  510. - (void)playerState:(_Nullable YTPlayerStateCompletionHandler)completionHandler;
  511. /**
  512. * Returns the elapsed time in seconds since the video started playing. This
  513. * method corresponds to the JavaScript API defined here:
  514. * https://developers.google.com/youtube/iframe_api_reference#getCurrentTime
  515. *
  516. * @param completionHandler async callback block that contains float number with the result or an error.
  517. */
  518. - (void)currentTime:(_Nullable YTFloatCompletionHandler)completionHandler;
  519. #pragma mark - Retrieving video information
  520. // Retrieving video information. These methods correspond to the JavaScript
  521. // methods defined here:
  522. // https://developers.google.com/youtube/js_api_reference#Retrieving_video_information
  523. /**
  524. * Returns the duration in seconds since the video of the video. This
  525. * method corresponds to the JavaScript API defined here:
  526. * https://developers.google.com/youtube/iframe_api_reference#getDuration
  527. *
  528. * @param completionHandler async callback block that contains a double number
  529. * with the duration of the video or an error.
  530. */
  531. - (void)duration:(_Nullable YTDoubleCompletionHandler)completionHandler;
  532. /**
  533. * Returns the YouTube.com URL for the video. This method corresponds
  534. * to the JavaScript API defined here:
  535. * https://developers.google.com/youtube/iframe_api_reference#getVideoUrl
  536. *
  537. * @param completionHandler async callback block that contains the video URL as NSURL or an error.
  538. */
  539. - (void)videoUrl:(_Nullable YTURLCompletionHandler)completionHandler;
  540. /**
  541. * Returns the embed code for the current video. This method corresponds
  542. * to the JavaScript API defined here:
  543. * https://developers.google.com/youtube/iframe_api_reference#getVideoEmbedCode
  544. *
  545. * @param completionHandler async callback block that contains a string with the current video
  546. * embed code or an error.
  547. */
  548. - (void)videoEmbedCode:(_Nullable YTStringCompletionHandler)completionHandler;
  549. #pragma mark - Retrieving playlist information
  550. // Retrieving playlist information. These methods correspond to the
  551. // JavaScript defined here:
  552. // https://developers.google.com/youtube/js_api_reference#Retrieving_playlist_information
  553. /**
  554. * Returns an ordered array of video IDs in the playlist. This method corresponds
  555. * to the JavaScript API defined here:
  556. * https://developers.google.com/youtube/iframe_api_reference#getPlaylist
  557. *
  558. * @param completionHandler async callback block that contains an array of video IDs in the playlist
  559. * or an error.
  560. */
  561. - (void)playlist:(_Nullable YTArrayCompletionHandler)completionHandler;
  562. /**
  563. * Returns the 0-based index of the currently playing item in the playlist.
  564. * This method corresponds to the JavaScript API defined here:
  565. * https://developers.google.com/youtube/iframe_api_reference#getPlaylistIndex
  566. *
  567. * @param completionHandler async callback block that contains the int value of the current playing item
  568. * in a playlist or an error.
  569. */
  570. - (void)playlistIndex:(_Nullable YTIntCompletionHandler)completionHandler;
  571. #pragma mark - Exposed for Testing
  572. /**
  573. * Removes the internal web view from this player view.
  574. * Intended to use for testing, should not be used in production code.
  575. */
  576. - (void)removeWebView;
  577. @end