{"id":18374230,"url":"https://github.com/superbderrick/summerplayerview","last_synced_at":"2026-03-02T07:32:20.659Z","repository":{"id":56947447,"uuid":"268284876","full_name":"superbderrick/SummerPlayerView","owner":"superbderrick","description":"📺 VideoPlayerView for kids, Tried to make it as similar as possible a Youtube kids App Player UI","archived":false,"fork":false,"pushed_at":"2020-10-03T11:08:21.000Z","size":17064,"stargazers_count":42,"open_issues_count":0,"forks_count":9,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-03-22T06:12:47.767Z","etag":null,"topics":["avplayer","avqueueplayer","hls","hls-live-streaming","iosvideoplayer","kids","player-ui","streaming-video","youtube","youtube-kids","youtubekids"],"latest_commit_sha":null,"homepage":"","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/superbderrick.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-05-31T13:22:30.000Z","updated_at":"2024-11-23T18:20:58.000Z","dependencies_parsed_at":"2022-08-21T08:20:44.679Z","dependency_job_id":null,"html_url":"https://github.com/superbderrick/SummerPlayerView","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/superbderrick%2FSummerPlayerView","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/superbderrick%2FSummerPlayerView/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/superbderrick%2FSummerPlayerView/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/superbderrick%2FSummerPlayerView/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/superbderrick","download_url":"https://codeload.github.com/superbderrick/SummerPlayerView/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247539405,"owners_count":20955306,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["avplayer","avqueueplayer","hls","hls-live-streaming","iosvideoplayer","kids","player-ui","streaming-video","youtube","youtube-kids","youtubekids"],"created_at":"2024-11-06T00:13:53.458Z","updated_at":"2026-03-02T07:32:20.615Z","avatar_url":"https://github.com/superbderrick.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SummerPlayerView\n![Swift](https://img.shields.io/badge/Swift-5.0-orange.svg)\n\n[![CI Status](https://img.shields.io/travis/Derrick/SummerPlayerView.svg?style=flat)](https://travis-ci.org/Derrick/SummerPlayerView)\n[![Version](https://img.shields.io/cocoapods/v/SummerPlayerView.svg?style=flat)](https://cocoapods.org/pods/SummerPlayerView)\n[![License](https://img.shields.io/cocoapods/l/SummerPlayerView.svg?style=flat)](https://cocoapods.org/pods/SummerPlayerView)\n[![Platform](https://img.shields.io/cocoapods/p/SummerPlayerView.svg?style=flat)](https://cocoapods.org/pods/SummerPlayerView)\n[![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Fsuperbderrick%2FSummerPlayerView\u0026count_bg=%23773DC8\u0026title_bg=%23555555\u0026icon=\u0026icon_color=%23E7E7E7\u0026title=hits\u0026edge_flat=true)](https://hits.seeyoufarm.com)\n\n\n\n![](https://github.com/superbderrick/SummerSlider/blob/master/Image/logo.jpeg)\n\n## SummerPlayerView\nSummerPlayerView is an iOS Custom VideoPlayerView, It tried to make it as similar as possible a Youtube kids App's Player UI\n\n## Example\n\nTo run the example project, clone the repo, and run `pod install` from the Example directory first.\n\n## Demo\n\n### Light theme\n![With Light theme](https://github.com/superbderrick/SummerPlayerView/blob/master/demo/1.gif)\n\n### Dark theme\n![With Dark theme](https://github.com/superbderrick/SummerPlayerView/blob/master/demo/2.gif)\n\n## Requirements\n-\tSwift 5.0+\n-\tiOS 13.0+\n-\tXcode 11+\n\n## Installation\n\nSummerPlayerView is available through [CocoaPods](https://cocoapods.org). To install\nit, simply add the following line to your Podfile:\n\n```ruby\npod 'SummerPlayerView'\n```\n\n## Usage\n\nCurrently `SummerPlayerView` can be instantiated programatically only\n\n#### Programatically\n\n```swift \n\nimport UIKit\nimport AVKit\n\nimport SummerPlayerView\n\nclass PlayerViewController: UIViewController  {\n    \n    let defaultConfig = DefaultConfig()\n    \n    override func viewDidLoad() {\n        super.viewDidLoad()\n        \n        let testContents = ContentsMaker.getContents()\n        let sampleTheme = ThemeMaker.getTheme()\n        \n        let summerPlayerView = SummerPlayerView(configuration: defaultConfig, theme: sampleTheme,targetView: view)\n        \n        summerPlayerView.delegate = self\n        \n        if let currentItem = testContents.first {\n            summerPlayerView.setupPlayList(currentItem: currentItem, items: testContents)\n        }\n        \n        view.addSubview(summerPlayerView)\n        \n        summerPlayerView.pinEdges(targetView: view)\n        \n    }\n    \n}\n\n```\n\n#### Configuration and theme\n\n- Configure SummerPlayerView's theme and \nconfigurations, and target view where the video will appear like sample code\n\n- Currently, only landscape mode is supported\n\n#### Concepts\n\nIt tried to make it as similar as possible a Youtube kids App Player UI\nThrough SummerPlayerView, you can understand the following basic player actions\n\n- Basic playback\n- Loop playback\n- Next or Previous playback with playlist\n- Seek \n- HLS playback with AVQueueplayer\n\n## Author\n\nDerrick, kang.derrick@gmail.com\n\n## License\n\nSummerPlayerView is available under the MIT license. See the LICENSE file for more info.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuperbderrick%2Fsummerplayerview","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsuperbderrick%2Fsummerplayerview","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsuperbderrick%2Fsummerplayerview/lists"}