{"id":13907881,"url":"https://github.com/piemonte/PBJVideoPlayer","last_synced_at":"2025-07-18T06:31:37.799Z","repository":{"id":11699130,"uuid":"14213260","full_name":"piemonte/PBJVideoPlayer","owner":"piemonte","description":"▶️ video player, simple way to play and stream media on iOS/tvOS","archived":true,"fork":false,"pushed_at":"2021-03-03T06:29:26.000Z","size":3457,"stargazers_count":616,"open_issues_count":0,"forks_count":109,"subscribers_count":30,"default_branch":"main","last_synced_at":"2025-07-04T12:04:13.472Z","etag":null,"topics":["ios","media","objective-c","pbjvideoplayer","player","stream","tvos","video-player"],"latest_commit_sha":null,"homepage":"","language":"Objective-C","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/piemonte.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":"2013-11-07T19:16:03.000Z","updated_at":"2024-10-25T16:12:44.000Z","dependencies_parsed_at":"2022-09-15T21:51:42.058Z","dependency_job_id":null,"html_url":"https://github.com/piemonte/PBJVideoPlayer","commit_stats":null,"previous_names":[],"tags_count":24,"template":false,"template_full_name":null,"purl":"pkg:github/piemonte/PBJVideoPlayer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/piemonte%2FPBJVideoPlayer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/piemonte%2FPBJVideoPlayer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/piemonte%2FPBJVideoPlayer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/piemonte%2FPBJVideoPlayer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/piemonte","download_url":"https://codeload.github.com/piemonte/PBJVideoPlayer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/piemonte%2FPBJVideoPlayer/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265710560,"owners_count":23815379,"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":["ios","media","objective-c","pbjvideoplayer","player","stream","tvos","video-player"],"created_at":"2024-08-06T23:02:15.847Z","updated_at":"2025-07-18T06:31:37.375Z","avatar_url":"https://github.com/piemonte.png","language":"Objective-C","funding_links":[],"categories":["HarmonyOS","OOM-Leaks-Crash"],"sub_categories":["Windows Manager","Player"],"readme":"![PBJVideoPlayer](https://raw.github.com/piemonte/PBJVideoPlayer/master/PBJVideoPlayer.gif)\n\n## PBJVideoPlayer\n`PBJVideoPlayer` is a simple video player library for iOS and tvOS.\n\n[![Build Status](https://travis-ci.com/piemonte/PBJVideoPlayer.svg)](https://travis-ci.com/piemonte/PBJVideoPlayer)\n[![Pod Version](https://img.shields.io/cocoapods/v/PBJVideoPlayer.svg?style=flat)](http://cocoadocs.org/docsets/PBJVideoPlayer/) [![GitHub license](https://img.shields.io/badge/license-MIT-lightgrey.svg)](https://github.com/piemonte/PBJVideoPlayer/blob/master/LICENSE)\n\n- Looking for a Swift video player? Check out [Player (Swift)](https://github.com/piemonte/Player).\n- Looking for a Swift camera library? Check out [Next Level](https://github.com/NextLevel/NextLevel).\n\n### Features\n- [x] plays local media or streams remote media over HTTP\n- [x] customizable UI and user interaction\n- [x] no size restrictions\n- [x] orientation change support\n- [x] simple API\n\n## Quick Start\n\n[CocoaPods](http://cocoapods.org) is the recommended method of installing PBJVideoPlayer, just add the following line to your `Podfile`:\n\n```ruby\npod 'PBJVideoPlayer'\n```\n\n## Usage\n```objective-c\n#import \u003cPBJVideoPlayer/PBJVideoPlayer.h\u003e\n```\n\n```objective-c\n// allocate controller\nPBJVideoPlayerController *videoPlayerController = [[PBJVideoPlayerController alloc] init];\nvideoPlayerController.delegate = self;\nvideoPlayerController.view.frame = self.view.bounds;\n\n// setup media\nvideoPlayerController.videoPath = @\"https://example.com/video.mp4\";\n\n// present\n[self addChildViewController:videoPlayerController];\n[self.view addSubview:videoPlayerController.view];\n[videoPlayerController didMoveToParentViewController:self];\n```\n\n## Community\n\n- Need help? Use [Stack Overflow](http://stackoverflow.com/questions/tagged/pbjvideoplayer) with the tag 'pbjvideoplayer'.\n- Questions? Use [Stack Overflow](http://stackoverflow.com/questions/tagged/pbjvideoplayer) with the tag 'pbjvideoplayer'.\n- Found a bug? Open an [issue](https://github.com/piemonte/PBJVideoPlayer/issues).\n- Feature idea? Open an [issue](https://github.com/piemonte/PBJVideoPlayer/issues).\n- Want to contribute? Submit a [pull request](https://github.com/piemonte/PBJVideoPlayer/pulls).\n\n## Resources\n\n* [AV Foundation Programming Guide](https://developer.apple.com/library/ios/documentation/AudioVideo/Conceptual/AVFoundationPG/Articles/00_Introduction.html)\n* [PBJVision](https://github.com/piemonte/PBJVision), iOS camera engine, features touch-to-record video, slow motion video, and photo capture\n* [Player](https://github.com/piemonte/player), a simple iOS video player in Swift\n\n## License\n\nPBJVideoPlayer is available under the MIT license, see the [LICENSE](https://github.com/piemonte/PBJVideoPlayer/blob/master/LICENSE) file for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpiemonte%2FPBJVideoPlayer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpiemonte%2FPBJVideoPlayer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpiemonte%2FPBJVideoPlayer/lists"}