From 393dcdb2150a1c64d24d2e2ccfb4f02faeb6679c Mon Sep 17 00:00:00 2001 From: Max Odnovolyk Date: Wed, 2 Jul 2014 11:47:00 +0300 Subject: [PATCH 1/3] remove /v2/ URL part due private API change --- YTVimeoExtractor/YTVimeoExtractor.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/YTVimeoExtractor/YTVimeoExtractor.m b/YTVimeoExtractor/YTVimeoExtractor.m index 0912b07..e7926ff 100644 --- a/YTVimeoExtractor/YTVimeoExtractor.m +++ b/YTVimeoExtractor/YTVimeoExtractor.m @@ -7,7 +7,7 @@ #import "YTVimeoExtractor.h" -NSString *const YTVimeoPlayerConfigURL = @"http://player.vimeo.com/v2/video/%@/config"; +NSString *const YTVimeoPlayerConfigURL = @"http://player.vimeo.com/video/%@/config"; NSString *const YTVimeoExtractorErrorDomain = @"YTVimeoExtractorErrorDomain"; @interface YTVimeoExtractor () From 1a0d7b9789e43ac04ab46a424323412030648ea3 Mon Sep 17 00:00:00 2001 From: Max Odnovolyk Date: Wed, 2 Jul 2014 12:08:29 +0300 Subject: [PATCH 2/3] podspec copy --- YTVimeoExtractor.podspec | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 YTVimeoExtractor.podspec diff --git a/YTVimeoExtractor.podspec b/YTVimeoExtractor.podspec new file mode 100644 index 0000000..f1254e5 --- /dev/null +++ b/YTVimeoExtractor.podspec @@ -0,0 +1,23 @@ +{ + "name": "YTVimeoExtractor", + "version": "0.0.5", + "summary": "Fetches Vimeo's mp4 URLs for iOS.", + "description": " YTVimeoExtractor is a class which lets you get the iOS \n compatible video url from Vimeo which you can use in \n MPMoviePlayerController, no need to use a UIWebView.\n", + "homepage": "https://github.com/lilfaf/YTVimeoExtractor", + "license": { + "type": "MIT", + "file": "LICENSE" + }, + "authors": { + "Louis Larpin": "louis.larpin@gmail.com" + }, + "source": { + "git": "https://github.com/lilfaf/YTVimeoExtractor.git", + "tag": "0.0.5" + }, + "platforms": { + "ios": "5.0" + }, + "source_files": "YTVimeoExtractor", + "requires_arc": true +} \ No newline at end of file From a75e7bd10f8ec075adebcde72f18622159e496cd Mon Sep 17 00:00:00 2001 From: Max Odnovolyk Date: Wed, 2 Jul 2014 12:15:33 +0300 Subject: [PATCH 3/3] Remove temp podspec --- YTVimeoExtractor.podspec | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 YTVimeoExtractor.podspec diff --git a/YTVimeoExtractor.podspec b/YTVimeoExtractor.podspec deleted file mode 100644 index f1254e5..0000000 --- a/YTVimeoExtractor.podspec +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "YTVimeoExtractor", - "version": "0.0.5", - "summary": "Fetches Vimeo's mp4 URLs for iOS.", - "description": " YTVimeoExtractor is a class which lets you get the iOS \n compatible video url from Vimeo which you can use in \n MPMoviePlayerController, no need to use a UIWebView.\n", - "homepage": "https://github.com/lilfaf/YTVimeoExtractor", - "license": { - "type": "MIT", - "file": "LICENSE" - }, - "authors": { - "Louis Larpin": "louis.larpin@gmail.com" - }, - "source": { - "git": "https://github.com/lilfaf/YTVimeoExtractor.git", - "tag": "0.0.5" - }, - "platforms": { - "ios": "5.0" - }, - "source_files": "YTVimeoExtractor", - "requires_arc": true -} \ No newline at end of file