Giter VIP home page Giter VIP logo

sshyran / replaykitunitybridge Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ustwo/replaykitunitybridge

0.0 1.0 0.0 16.61 MB

A bridge created from iOS to Unity - exposing the Cocoa ReplayKit API. It allows you to record the screen, set a limited time for the screen to be recorded, and receive a file of the recorded session

License: MIT License

C# 4.70% Swift 11.39% Objective-C++ 1.05% Objective-C 0.26% ASP 82.60%

replaykitunitybridge's Introduction

license

Summary

This is a Unity plugin for iOS that allows you to record the screen and capture gameplay. It includes the Xcode project that it was built in. To start using it, simply drag the PluginSource folder into your Unity project as a sub-folder in the following directory/file path: Assets > Plugins > iOS > ReplayKitUnity > Drag the source and editor folders into here

Blog Post describing the steps to make a bridge: https://medium.com/@SoCohesive/unity-how-to-build-a-bridge-ios-to-unity-with-swift-f23653f6261

Disclaimer:

This plugin is a work in progress and has been built to show the steps of creating a Unity iOS plugin using Swift

Features

  • Record Screen
  • Stop recording of screen
  • Recieve video file (.mp4) of recording
  • Set a restricting time to allow for recording the screen
  • A record button and progress bar of your recording playback that is excluded from the screen recording
  • Share the recorded file via the standard iOS share sheet (mail, twitter, facebook)

Requirements

  • iOS 11.0 or later

Getting Started

  • Go to the "Demo" folder, Main Scene. View the RecordController script for sample code

Communication

  • If you found a bug, open an issue.
  • If you have a feature request, open an issue.
  • If you want to contribute, submit a pull request.

Installation

  • Open the Plugin Source folder, Drag the "Source" and "Editor" folder into your Unity project.
  • It must be dragged into the following Unity file path : Assets > Plugins > iOS > ReplayKitUnity

How To Use

  1. Start a screen recording
ReplayKitUnity.StartRecording();
  1. Stop the screen recording
ReplayKitUnity.StopRecording();
  1. Get the video file after recording is complete

a) Subscribe to the onStopCaptureWithFile action in ReplayKitUnity

ReplayKitUnity.Instance.onStopCaptureWithFile += OnStopRecording; (connect to your function)

b) Use the VideoPlayer Unity componnent or any video playback technique to play the .mp4

  1. Get notified when the recording has started
ReplayKitUnity.Instance.onStartRecording += OnStartRecording; (connect to your function)
  1. Set a constrained time to record gameplahy (ie - only 10 seconds)
ReplayKitUnity.AllowedTimeToRecord = 10.0f;
  1. Set the subject line for sharing the video file via email
ReplayKitUnity.MailSubjectText = "Check this recording of my game out!";

Contact:

replaykitunitybridge's People

Contributors

hammadb avatar socohesive avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.