Simple and featured video player with full of customisation possibility, full control over AVPlayer. Adjust as you need in terms of design and feature.
Here we have a simple plug and play module that a developer can use to integrate for video playing in swift 4.2. PlugAVPlayer lets you create your own UI and add images for buttons like play and fullscreen.
- Supports playing local videos and url streming.
- Url with extension and embed video url supported (No control for embedded video).
- Supports only Youtube embed URLs.
- Supports fullscreen.
- Slider design customization available.
- FastForward and Backward support.
- Next and Previous video callback.
- Change player rate.
- PlayerEventDelegate Delegate method control Next previous and reply, replace video with next or previous pan gesture delegate method which helps you manage your animation of video view.
- Supports Save Video locally.
- Supports custom player view.
- Memory controll.
Swift 4.2
iOS 10*
Xcode 10
You want to add pod 'SAPlugAVPlayer', '~> 0.3.2' similar to the following to your Podfile
target 'MyApp' do
pod 'SAPlugAVPlayer', '~> 0.3.2'
end
Then run a pod install inside your terminal, or from CocoaPods.app.
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
You can install Carthage with Homebrew using the following command:
$ brew update
$ brew install carthage
To integrate SAPlugAVPlayer into your Xcode project using Carthage, specify it in your Cartfile:
github "teamSolutionAnalysts/sa-plug-avplayer" == 0.3.3
Run carthage update to build the framework and drag the built SAPlugAVPlayer.framework into your Xcode project.
If you prefer not to use any of the aforementioned dependency managers, you can integrate SAPlugAVPlayer into your project manually. Just copy the source folder in your project directory from Source
If you are planing to play only youtube embedded urls. Do not take VideoController view. You can play embedded url with ViewVideo only.
import SAPlugAVPlayer
import AVFoundation
override func viewDidLoad() {
super.viewDidLoad()
setUpPlayerWithURlStreaming()
}
func setUpPlayerWithURlStreaming()
{
self.viewVideo.configure(url: self.url, ControllView: nil)
self.viewVideo.delegate = self
}
Drag and drop IBOutlets from UI
class ViewController : UIViewController{
@IBOutlet weak var viewVideo: ViewVideo!
@IBOutlet weak var videoController: VideoController!
}
Add and select images for buttons, play, pause, fullscreen, exitFullscreen, next and previous from Attribute Inspector as shown below
override func viewDidLoad() {
super.viewDidLoad()
setUpPlayerWithURlStreaming()
}
func setUpPlayerWithURlStreaming()
{
self.viewVideo.configure(url: self.url, ControllView: self.videoController)
self.viewVideo.delegate = self
self.viewVideo.play()
}
override func viewDidLoad() {
super.viewDidLoad()
setUpPlayerWithLocal()
}
func setUpPlayerWithLocal()
{
viewVideo.configure(ControllView: self.videoController,localPath:"localpath",fileextension : "mp4")
viewVideo.delegate = self
viewVideo.play()
}
// MARK: - Player Delegate Methods
extension ViewController : PlayerEventDelegate
{
func SAAVPlayer(minimizevideoScreen: Bool) {
}
func SAAVPlayer(panGesture didTriggerd: UIPanGestureRecognizer?) {
}
func SAAVPlayer(didEndPlaying: AVPlayer?) {
//Play your next video
//Replace your local video with next one
self.viewVideo.replacelocalVideo(path: "Your next video path", videoextension: "mp4")
OR
//Replace your streaming url with next one
self.viewVideo.replaceVideo(videourl: "url")
}
func SAAVPlayer(didTap overLay: AVPlayer?) {
}
func SAAVPlayer(willExpand player: AVPlayer?) {
}
func SAAVPlayer(didTaptoNextvideo: AVPlayer?) {
//Replace your local video with next one
self.viewVideo.replacelocalVideo(path: "Your next video path", videoextension: "mp4")
OR
//Replace your streaming url with next one
self.viewVideo.replaceVideo(videourl: "url")
}
func SAAVPlayer(didTaptoPreviousvideo: AVPlayer?) {
//Replace your video with previous one
self.viewVideo.replacelocalVideo(path: "Your previous video", videoextension: "mp4")
OR
//Replace your streaming url with next one
self.viewVideo.replaceVideo(videourl: "url")
}
func SAAVPlayer(panGesture sender: UIGestureRecognizer?) {
guard let sender = sender else{
return
}
let touchPoint = sender.location(in: self.viewVideo?.window)
if sender.state == UIGestureRecognizer.State.began {
initialTouchPoint = touchPoint
} else if sender.state == UIGestureRecognizer.State.changed {
if (touchPoint.x - initialTouchPoint.x) > 10
{
self.viewVideo.fastForwardPlayer()
}
else if (initialTouchPoint.x - touchPoint.x) > 10
{
self.viewVideo.fastBackward()
}
}
}
}
self.viewVideo.saveVideoLocally = false
self.viewVideo.currentVideoID = self.videoID // to manage video by id
//Change slider configuration (optional)
self.videoController.slider.baseColor = // UIColor
self.videoController.slider.bufferColor = // UIColor
self.videoController.slider.progressColor = // UIColor
self.videoController.slider.borderWidth = // CGFloat
self.videoController.slider.roundedSlider = // Bool
self.viewVideo.changePlayerRate(rate: rate)
There is a method which lets you change the player
- AVKit Framework
- URLSession is used
Solution Analyst
The slider is used from raxcat/BufferSlider, git
MIT License
Copyright (c) 2019 Solution Analysts Pvt. Ltd.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.