File tree Expand file tree Collapse file tree 3 files changed +8
-9
lines changed
Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 1+ 4.0
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import AVFoundation
1111
1212public struct VideoInfo {
1313
14+ /** Raw info for each video quality. Elements are sorted by video quality with first being the highest quality. */
1415 public let rawInfo : [ [ String : String ] ]
1516
1617 public var highestQualityPlayableLink : String ? {
Original file line number Diff line number Diff line change 11Pod ::Spec . new do |s |
22 s . name = "YoutubeDirectLinkExtractor"
3- s . version = "0.1"
4- s . summary = ""
3+ s . version = "0.1.0 "
4+ s . summary = "Get the direct link to a YouTube video for AVPlayer "
55 s . description = <<-DESC
6- Your description here .
6+ YoutubeDirectLinkExtractor allows you to obtain the direct link to a YouTube video, which you can easily use with AVPlayer .
77 DESC
8- s . homepage = "git@ github.com: devandsev/YoutubeDirectLinkExtractor"
8+ s . homepage = "https:// github.com/ devandsev/YoutubeDirectLinkExtractor"
99 s . license = { :type => "MIT" , :file => "LICENSE" }
1010 s . author = { "Andrey Sevrikov" => "devandsev@gmail.com" }
11- s . social_media_url = ""
1211 s . ios . deployment_target = "8.0"
1312 s . osx . deployment_target = "10.9"
14- s . watchos . deployment_target = "2.0"
15- s . tvos . deployment_target = "9.0"
16- s . source = { :git => "git@github.com:devandsev/YoutubeDirectLinkExtractor.git" , :tag => s . version . to_s }
13+ s . source = { :git => s . homepage + ".git" , :tag => s . version . to_s }
1714 s . source_files = "Sources/**/*"
18- s . frameworks = "Foundation"
15+ s . frameworks = "Foundation" , "AVFoundation "
1916end
You can’t perform that action at this time.
0 commit comments