File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -16,15 +16,15 @@ public struct VideoInfo {
1616
1717 public var highestQualityPlayableLink : String ? {
1818 let urls = rawInfo. compactMap { $0 [ " url " ] }
19- return firstPLayable ( from: urls)
19+ return firstPlayable ( from: urls)
2020 }
2121
2222 public var lowestQualityPlayableLink : String ? {
2323 let urls = rawInfo. reversed ( ) . compactMap { $0 [ " url " ] }
24- return firstPLayable ( from: urls)
24+ return firstPlayable ( from: urls)
2525 }
2626
27- private func firstPLayable ( from urls: [ String ] ) -> String ? {
27+ private func firstPlayable ( from urls: [ String ] ) -> String ? {
2828 for urlString in urls {
2929 guard let url = URL ( string: urlString) else {
3030 continue
Original file line number Diff line number Diff line change 11Pod ::Spec . new do |s |
22 s . name = "YoutubeDirectLinkExtractor"
3- s . version = "0.1.1 "
3+ s . version = "0.2.0 "
44 s . summary = "Get the direct link to a YouTube video for AVPlayer"
55 s . description = <<-DESC
66 YoutubeDirectLinkExtractor allows you to obtain the direct link to a YouTube video, which you can easily use with AVPlayer.
You can’t perform that action at this time.
0 commit comments