Latest | 1.3.0 |
---|---|
Homepage | https://github.com/mhergon/AVPlayerViewController-Subtitles |
License | Apache License, Version 2.0 |
Platforms | ios 8.0, tvos 9.0, requires ARC |
Frameworks | MediaPlayer |
Authors |
AVPlayerViewController-Subtitles is a library to display subtitles on iOS. It’s built as a Swift extension and it’s very easy to integrate.
How To Get Started
Installation with CocoaPods
platform :ios, '8.0'
pod "AVPlayerViewController-Subtitles"
Manually installation
Download (right-click) and add to your project.
Requirements
Version | Language | Minimum iOS Target |
---|---|---|
1.2.x | Swift 3.0 | iOS 8 |
1.0.x | Swift 2.x | iOS 8 |
Usage with player
import AVPlayerViewControllerSubtitles
// Video file
let videoFile = Bundle.main.path(forResource: "trailer_720p", ofType: "mov")
// Subtitle file
let subtitleFile = Bundle.main.path(forResource: "trailer_720p", ofType: "srt")
let subtitleURL = URL(fileURLWithPath: subtitleFile!)
// Movie player
let moviePlayer = AVPlayerViewController()
moviePlayer.player = AVPlayer(url: URL(fileURLWithPath: videoFile!))
present(moviePlayer, animated: true, completion: nil)
// Add subtitles
moviePlayer.addSubtitles().open(file: subtitleURL)
moviePlayer.addSubtitles().open(file: subtitleURL, encoding: String.Encoding.utf8)
// Change text properties
moviePlayer.subtitleLabel?.textColor = UIColor.red
// Play
moviePlayer.player?.play()
Screenshot
Usage without player
From version 1.2 you can search text in the SubRip file or text without need play any file.
import AVPlayerViewControllerSubtitles
// Subtitle file
let subtitleFile = Bundle.main.path(forResource: "trailer_720p", ofType: "srt")
let subtitleURL = URL(fileURLWithPath: subtitleFile!)
// Subtitle parser
let parser = Subtitles(file: subtitleURL, encoding: .utf8)
// Do something with result
let subtitles = parser.searchSubtitles(at: 2.0) // Search subtitle at 2.0 seconds
Contact
License
Licensed under Apache License v2.0.
Copyright 2017 Marc Hervera.
Latest podspec
{ "name": "AVPlayerViewController-Subtitles", "platforms": { "ios": "8.0", "tvos": "9.0" }, "version": "1.3.0", "license": { "type": "Apache License, Version 2.0" }, "homepage": "https://github.com/mhergon/AVPlayerViewController-Subtitles", "authors": { "Marc Hervera": "[email protected]" }, "summary": "Subtitles made easy", "source": { "git": "https://github.com/mhergon/AVPlayerViewController-Subtitles.git", "tag": "v1.3.0" }, "source_files": "Subtitles.swift", "requires_arc": true, "module_name": "AVPlayerViewControllerSubtitles", "frameworks": "MediaPlayer", "swift_version": "4.2" }
Thu, 17 Jan 2019 11:23:08 +0000