XCDYouTubeKit is a YouTube video player for iOS and OS X.
Are you enjoying XCDYouTubeKit? You can say thank you with a tweet. I am also accepting donations. ;-)
- Runs on iOS 7.0 and later
- Runs on OS X 10.9 and later
XCDYouTubeKit is against the YouTube Terms of Service. The only official way of playing a YouTube video inside an app is with a web view and the iframe player API. Unfortunately, this is very slow and quite ugly, so I wrote this player to give users a better viewing experience.
XCDYouTubeKit is available through CocoaPods and Carthage.
CocoaPods:
pod "XCDYouTubeKit", "~> 2.3.2"
Carthage:
github "0xced/XCDYouTubeKit" ~> 2.3.2
Alternatively, you can manually use the provided static library on iOS or dynamic framework on OS X. In order to use the iOS static library, you must:
- Create a workspace (File → New → Workspace…)
- Add your project to the workspace
- Add the XCDYouTubeKit project to the workspace
- Drag and drop the
libXCDYouTubeKit.a
file referenced from XCDYouTubeKit → Products → libXCDYouTubeKit.a into the Link Binary With Libraries build phase of your app’s target.
These steps will ensure that #import <XCDYouTubeKit/XCDYouTubeKit.h>
will work properly in your project.
XCDYouTubeKit is fully documented.
NSString *videoIdentifier = @"EdeVaT-zZt4"; // A 11 characters YouTube video identifier
[[XCDYouTubeClient defaultClient] getVideoWithIdentifier:videoIdentifier completionHandler:^(XCDYouTubeVideo *video, NSError *error) {
if (video)
{
// Do something with the `video` object
}
else
{
// Handle error
}
}];
On iOS, you can use the class XCDYouTubeVideoPlayerViewController
the same way you use a MPMoviePlayerViewController
, except you initialize it with a YouTube video identifier instead of a content URL.
XCDYouTubeVideoPlayerViewController *videoPlayerViewController = [[XCDYouTubeVideoPlayerViewController alloc] initWithVideoIdentifier:@"9bZkp7q19f0"];
[self presentMoviePlayerViewControllerAnimated:videoPlayerViewController];
XCDYouTubeVideoPlayerViewController *videoPlayerViewController = [[XCDYouTubeVideoPlayerViewController alloc] initWithVideoIdentifier:@"9bZkp7q19f0"];
[videoPlayerViewController presentInView:self.videoContainerView];
[videoPlayerViewController.moviePlayer play];
See the demo project for more sample code.
Since version 2.2.0, XCDYouTubeKit produces logs. XCDYouTubeKit supports CocoaLumberjack but does not require it. If your project includes CocoaLumberjack, all logs will be routed through CocoaLumberjack, else logs will be emitted with NSLog
.
The context for identifying all XCDYouTubeKit logs in CocoaLumberjack is the number (NSInteger)0xced70676
. Beware, CocoaLumberjack contexts are NSIntegers, don’t forget the cast.
If you are using CocoaLumberjack, you are responsible for controlling the log levels with the CocoaLumberjack APIs.
If you are not using CocoaLumberjack, you can control the log levels with the XCDYouTubeKitLogLevel
environment variable. The log levels are the same as CocoaLumberjack, with the addition of the trace level.
Level | Value |
---|---|
Error | 0x01 |
Warning | 0x02 |
Info | 0x04 |
Debug | 0x08 |
Verbose | 0x10 |
Trace | 0x20 |
The levels are bitmasks, so you can combine them. For example, if you want to log error, warning and info levels, set the XCDYouTubeKitLogLevel
environment variable to 0x7
.
If you do not set the XCDYouTubeKitLogLevel
environment variable, only warning and error levels are logged.
The URL extraction algorithms in XCDYouTubeKit are inspired by the YouTube extractor module of the youtube-dl project.
Cédric Luthi
XCDYouTubeKit is available under the MIT license. See the LICENSE file for more information.