Unity录屏插件(Cross Platform Replay Kit)

作者:追风剑情 发布于:2022-12-5 17:05 分类:Unity3d

支持 Android 和 IOS 录屏,并保存到相册中。

官方示例场景:Plugins/VoxelBusters/ReplayKit/Examples/Scenes/ReplayKitDemo.unity

亲测成功!
Redmi Note 11T Pro

导入SDK,打包报错 Failed to update Android SDK package list. See the Console for details.
解决方法:
1、【Windows】-> Preferences -> External Tools -> 取消所有 xxxxx packages 的勾选
2、重启 Unity
3、将刚才取消的勾选重新勾上
4、点击 Play,强制刷新
5、重新打包
1111.png

打包报错 This project uses AndroidX dependencies, but the 'android.useAndroidX' property is not enabled. Set this property to true in the gradle.properties file and retry.
解决方法:在gradleTemplate.properties文件中增加以下两句
android.useAndroidX=true
android.enableJetifier=true


  1. using UnityEngine;
  2. using VoxelBusters.CoreLibrary;
  3. using VoxelBusters.ReplayKit;
  4. /// <summary>
  5. /// Cross Platform Replay Kit Screen Recording
  6. /// </summary>
  7. public class ReplayKitSDK : MonoBehaviour
  8. {
  9. #region Unity Life Cycle
  10. private void OnEnable()
  11. {
  12. Debug.Log("Registered for ReplayKit Callbacks");
  13. ReplayKitManager.DidInitialise += DidInitialiseEvent;
  14. ReplayKitManager.DidRecordingStateChange += DidRecordingStateChangeEvent;
  15. }
  16.  
  17. private void OnDisable()
  18. {
  19. ReplayKitManager.DidInitialise -= DidInitialiseEvent;
  20. ReplayKitManager.DidRecordingStateChange -= DidRecordingStateChangeEvent;
  21. }
  22. #endregion
  23.  
  24. #region Initialise
  25. public void Initialise()
  26. {
  27. //初始化SDK
  28. ReplayKitManager.Initialise();
  29. }
  30. #endregion
  31.  
  32. #region Query
  33. public void IsRecordingAPIAvailable()
  34. {
  35. //是否支持录制
  36. bool isAvailable = ReplayKitManager.IsRecordingAPIAvailable();
  37. Debug.Log($"Recording API Available: {isAvailable}");
  38. }
  39.  
  40. public void IsRecording()
  41. {
  42. //是否正在录制...
  43. bool isRecording = ReplayKitManager.IsRecording();
  44. Debug.Log($"Is currently recording: {isRecording}");
  45. }
  46.  
  47. public void IsPreviewAvailable()
  48. {
  49. //是否已保存且可播放录制的视频
  50. bool isPreviewAvailable = ReplayKitManager.IsPreviewAvailable();
  51. Debug.Log($"Is preview available: {isPreviewAvailable}");
  52. }
  53.  
  54. public void GetPreviewFilePath()
  55. {
  56. //获取视频地址
  57. string filePath = ReplayKitManager.GetPreviewFilePath();
  58. Debug.Log($"Recorded video preview file path: {filePath}");
  59. }
  60. #endregion
  61.  
  62. #region Utilities
  63. public void SavePreview() //Saves preview to gallery
  64. {
  65. if (ReplayKitManager.IsPreviewAvailable())
  66. {
  67. //保存到相册
  68. ReplayKitManager.SavePreview((result, error) =>
  69. {
  70. if (error == null)
  71. {
  72. Debug.Log($"Saved preview to gallery.");
  73. }
  74. else
  75. {
  76. Debug.Log($"Saved preview to gallery failed with error: {error}");
  77. }
  78. });
  79. }
  80. else
  81. {
  82. Debug.Log("Preview recording not available. If you have already recoded, wait for ReplayKitRecordingState.Available status event and try saving again.");
  83. }
  84. }
  85.  
  86. public void SharePreview()
  87. {
  88. if (ReplayKitManager.IsPreviewAvailable())
  89. {
  90. //调用系统分享接口
  91. ReplayKitManager.SharePreview();
  92. Debug.Log("Shared video preview");
  93. }
  94. }
  95. #endregion
  96.  
  97. #region Recording
  98. public void SetMicrophoneStatus()
  99. {
  100. //true: 录制麦克风音频
  101. ReplayKitManager.SetMicrophoneStatus(true);
  102. }
  103.  
  104. public void PrepareRecording()
  105. {
  106. //准备录制,调用此接口申请所需权限
  107. ReplayKitManager.PrepareRecording((result, error) =>
  108. {
  109. if (error == null)
  110. {
  111. Debug.Log("Prepare recording successfull.");
  112. }
  113. else
  114. {
  115. Debug.Log($"Prepare recording failed with error : {error}");
  116. }
  117. });
  118. }
  119.  
  120. public void StartRecording()
  121. {
  122. //开始录制
  123. ReplayKitManager.StartRecording();
  124. }
  125.  
  126. public void StopRecording()
  127. {
  128. //停止录制
  129. ReplayKitManager.StopRecording((result, error) => {
  130. if (error == null)
  131. {
  132. Debug.Log($"File path: {result.Path}");
  133. }
  134. else
  135. {
  136. Debug.Log($"Failed with error: {error}");
  137. }
  138. });
  139. }
  140.  
  141. public void Preview()
  142. {
  143. //预览录制完成的视频
  144. bool success = ReplayKitManager.Preview();
  145. Debug.Log($"Preview recording: {(success ? "Success" : "Failed")}");
  146. }
  147.  
  148. public void Discard()
  149. {
  150. //删除录制完成的视频
  151. bool success = ReplayKitManager.Discard();
  152. Debug.Log($"Discard recording: {(success ? "Success" : "Failed")}");
  153. }
  154. #endregion
  155.  
  156. #region Event Callbacks
  157. private void DidInitialiseEvent(InitialiseCompleteResult result, Error error)
  158. {
  159. Debug.Log("Received Event Callback : DidInitialiseEvent [State:" + result.State.ToString() + " " + "Error:" + error);
  160.  
  161. switch (result.State)
  162. {
  163. //SDK初始化成功
  164. case ReplayKitInitialisationState.Success:
  165. Debug.Log("ReplayKitManager.DidInitialiseEvent : Initialisation Success");
  166. break;
  167. //SDK初始化失败
  168. case ReplayKitInitialisationState.Failed:
  169. Debug.Log("ReplayKitManager.DidInitialiseEvent : Initialisation Failed with message[" + error + "]");
  170. break;
  171.  
  172. default:
  173. Debug.Log("Unknown State");
  174. break;
  175. }
  176. }
  177.  
  178. private void DidRecordingStateChangeEvent(RecordingStateChangeResult result, Error error)
  179. {
  180. Debug.Log("Received Event Callback : DidRecordingStateChangeEvent [State:" + result.State.ToString() + " " + "Error:" + error);
  181.  
  182. switch (result.State)
  183. {
  184. //录制开始
  185. case ReplayKitRecordingState.Started:
  186. Debug.Log("ReplayKitManager.DidRecordingStateChangeEvent : Video Recording Started");
  187. break;
  188. //录制停止
  189. case ReplayKitRecordingState.Stopped:
  190. Debug.Log("ReplayKitManager.DidRecordingStateChangeEvent : Video Recording Stopped");
  191. break;
  192. //录制失败
  193. case ReplayKitRecordingState.Failed:
  194. Debug.Log("ReplayKitManager.DidRecordingStateChangeEvent : Video Recording Failed with message [" + error + "]");
  195. break;
  196. //视频录制完成并且可预览
  197. case ReplayKitRecordingState.Available:
  198. Debug.Log("ReplayKitManager.DidRecordingStateChangeEvent : Video Recording available for preview");
  199. break;
  200.  
  201. default:
  202. Debug.Log("ReplayKit Unknown State");
  203. break;
  204. }
  205. }
  206. #endregion
  207. }



标签: Unity3d

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号