8000 GitHub - abreckler/prism-sdk-ios
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

abreckler/prism-sdk-ios

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

72 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

README

This README documents the steps necessary to get up and running.

Add PrismRecorder

Client Key (token)

  • First right-click your Info.plist and select "Open As >> Source code".
  • Navigate to the bottom of the file, right before the closing < /dict>
  • Paste the following, after replacing MYCLIENTKEY with your own key
	<key>prism_client_id</key>
	<string>MYCLIENTKEY</string>

Permissions

To use all the functionalities of Prism Recorder, you need 3 permissions:

  • Photos: Mandatory to access the final recording
  • Camera: To record the tester camera
  • Mic: to record the tester mic

On iOS 10 and above, you need to provide the permissions usage description in your Info.plist if you don't already. Here's a sample copy, adjust as needed:

  • First right-click your Info.plist and select "Open As >> Source code".
  • Navigate to the bottom of the file, right before the closing < /dict>
  • Paste the following:
#!plist

    <key>NSMicrophoneUsageDescription</key>
    <string>We use the microphone to record testing audio and sound. Audio is muted if permission isn't granted.</string>
    <key>NSPhotoLibraryUsageDescription</key>
    <string>Enable Photos access to save media to your camera roll</string>
    <key>NSCameraUsageDescription</key>
    <string>Enable Camera access to record testing videos.</string>

Build and Run

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0