react-native-shengwang 4.6.2-rc.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (622) hide show
  1. package/CHANGELOG.md +755 -0
  2. package/LICENSE +20 -0
  3. package/README.md +162 -0
  4. package/android/build.gradle +180 -0
  5. package/android/consumer-rules.pro +5 -0
  6. package/android/gradle.properties +5 -0
  7. package/android/src/main/AndroidManifest.xml +11 -0
  8. package/android/src/main/AndroidManifestNew.xml +9 -0
  9. package/android/src/main/java/io/agora/rtc/ng/react/AgoraPIPActivity.java +107 -0
  10. package/android/src/main/java/io/agora/rtc/ng/react/AgoraRtcNgModule.java +278 -0
  11. package/android/src/main/java/io/agora/rtc/ng/react/AgoraRtcNgPackage.java +61 -0
  12. package/android/src/main/java/io/agora/rtc/ng/react/AgoraRtcSurfaceViewManager.java +60 -0
  13. package/android/src/main/java/io/agora/rtc/ng/react/AgoraRtcTextureViewManager.java +45 -0
  14. package/android/src/newarch/io/agora/rtc/ng/react/AgoraRtcNgSpec.java +9 -0
  15. package/android/src/newarch/io/agora/rtc/ng/react/AgoraRtcSurfaceViewManagerSpec.java +25 -0
  16. package/android/src/newarch/io/agora/rtc/ng/react/AgoraRtcTextureViewManagerSpec.java +25 -0
  17. package/android/src/oldarch/io/agora/rtc/ng/react/AgoraRtcNgSpec.java +40 -0
  18. package/android/src/oldarch/io/agora/rtc/ng/react/AgoraRtcSurfaceViewManagerSpec.java +16 -0
  19. package/android/src/oldarch/io/agora/rtc/ng/react/AgoraRtcTextureViewManagerSpec.java +12 -0
  20. package/ios/AgoraRtcNg.h +20 -0
  21. package/ios/AgoraRtcNg.mm +475 -0
  22. package/ios/AgoraRtcNg.xcodeproj/project.pbxproj +278 -0
  23. package/ios/AgoraRtcSurfaceView.h +17 -0
  24. package/ios/AgoraRtcSurfaceView.mm +95 -0
  25. package/ios/AgoraRtcSurfaceViewManager.mm +41 -0
  26. package/lib/commonjs/AgoraBase.js +4298 -0
  27. package/lib/commonjs/AgoraBase.js.map +1 -0
  28. package/lib/commonjs/AgoraMediaBase.js +1057 -0
  29. package/lib/commonjs/AgoraMediaBase.js.map +1 -0
  30. package/lib/commonjs/AgoraMediaPlayerTypes.js +323 -0
  31. package/lib/commonjs/AgoraMediaPlayerTypes.js.map +1 -0
  32. package/lib/commonjs/AgoraRtcRenderView.js +55 -0
  33. package/lib/commonjs/AgoraRtcRenderView.js.map +1 -0
  34. package/lib/commonjs/IAgoraH265Transcoder.js +40 -0
  35. package/lib/commonjs/IAgoraH265Transcoder.js.map +1 -0
  36. package/lib/commonjs/IAgoraLog.js +81 -0
  37. package/lib/commonjs/IAgoraLog.js.map +1 -0
  38. package/lib/commonjs/IAgoraMediaEngine.js +35 -0
  39. package/lib/commonjs/IAgoraMediaEngine.js.map +1 -0
  40. package/lib/commonjs/IAgoraMediaPlayer.js +25 -0
  41. package/lib/commonjs/IAgoraMediaPlayer.js.map +1 -0
  42. package/lib/commonjs/IAgoraMediaPlayerSource.js +4 -0
  43. package/lib/commonjs/IAgoraMediaPlayerSource.js.map +1 -0
  44. package/lib/commonjs/IAgoraMediaRecorder.js +13 -0
  45. package/lib/commonjs/IAgoraMediaRecorder.js.map +1 -0
  46. package/lib/commonjs/IAgoraMediaStreamingSource.js +77 -0
  47. package/lib/commonjs/IAgoraMediaStreamingSource.js.map +1 -0
  48. package/lib/commonjs/IAgoraMusicContentCenter.js +166 -0
  49. package/lib/commonjs/IAgoraMusicContentCenter.js.map +1 -0
  50. package/lib/commonjs/IAgoraPip.js +55 -0
  51. package/lib/commonjs/IAgoraPip.js.map +1 -0
  52. package/lib/commonjs/IAgoraRhythmPlayer.js +65 -0
  53. package/lib/commonjs/IAgoraRhythmPlayer.js.map +1 -0
  54. package/lib/commonjs/IAgoraRtcEngine.js +1056 -0
  55. package/lib/commonjs/IAgoraRtcEngine.js.map +1 -0
  56. package/lib/commonjs/IAgoraRtcEngineEx.js +22 -0
  57. package/lib/commonjs/IAgoraRtcEngineEx.js.map +1 -0
  58. package/lib/commonjs/IAgoraSpatialAudio.js +27 -0
  59. package/lib/commonjs/IAgoraSpatialAudio.js.map +1 -0
  60. package/lib/commonjs/IAudioDeviceManager.js +23 -0
  61. package/lib/commonjs/IAudioDeviceManager.js.map +1 -0
  62. package/lib/commonjs/Utils.js +44 -0
  63. package/lib/commonjs/Utils.js.map +1 -0
  64. package/lib/commonjs/extension/AgoraBaseExtension.js +6 -0
  65. package/lib/commonjs/extension/AgoraBaseExtension.js.map +1 -0
  66. package/lib/commonjs/extension/AgoraMediaBaseExtension.js +6 -0
  67. package/lib/commonjs/extension/AgoraMediaBaseExtension.js.map +1 -0
  68. package/lib/commonjs/extension/AgoraMediaPlayerTypesExtension.js +6 -0
  69. package/lib/commonjs/extension/AgoraMediaPlayerTypesExtension.js.map +1 -0
  70. package/lib/commonjs/extension/IAgoraH265TranscoderExtension.js +6 -0
  71. package/lib/commonjs/extension/IAgoraH265TranscoderExtension.js.map +1 -0
  72. package/lib/commonjs/extension/IAgoraLogExtension.js +6 -0
  73. package/lib/commonjs/extension/IAgoraLogExtension.js.map +1 -0
  74. package/lib/commonjs/extension/IAgoraMediaEngineExtension.js +6 -0
  75. package/lib/commonjs/extension/IAgoraMediaEngineExtension.js.map +1 -0
  76. package/lib/commonjs/extension/IAgoraMediaPlayerExtension.js +6 -0
  77. package/lib/commonjs/extension/IAgoraMediaPlayerExtension.js.map +1 -0
  78. package/lib/commonjs/extension/IAgoraMediaPlayerSourceExtension.js +6 -0
  79. package/lib/commonjs/extension/IAgoraMediaPlayerSourceExtension.js.map +1 -0
  80. package/lib/commonjs/extension/IAgoraMediaRecorderExtension.js +6 -0
  81. package/lib/commonjs/extension/IAgoraMediaRecorderExtension.js.map +1 -0
  82. package/lib/commonjs/extension/IAgoraMusicContentCenterExtension.js +6 -0
  83. package/lib/commonjs/extension/IAgoraMusicContentCenterExtension.js.map +1 -0
  84. package/lib/commonjs/extension/IAgoraPipExtension.js +6 -0
  85. package/lib/commonjs/extension/IAgoraPipExtension.js.map +1 -0
  86. package/lib/commonjs/extension/IAgoraRhythmPlayerExtension.js +6 -0
  87. package/lib/commonjs/extension/IAgoraRhythmPlayerExtension.js.map +1 -0
  88. package/lib/commonjs/extension/IAgoraRtcEngineExExtension.js +6 -0
  89. package/lib/commonjs/extension/IAgoraRtcEngineExExtension.js.map +1 -0
  90. package/lib/commonjs/extension/IAgoraRtcEngineExtension.js +6 -0
  91. package/lib/commonjs/extension/IAgoraRtcEngineExtension.js.map +1 -0
  92. package/lib/commonjs/extension/IAgoraSpatialAudioExtension.js +6 -0
  93. package/lib/commonjs/extension/IAgoraSpatialAudioExtension.js.map +1 -0
  94. package/lib/commonjs/extension/IAudioDeviceManagerExtension.js +6 -0
  95. package/lib/commonjs/extension/IAudioDeviceManagerExtension.js.map +1 -0
  96. package/lib/commonjs/impl/AgoraBaseImpl.js +26 -0
  97. package/lib/commonjs/impl/AgoraBaseImpl.js.map +1 -0
  98. package/lib/commonjs/impl/AgoraMediaBaseImpl.js +153 -0
  99. package/lib/commonjs/impl/AgoraMediaBaseImpl.js.map +1 -0
  100. package/lib/commonjs/impl/IAgoraH265TranscoderImpl.js +121 -0
  101. package/lib/commonjs/impl/IAgoraH265TranscoderImpl.js.map +1 -0
  102. package/lib/commonjs/impl/IAgoraMediaEngineImpl.js +341 -0
  103. package/lib/commonjs/impl/IAgoraMediaEngineImpl.js.map +1 -0
  104. package/lib/commonjs/impl/IAgoraMediaPlayerImpl.js +965 -0
  105. package/lib/commonjs/impl/IAgoraMediaPlayerImpl.js.map +1 -0
  106. package/lib/commonjs/impl/IAgoraMediaPlayerSourceImpl.js +76 -0
  107. package/lib/commonjs/impl/IAgoraMediaPlayerSourceImpl.js.map +1 -0
  108. package/lib/commonjs/impl/IAgoraMediaRecorderImpl.js +51 -0
  109. package/lib/commonjs/impl/IAgoraMediaRecorderImpl.js.map +1 -0
  110. package/lib/commonjs/impl/IAgoraMusicContentCenterImpl.js +429 -0
  111. package/lib/commonjs/impl/IAgoraMusicContentCenterImpl.js.map +1 -0
  112. package/lib/commonjs/impl/IAgoraRtcEngineExImpl.js +1182 -0
  113. package/lib/commonjs/impl/IAgoraRtcEngineExImpl.js.map +1 -0
  114. package/lib/commonjs/impl/IAgoraRtcEngineImpl.js +5435 -0
  115. package/lib/commonjs/impl/IAgoraRtcEngineImpl.js.map +1 -0
  116. package/lib/commonjs/impl/IAgoraSpatialAudioImpl.js +362 -0
  117. package/lib/commonjs/impl/IAgoraSpatialAudioImpl.js.map +1 -0
  118. package/lib/commonjs/impl/IAudioDeviceManagerImpl.js +379 -0
  119. package/lib/commonjs/impl/IAudioDeviceManagerImpl.js.map +1 -0
  120. package/lib/commonjs/index.js +255 -0
  121. package/lib/commonjs/index.js.map +1 -0
  122. package/lib/commonjs/internal/AgoraH265TranscoderInternal.js +66 -0
  123. package/lib/commonjs/internal/AgoraH265TranscoderInternal.js.map +1 -0
  124. package/lib/commonjs/internal/AgoraMediaBaseInternal.js +20 -0
  125. package/lib/commonjs/internal/AgoraMediaBaseInternal.js.map +1 -0
  126. package/lib/commonjs/internal/AgoraPipInternal.js +101 -0
  127. package/lib/commonjs/internal/AgoraPipInternal.js.map +1 -0
  128. package/lib/commonjs/internal/IAgoraRtcRenderView.js +72 -0
  129. package/lib/commonjs/internal/IAgoraRtcRenderView.js.map +1 -0
  130. package/lib/commonjs/internal/IrisApiEngine.js +259 -0
  131. package/lib/commonjs/internal/IrisApiEngine.js.map +1 -0
  132. package/lib/commonjs/internal/LocalSpatialAudioEngineInternal.js +10 -0
  133. package/lib/commonjs/internal/LocalSpatialAudioEngineInternal.js.map +1 -0
  134. package/lib/commonjs/internal/MediaEngineInternal.js +124 -0
  135. package/lib/commonjs/internal/MediaEngineInternal.js.map +1 -0
  136. package/lib/commonjs/internal/MediaPlayerInternal.js +170 -0
  137. package/lib/commonjs/internal/MediaPlayerInternal.js.map +1 -0
  138. package/lib/commonjs/internal/MediaRecorderInternal.js +75 -0
  139. package/lib/commonjs/internal/MediaRecorderInternal.js.map +1 -0
  140. package/lib/commonjs/internal/MusicContentCenterInternal.js +144 -0
  141. package/lib/commonjs/internal/MusicContentCenterInternal.js.map +1 -0
  142. package/lib/commonjs/internal/RtcEngineExInternal.js +258 -0
  143. package/lib/commonjs/internal/RtcEngineExInternal.js.map +1 -0
  144. package/lib/commonjs/internal/call.js +133 -0
  145. package/lib/commonjs/internal/call.js.map +1 -0
  146. package/lib/commonjs/internal/event.js +32 -0
  147. package/lib/commonjs/internal/event.js.map +1 -0
  148. package/lib/commonjs/specs/AgoraRtcSurfaceViewNativeComponent.js +10 -0
  149. package/lib/commonjs/specs/AgoraRtcSurfaceViewNativeComponent.js.map +1 -0
  150. package/lib/commonjs/specs/AgoraRtcTextureViewNativeComponent.js +10 -0
  151. package/lib/commonjs/specs/AgoraRtcTextureViewNativeComponent.js.map +1 -0
  152. package/lib/commonjs/specs/NativeAgoraRtcNg.js +9 -0
  153. package/lib/commonjs/specs/NativeAgoraRtcNg.js.map +1 -0
  154. package/lib/commonjs/specs/index.js +22 -0
  155. package/lib/commonjs/specs/index.js.map +1 -0
  156. package/lib/commonjs/ti/AgoraBase-ti.js +24 -0
  157. package/lib/commonjs/ti/AgoraBase-ti.js.map +1 -0
  158. package/lib/commonjs/ti/AgoraMediaBase-ti.js +59 -0
  159. package/lib/commonjs/ti/AgoraMediaBase-ti.js.map +1 -0
  160. package/lib/commonjs/ti/AgoraMediaPlayerTypes-ti.js +15 -0
  161. package/lib/commonjs/ti/AgoraMediaPlayerTypes-ti.js.map +1 -0
  162. package/lib/commonjs/ti/AgoraPip-ti.js +22 -0
  163. package/lib/commonjs/ti/AgoraPip-ti.js.map +1 -0
  164. package/lib/commonjs/ti/IAgoraH265Transcoder-ti.js +24 -0
  165. package/lib/commonjs/ti/IAgoraH265Transcoder-ti.js.map +1 -0
  166. package/lib/commonjs/ti/IAgoraLog-ti.js +15 -0
  167. package/lib/commonjs/ti/IAgoraLog-ti.js.map +1 -0
  168. package/lib/commonjs/ti/IAgoraMediaEngine-ti.js +15 -0
  169. package/lib/commonjs/ti/IAgoraMediaEngine-ti.js.map +1 -0
  170. package/lib/commonjs/ti/IAgoraMediaPlayer-ti.js +22 -0
  171. package/lib/commonjs/ti/IAgoraMediaPlayer-ti.js.map +1 -0
  172. package/lib/commonjs/ti/IAgoraMediaPlayerSource-ti.js +34 -0
  173. package/lib/commonjs/ti/IAgoraMediaPlayerSource-ti.js.map +1 -0
  174. package/lib/commonjs/ti/IAgoraMediaRecorder-ti.js +15 -0
  175. package/lib/commonjs/ti/IAgoraMediaRecorder-ti.js.map +1 -0
  176. package/lib/commonjs/ti/IAgoraMediaStreamingSource-ti.js +15 -0
  177. package/lib/commonjs/ti/IAgoraMediaStreamingSource-ti.js.map +1 -0
  178. package/lib/commonjs/ti/IAgoraMusicContentCenter-ti.js +26 -0
  179. package/lib/commonjs/ti/IAgoraMusicContentCenter-ti.js.map +1 -0
  180. package/lib/commonjs/ti/IAgoraPip-ti.js +22 -0
  181. package/lib/commonjs/ti/IAgoraPip-ti.js.map +1 -0
  182. package/lib/commonjs/ti/IAgoraRhythmPlayer-ti.js +15 -0
  183. package/lib/commonjs/ti/IAgoraRhythmPlayer-ti.js.map +1 -0
  184. package/lib/commonjs/ti/IAgoraRtcEngine-ti.js +128 -0
  185. package/lib/commonjs/ti/IAgoraRtcEngine-ti.js.map +1 -0
  186. package/lib/commonjs/ti/IAgoraRtcEngineEx-ti.js +15 -0
  187. package/lib/commonjs/ti/IAgoraRtcEngineEx-ti.js.map +1 -0
  188. package/lib/commonjs/ti/IAgoraSpatialAudio-ti.js +15 -0
  189. package/lib/commonjs/ti/IAgoraSpatialAudio-ti.js.map +1 -0
  190. package/lib/commonjs/ti/IAudioDeviceManager-ti.js +15 -0
  191. package/lib/commonjs/ti/IAudioDeviceManager-ti.js.map +1 -0
  192. package/lib/commonjs/ti/Utils-ti.js +15 -0
  193. package/lib/commonjs/ti/Utils-ti.js.map +1 -0
  194. package/lib/commonjs/ti/index-ti.js +15 -0
  195. package/lib/commonjs/ti/index-ti.js.map +1 -0
  196. package/lib/module/AgoraBase.js +4333 -0
  197. package/lib/module/AgoraBase.js.map +1 -0
  198. package/lib/module/AgoraMediaBase.js +1067 -0
  199. package/lib/module/AgoraMediaBase.js.map +1 -0
  200. package/lib/module/AgoraMediaPlayerTypes.js +318 -0
  201. package/lib/module/AgoraMediaPlayerTypes.js.map +1 -0
  202. package/lib/module/AgoraRtcRenderView.js +47 -0
  203. package/lib/module/AgoraRtcRenderView.js.map +1 -0
  204. package/lib/module/IAgoraH265Transcoder.js +36 -0
  205. package/lib/module/IAgoraH265Transcoder.js.map +1 -0
  206. package/lib/module/IAgoraLog.js +77 -0
  207. package/lib/module/IAgoraLog.js.map +1 -0
  208. package/lib/module/IAgoraMediaEngine.js +29 -0
  209. package/lib/module/IAgoraMediaEngine.js.map +1 -0
  210. package/lib/module/IAgoraMediaPlayer.js +17 -0
  211. package/lib/module/IAgoraMediaPlayer.js.map +1 -0
  212. package/lib/module/IAgoraMediaPlayerSource.js +6 -0
  213. package/lib/module/IAgoraMediaPlayerSource.js.map +1 -0
  214. package/lib/module/IAgoraMediaRecorder.js +6 -0
  215. package/lib/module/IAgoraMediaRecorder.js.map +1 -0
  216. package/lib/module/IAgoraMediaStreamingSource.js +73 -0
  217. package/lib/module/IAgoraMediaStreamingSource.js.map +1 -0
  218. package/lib/module/IAgoraMusicContentCenter.js +156 -0
  219. package/lib/module/IAgoraMusicContentCenter.js.map +1 -0
  220. package/lib/module/IAgoraPip.js +48 -0
  221. package/lib/module/IAgoraPip.js.map +1 -0
  222. package/lib/module/IAgoraRhythmPlayer.js +61 -0
  223. package/lib/module/IAgoraRhythmPlayer.js.map +1 -0
  224. package/lib/module/IAgoraRtcEngine.js +1049 -0
  225. package/lib/module/IAgoraRtcEngine.js.map +1 -0
  226. package/lib/module/IAgoraRtcEngineEx.js +15 -0
  227. package/lib/module/IAgoraRtcEngineEx.js.map +1 -0
  228. package/lib/module/IAgoraSpatialAudio.js +18 -0
  229. package/lib/module/IAgoraSpatialAudio.js.map +1 -0
  230. package/lib/module/IAudioDeviceManager.js +17 -0
  231. package/lib/module/IAudioDeviceManager.js.map +1 -0
  232. package/lib/module/Utils.js +35 -0
  233. package/lib/module/Utils.js.map +1 -0
  234. package/lib/module/extension/AgoraBaseExtension.js +2 -0
  235. package/lib/module/extension/AgoraBaseExtension.js.map +1 -0
  236. package/lib/module/extension/AgoraMediaBaseExtension.js +2 -0
  237. package/lib/module/extension/AgoraMediaBaseExtension.js.map +1 -0
  238. package/lib/module/extension/AgoraMediaPlayerTypesExtension.js +2 -0
  239. package/lib/module/extension/AgoraMediaPlayerTypesExtension.js.map +1 -0
  240. package/lib/module/extension/IAgoraH265TranscoderExtension.js +2 -0
  241. package/lib/module/extension/IAgoraH265TranscoderExtension.js.map +1 -0
  242. package/lib/module/extension/IAgoraLogExtension.js +2 -0
  243. package/lib/module/extension/IAgoraLogExtension.js.map +1 -0
  244. package/lib/module/extension/IAgoraMediaEngineExtension.js +2 -0
  245. package/lib/module/extension/IAgoraMediaEngineExtension.js.map +1 -0
  246. package/lib/module/extension/IAgoraMediaPlayerExtension.js +2 -0
  247. package/lib/module/extension/IAgoraMediaPlayerExtension.js.map +1 -0
  248. package/lib/module/extension/IAgoraMediaPlayerSourceExtension.js +2 -0
  249. package/lib/module/extension/IAgoraMediaPlayerSourceExtension.js.map +1 -0
  250. package/lib/module/extension/IAgoraMediaRecorderExtension.js +2 -0
  251. package/lib/module/extension/IAgoraMediaRecorderExtension.js.map +1 -0
  252. package/lib/module/extension/IAgoraMusicContentCenterExtension.js +2 -0
  253. package/lib/module/extension/IAgoraMusicContentCenterExtension.js.map +1 -0
  254. package/lib/module/extension/IAgoraPipExtension.js +2 -0
  255. package/lib/module/extension/IAgoraPipExtension.js.map +1 -0
  256. package/lib/module/extension/IAgoraRhythmPlayerExtension.js +2 -0
  257. package/lib/module/extension/IAgoraRhythmPlayerExtension.js.map +1 -0
  258. package/lib/module/extension/IAgoraRtcEngineExExtension.js +2 -0
  259. package/lib/module/extension/IAgoraRtcEngineExExtension.js.map +1 -0
  260. package/lib/module/extension/IAgoraRtcEngineExtension.js +2 -0
  261. package/lib/module/extension/IAgoraRtcEngineExtension.js.map +1 -0
  262. package/lib/module/extension/IAgoraSpatialAudioExtension.js +2 -0
  263. package/lib/module/extension/IAgoraSpatialAudioExtension.js.map +1 -0
  264. package/lib/module/extension/IAudioDeviceManagerExtension.js +2 -0
  265. package/lib/module/extension/IAudioDeviceManagerExtension.js.map +1 -0
  266. package/lib/module/impl/AgoraBaseImpl.js +20 -0
  267. package/lib/module/impl/AgoraBaseImpl.js.map +1 -0
  268. package/lib/module/impl/AgoraMediaBaseImpl.js +139 -0
  269. package/lib/module/impl/AgoraMediaBaseImpl.js.map +1 -0
  270. package/lib/module/impl/IAgoraH265TranscoderImpl.js +113 -0
  271. package/lib/module/impl/IAgoraH265TranscoderImpl.js.map +1 -0
  272. package/lib/module/impl/IAgoraMediaEngineImpl.js +335 -0
  273. package/lib/module/impl/IAgoraMediaEngineImpl.js.map +1 -0
  274. package/lib/module/impl/IAgoraMediaPlayerImpl.js +957 -0
  275. package/lib/module/impl/IAgoraMediaPlayerImpl.js.map +1 -0
  276. package/lib/module/impl/IAgoraMediaPlayerSourceImpl.js +70 -0
  277. package/lib/module/impl/IAgoraMediaPlayerSourceImpl.js.map +1 -0
  278. package/lib/module/impl/IAgoraMediaRecorderImpl.js +45 -0
  279. package/lib/module/impl/IAgoraMediaRecorderImpl.js.map +1 -0
  280. package/lib/module/impl/IAgoraMusicContentCenterImpl.js +419 -0
  281. package/lib/module/impl/IAgoraMusicContentCenterImpl.js.map +1 -0
  282. package/lib/module/impl/IAgoraRtcEngineExImpl.js +1176 -0
  283. package/lib/module/impl/IAgoraRtcEngineExImpl.js.map +1 -0
  284. package/lib/module/impl/IAgoraRtcEngineImpl.js +5423 -0
  285. package/lib/module/impl/IAgoraRtcEngineImpl.js.map +1 -0
  286. package/lib/module/impl/IAgoraSpatialAudioImpl.js +356 -0
  287. package/lib/module/impl/IAgoraSpatialAudioImpl.js.map +1 -0
  288. package/lib/module/impl/IAudioDeviceManagerImpl.js +373 -0
  289. package/lib/module/impl/IAudioDeviceManagerImpl.js.map +1 -0
  290. package/lib/module/index.js +43 -0
  291. package/lib/module/index.js.map +1 -0
  292. package/lib/module/internal/AgoraH265TranscoderInternal.js +58 -0
  293. package/lib/module/internal/AgoraH265TranscoderInternal.js.map +1 -0
  294. package/lib/module/internal/AgoraMediaBaseInternal.js +13 -0
  295. package/lib/module/internal/AgoraMediaBaseInternal.js.map +1 -0
  296. package/lib/module/internal/AgoraPipInternal.js +92 -0
  297. package/lib/module/internal/AgoraPipInternal.js.map +1 -0
  298. package/lib/module/internal/IAgoraRtcRenderView.js +62 -0
  299. package/lib/module/internal/IAgoraRtcRenderView.js.map +1 -0
  300. package/lib/module/internal/IrisApiEngine.js +251 -0
  301. package/lib/module/internal/IrisApiEngine.js.map +1 -0
  302. package/lib/module/internal/LocalSpatialAudioEngineInternal.js +3 -0
  303. package/lib/module/internal/LocalSpatialAudioEngineInternal.js.map +1 -0
  304. package/lib/module/internal/MediaEngineInternal.js +116 -0
  305. package/lib/module/internal/MediaEngineInternal.js.map +1 -0
  306. package/lib/module/internal/MediaPlayerInternal.js +162 -0
  307. package/lib/module/internal/MediaPlayerInternal.js.map +1 -0
  308. package/lib/module/internal/MediaRecorderInternal.js +67 -0
  309. package/lib/module/internal/MediaRecorderInternal.js.map +1 -0
  310. package/lib/module/internal/MusicContentCenterInternal.js +134 -0
  311. package/lib/module/internal/MusicContentCenterInternal.js.map +1 -0
  312. package/lib/module/internal/RtcEngineExInternal.js +250 -0
  313. package/lib/module/internal/RtcEngineExInternal.js.map +1 -0
  314. package/lib/module/internal/call.js +126 -0
  315. package/lib/module/internal/call.js.map +1 -0
  316. package/lib/module/internal/event.js +25 -0
  317. package/lib/module/internal/event.js.map +1 -0
  318. package/lib/module/specs/AgoraRtcSurfaceViewNativeComponent.js +3 -0
  319. package/lib/module/specs/AgoraRtcSurfaceViewNativeComponent.js.map +1 -0
  320. package/lib/module/specs/AgoraRtcTextureViewNativeComponent.js +3 -0
  321. package/lib/module/specs/AgoraRtcTextureViewNativeComponent.js.map +1 -0
  322. package/lib/module/specs/NativeAgoraRtcNg.js +3 -0
  323. package/lib/module/specs/NativeAgoraRtcNg.js.map +1 -0
  324. package/lib/module/specs/index.js +16 -0
  325. package/lib/module/specs/index.js.map +1 -0
  326. package/lib/module/ti/AgoraBase-ti.js +16 -0
  327. package/lib/module/ti/AgoraBase-ti.js.map +1 -0
  328. package/lib/module/ti/AgoraMediaBase-ti.js +51 -0
  329. package/lib/module/ti/AgoraMediaBase-ti.js.map +1 -0
  330. package/lib/module/ti/AgoraMediaPlayerTypes-ti.js +9 -0
  331. package/lib/module/ti/AgoraMediaPlayerTypes-ti.js.map +1 -0
  332. package/lib/module/ti/AgoraPip-ti.js +14 -0
  333. package/lib/module/ti/AgoraPip-ti.js.map +1 -0
  334. package/lib/module/ti/IAgoraH265Transcoder-ti.js +16 -0
  335. package/lib/module/ti/IAgoraH265Transcoder-ti.js.map +1 -0
  336. package/lib/module/ti/IAgoraLog-ti.js +9 -0
  337. package/lib/module/ti/IAgoraLog-ti.js.map +1 -0
  338. package/lib/module/ti/IAgoraMediaEngine-ti.js +9 -0
  339. package/lib/module/ti/IAgoraMediaEngine-ti.js.map +1 -0
  340. package/lib/module/ti/IAgoraMediaPlayer-ti.js +14 -0
  341. package/lib/module/ti/IAgoraMediaPlayer-ti.js.map +1 -0
  342. package/lib/module/ti/IAgoraMediaPlayerSource-ti.js +26 -0
  343. package/lib/module/ti/IAgoraMediaPlayerSource-ti.js.map +1 -0
  344. package/lib/module/ti/IAgoraMediaRecorder-ti.js +9 -0
  345. package/lib/module/ti/IAgoraMediaRecorder-ti.js.map +1 -0
  346. package/lib/module/ti/IAgoraMediaStreamingSource-ti.js +9 -0
  347. package/lib/module/ti/IAgoraMediaStreamingSource-ti.js.map +1 -0
  348. package/lib/module/ti/IAgoraMusicContentCenter-ti.js +18 -0
  349. package/lib/module/ti/IAgoraMusicContentCenter-ti.js.map +1 -0
  350. package/lib/module/ti/IAgoraPip-ti.js +14 -0
  351. package/lib/module/ti/IAgoraPip-ti.js.map +1 -0
  352. package/lib/module/ti/IAgoraRhythmPlayer-ti.js +9 -0
  353. package/lib/module/ti/IAgoraRhythmPlayer-ti.js.map +1 -0
  354. package/lib/module/ti/IAgoraRtcEngine-ti.js +120 -0
  355. package/lib/module/ti/IAgoraRtcEngine-ti.js.map +1 -0
  356. package/lib/module/ti/IAgoraRtcEngineEx-ti.js +9 -0
  357. package/lib/module/ti/IAgoraRtcEngineEx-ti.js.map +1 -0
  358. package/lib/module/ti/IAgoraSpatialAudio-ti.js +9 -0
  359. package/lib/module/ti/IAgoraSpatialAudio-ti.js.map +1 -0
  360. package/lib/module/ti/IAudioDeviceManager-ti.js +9 -0
  361. package/lib/module/ti/IAudioDeviceManager-ti.js.map +1 -0
  362. package/lib/module/ti/Utils-ti.js +9 -0
  363. package/lib/module/ti/Utils-ti.js.map +1 -0
  364. package/lib/module/ti/index-ti.js +9 -0
  365. package/lib/module/ti/index-ti.js.map +1 -0
  366. package/lib/typescript/src/AgoraBase.d.ts +5728 -0
  367. package/lib/typescript/src/AgoraBase.d.ts.map +1 -0
  368. package/lib/typescript/src/AgoraMediaBase.d.ts +1717 -0
  369. package/lib/typescript/src/AgoraMediaBase.d.ts.map +1 -0
  370. package/lib/typescript/src/AgoraMediaPlayerTypes.d.ts +456 -0
  371. package/lib/typescript/src/AgoraMediaPlayerTypes.d.ts.map +1 -0
  372. package/lib/typescript/src/AgoraRtcRenderView.d.ts +60 -0
  373. package/lib/typescript/src/AgoraRtcRenderView.d.ts.map +1 -0
  374. package/lib/typescript/src/IAgoraH265Transcoder.d.ts +28 -0
  375. package/lib/typescript/src/IAgoraH265Transcoder.d.ts.map +1 -0
  376. package/lib/typescript/src/IAgoraLog.d.ts +89 -0
  377. package/lib/typescript/src/IAgoraLog.d.ts.map +1 -0
  378. package/lib/typescript/src/IAgoraMediaEngine.d.ts +255 -0
  379. package/lib/typescript/src/IAgoraMediaEngine.d.ts.map +1 -0
  380. package/lib/typescript/src/IAgoraMediaPlayer.d.ts +656 -0
  381. package/lib/typescript/src/IAgoraMediaPlayer.d.ts.map +1 -0
  382. package/lib/typescript/src/IAgoraMediaPlayerSource.d.ts +109 -0
  383. package/lib/typescript/src/IAgoraMediaPlayerSource.d.ts.map +1 -0
  384. package/lib/typescript/src/IAgoraMediaRecorder.d.ts +60 -0
  385. package/lib/typescript/src/IAgoraMediaRecorder.d.ts.map +1 -0
  386. package/lib/typescript/src/IAgoraMediaStreamingSource.d.ts +42 -0
  387. package/lib/typescript/src/IAgoraMediaStreamingSource.d.ts.map +1 -0
  388. package/lib/typescript/src/IAgoraMusicContentCenter.d.ts +604 -0
  389. package/lib/typescript/src/IAgoraMusicContentCenter.d.ts.map +1 -0
  390. package/lib/typescript/src/IAgoraPip.d.ts +257 -0
  391. package/lib/typescript/src/IAgoraPip.d.ts.map +1 -0
  392. package/lib/typescript/src/IAgoraRhythmPlayer.d.ts +65 -0
  393. package/lib/typescript/src/IAgoraRhythmPlayer.d.ts.map +1 -0
  394. package/lib/typescript/src/IAgoraRtcEngine.d.ts +6831 -0
  395. package/lib/typescript/src/IAgoraRtcEngine.d.ts.map +1 -0
  396. package/lib/typescript/src/IAgoraRtcEngineEx.d.ts +817 -0
  397. package/lib/typescript/src/IAgoraRtcEngineEx.d.ts.map +1 -0
  398. package/lib/typescript/src/IAgoraSpatialAudio.d.ts +194 -0
  399. package/lib/typescript/src/IAgoraSpatialAudio.d.ts.map +1 -0
  400. package/lib/typescript/src/IAudioDeviceManager.d.ts +155 -0
  401. package/lib/typescript/src/IAudioDeviceManager.d.ts.map +1 -0
  402. package/lib/typescript/src/Utils.d.ts +19 -0
  403. package/lib/typescript/src/Utils.d.ts.map +1 -0
  404. package/lib/typescript/src/extension/AgoraBaseExtension.d.ts +2 -0
  405. package/lib/typescript/src/extension/AgoraBaseExtension.d.ts.map +1 -0
  406. package/lib/typescript/src/extension/AgoraMediaBaseExtension.d.ts +2 -0
  407. package/lib/typescript/src/extension/AgoraMediaBaseExtension.d.ts.map +1 -0
  408. package/lib/typescript/src/extension/AgoraMediaPlayerTypesExtension.d.ts +2 -0
  409. package/lib/typescript/src/extension/AgoraMediaPlayerTypesExtension.d.ts.map +1 -0
  410. package/lib/typescript/src/extension/IAgoraH265TranscoderExtension.d.ts +24 -0
  411. package/lib/typescript/src/extension/IAgoraH265TranscoderExtension.d.ts.map +1 -0
  412. package/lib/typescript/src/extension/IAgoraLogExtension.d.ts +2 -0
  413. package/lib/typescript/src/extension/IAgoraLogExtension.d.ts.map +1 -0
  414. package/lib/typescript/src/extension/IAgoraMediaEngineExtension.d.ts +40 -0
  415. package/lib/typescript/src/extension/IAgoraMediaEngineExtension.d.ts.map +1 -0
  416. package/lib/typescript/src/extension/IAgoraMediaPlayerExtension.d.ts +46 -0
  417. package/lib/typescript/src/extension/IAgoraMediaPlayerExtension.d.ts.map +1 -0
  418. package/lib/typescript/src/extension/IAgoraMediaPlayerSourceExtension.d.ts +2 -0
  419. package/lib/typescript/src/extension/IAgoraMediaPlayerSourceExtension.d.ts.map +1 -0
  420. package/lib/typescript/src/extension/IAgoraMediaRecorderExtension.d.ts +44 -0
  421. package/lib/typescript/src/extension/IAgoraMediaRecorderExtension.d.ts.map +1 -0
  422. package/lib/typescript/src/extension/IAgoraMusicContentCenterExtension.d.ts +20 -0
  423. package/lib/typescript/src/extension/IAgoraMusicContentCenterExtension.d.ts.map +1 -0
  424. package/lib/typescript/src/extension/IAgoraPipExtension.d.ts +23 -0
  425. package/lib/typescript/src/extension/IAgoraPipExtension.d.ts.map +1 -0
  426. package/lib/typescript/src/extension/IAgoraRhythmPlayerExtension.d.ts +2 -0
  427. package/lib/typescript/src/extension/IAgoraRhythmPlayerExtension.d.ts.map +1 -0
  428. package/lib/typescript/src/extension/IAgoraRtcEngineExExtension.d.ts +2 -0
  429. package/lib/typescript/src/extension/IAgoraRtcEngineExExtension.d.ts.map +1 -0
  430. package/lib/typescript/src/extension/IAgoraRtcEngineExtension.d.ts +49 -0
  431. package/lib/typescript/src/extension/IAgoraRtcEngineExtension.d.ts.map +1 -0
  432. package/lib/typescript/src/extension/IAgoraSpatialAudioExtension.d.ts +2 -0
  433. package/lib/typescript/src/extension/IAgoraSpatialAudioExtension.d.ts.map +1 -0
  434. package/lib/typescript/src/extension/IAudioDeviceManagerExtension.d.ts +2 -0
  435. package/lib/typescript/src/extension/IAudioDeviceManagerExtension.d.ts.map +1 -0
  436. package/lib/typescript/src/impl/AgoraBaseImpl.d.ts +3 -0
  437. package/lib/typescript/src/impl/AgoraBaseImpl.d.ts.map +1 -0
  438. package/lib/typescript/src/impl/AgoraMediaBaseImpl.d.ts +14 -0
  439. package/lib/typescript/src/impl/AgoraMediaBaseImpl.d.ts.map +1 -0
  440. package/lib/typescript/src/impl/IAgoraH265TranscoderImpl.d.ts +15 -0
  441. package/lib/typescript/src/impl/IAgoraH265TranscoderImpl.d.ts.map +1 -0
  442. package/lib/typescript/src/impl/IAgoraMediaEngineImpl.d.ts +46 -0
  443. package/lib/typescript/src/impl/IAgoraMediaEngineImpl.d.ts.map +1 -0
  444. package/lib/typescript/src/impl/IAgoraMediaPlayerImpl.d.ts +145 -0
  445. package/lib/typescript/src/impl/IAgoraMediaPlayerImpl.d.ts.map +1 -0
  446. package/lib/typescript/src/impl/IAgoraMediaPlayerSourceImpl.d.ts +3 -0
  447. package/lib/typescript/src/impl/IAgoraMediaPlayerSourceImpl.d.ts.map +1 -0
  448. package/lib/typescript/src/impl/IAgoraMediaRecorderImpl.d.ts +11 -0
  449. package/lib/typescript/src/impl/IAgoraMediaRecorderImpl.d.ts.map +1 -0
  450. package/lib/typescript/src/impl/IAgoraMusicContentCenterImpl.d.ts +67 -0
  451. package/lib/typescript/src/impl/IAgoraMusicContentCenterImpl.d.ts.map +1 -0
  452. package/lib/typescript/src/impl/IAgoraRtcEngineExImpl.d.ts +128 -0
  453. package/lib/typescript/src/impl/IAgoraRtcEngineExImpl.d.ts.map +1 -0
  454. package/lib/typescript/src/impl/IAgoraRtcEngineImpl.d.ts +656 -0
  455. package/lib/typescript/src/impl/IAgoraRtcEngineImpl.d.ts.map +1 -0
  456. package/lib/typescript/src/impl/IAgoraSpatialAudioImpl.d.ts +47 -0
  457. package/lib/typescript/src/impl/IAgoraSpatialAudioImpl.d.ts.map +1 -0
  458. package/lib/typescript/src/impl/IAudioDeviceManagerImpl.d.ts +65 -0
  459. package/lib/typescript/src/impl/IAudioDeviceManagerImpl.d.ts.map +1 -0
  460. package/lib/typescript/src/index.d.ts +31 -0
  461. package/lib/typescript/src/index.d.ts.map +1 -0
  462. package/lib/typescript/src/internal/AgoraH265TranscoderInternal.d.ts +14 -0
  463. package/lib/typescript/src/internal/AgoraH265TranscoderInternal.d.ts.map +1 -0
  464. package/lib/typescript/src/internal/AgoraMediaBaseInternal.d.ts +8 -0
  465. package/lib/typescript/src/internal/AgoraMediaBaseInternal.d.ts.map +1 -0
  466. package/lib/typescript/src/internal/AgoraPipInternal.d.ts +21 -0
  467. package/lib/typescript/src/internal/AgoraPipInternal.d.ts.map +1 -0
  468. package/lib/typescript/src/internal/IAgoraRtcRenderView.d.ts +13 -0
  469. package/lib/typescript/src/internal/IAgoraRtcRenderView.d.ts.map +1 -0
  470. package/lib/typescript/src/internal/IrisApiEngine.d.ts +12 -0
  471. package/lib/typescript/src/internal/IrisApiEngine.d.ts.map +1 -0
  472. package/lib/typescript/src/internal/LocalSpatialAudioEngineInternal.d.ts +4 -0
  473. package/lib/typescript/src/internal/LocalSpatialAudioEngineInternal.d.ts.map +1 -0
  474. package/lib/typescript/src/internal/MediaEngineInternal.d.ts +23 -0
  475. package/lib/typescript/src/internal/MediaEngineInternal.d.ts.map +1 -0
  476. package/lib/typescript/src/internal/MediaPlayerInternal.d.ts +28 -0
  477. package/lib/typescript/src/internal/MediaPlayerInternal.d.ts.map +1 -0
  478. package/lib/typescript/src/internal/MediaRecorderInternal.d.ts +16 -0
  479. package/lib/typescript/src/internal/MediaRecorderInternal.d.ts.map +1 -0
  480. package/lib/typescript/src/internal/MusicContentCenterInternal.d.ts +31 -0
  481. package/lib/typescript/src/internal/MusicContentCenterInternal.d.ts.map +1 -0
  482. package/lib/typescript/src/internal/RtcEngineExInternal.d.ts +62 -0
  483. package/lib/typescript/src/internal/RtcEngineExInternal.d.ts.map +1 -0
  484. package/lib/typescript/src/internal/call.d.ts +5 -0
  485. package/lib/typescript/src/internal/call.d.ts.map +1 -0
  486. package/lib/typescript/src/internal/event.d.ts +58 -0
  487. package/lib/typescript/src/internal/event.d.ts.map +1 -0
  488. package/lib/typescript/src/specs/AgoraRtcSurfaceViewNativeComponent.d.ts +13 -0
  489. package/lib/typescript/src/specs/AgoraRtcSurfaceViewNativeComponent.d.ts.map +1 -0
  490. package/lib/typescript/src/specs/AgoraRtcTextureViewNativeComponent.d.ts +11 -0
  491. package/lib/typescript/src/specs/AgoraRtcTextureViewNativeComponent.d.ts.map +1 -0
  492. package/lib/typescript/src/specs/NativeAgoraRtcNg.d.ts +23 -0
  493. package/lib/typescript/src/specs/NativeAgoraRtcNg.d.ts.map +1 -0
  494. package/lib/typescript/src/specs/index.d.ts +3 -0
  495. package/lib/typescript/src/specs/index.d.ts.map +1 -0
  496. package/lib/typescript/src/ti/AgoraBase-ti.d.ts +8 -0
  497. package/lib/typescript/src/ti/AgoraBase-ti.d.ts.map +1 -0
  498. package/lib/typescript/src/ti/AgoraMediaBase-ti.d.ts +15 -0
  499. package/lib/typescript/src/ti/AgoraMediaBase-ti.d.ts.map +1 -0
  500. package/lib/typescript/src/ti/AgoraMediaPlayerTypes-ti.d.ts +7 -0
  501. package/lib/typescript/src/ti/AgoraMediaPlayerTypes-ti.d.ts.map +1 -0
  502. package/lib/typescript/src/ti/AgoraPip-ti.d.ts +8 -0
  503. package/lib/typescript/src/ti/AgoraPip-ti.d.ts.map +1 -0
  504. package/lib/typescript/src/ti/IAgoraH265Transcoder-ti.d.ts +8 -0
  505. package/lib/typescript/src/ti/IAgoraH265Transcoder-ti.d.ts.map +1 -0
  506. package/lib/typescript/src/ti/IAgoraLog-ti.d.ts +7 -0
  507. package/lib/typescript/src/ti/IAgoraLog-ti.d.ts.map +1 -0
  508. package/lib/typescript/src/ti/IAgoraMediaEngine-ti.d.ts +7 -0
  509. package/lib/typescript/src/ti/IAgoraMediaEngine-ti.d.ts.map +1 -0
  510. package/lib/typescript/src/ti/IAgoraMediaPlayer-ti.d.ts +8 -0
  511. package/lib/typescript/src/ti/IAgoraMediaPlayer-ti.d.ts.map +1 -0
  512. package/lib/typescript/src/ti/IAgoraMediaPlayerSource-ti.d.ts +8 -0
  513. package/lib/typescript/src/ti/IAgoraMediaPlayerSource-ti.d.ts.map +1 -0
  514. package/lib/typescript/src/ti/IAgoraMediaRecorder-ti.d.ts +7 -0
  515. package/lib/typescript/src/ti/IAgoraMediaRecorder-ti.d.ts.map +1 -0
  516. package/lib/typescript/src/ti/IAgoraMediaStreamingSource-ti.d.ts +7 -0
  517. package/lib/typescript/src/ti/IAgoraMediaStreamingSource-ti.d.ts.map +1 -0
  518. package/lib/typescript/src/ti/IAgoraMusicContentCenter-ti.d.ts +8 -0
  519. package/lib/typescript/src/ti/IAgoraMusicContentCenter-ti.d.ts.map +1 -0
  520. package/lib/typescript/src/ti/IAgoraPip-ti.d.ts +8 -0
  521. package/lib/typescript/src/ti/IAgoraPip-ti.d.ts.map +1 -0
  522. package/lib/typescript/src/ti/IAgoraRhythmPlayer-ti.d.ts +7 -0
  523. package/lib/typescript/src/ti/IAgoraRhythmPlayer-ti.d.ts.map +1 -0
  524. package/lib/typescript/src/ti/IAgoraRtcEngine-ti.d.ts +10 -0
  525. package/lib/typescript/src/ti/IAgoraRtcEngine-ti.d.ts.map +1 -0
  526. package/lib/typescript/src/ti/IAgoraRtcEngineEx-ti.d.ts +7 -0
  527. package/lib/typescript/src/ti/IAgoraRtcEngineEx-ti.d.ts.map +1 -0
  528. package/lib/typescript/src/ti/IAgoraSpatialAudio-ti.d.ts +7 -0
  529. package/lib/typescript/src/ti/IAgoraSpatialAudio-ti.d.ts.map +1 -0
  530. package/lib/typescript/src/ti/IAudioDeviceManager-ti.d.ts +7 -0
  531. package/lib/typescript/src/ti/IAudioDeviceManager-ti.d.ts.map +1 -0
  532. package/lib/typescript/src/ti/Utils-ti.d.ts +7 -0
  533. package/lib/typescript/src/ti/Utils-ti.d.ts.map +1 -0
  534. package/lib/typescript/src/ti/index-ti.d.ts +7 -0
  535. package/lib/typescript/src/ti/index-ti.d.ts.map +1 -0
  536. package/package.json +175 -0
  537. package/react-native-agora.podspec +50 -0
  538. package/src/AgoraBase.ts +5941 -0
  539. package/src/AgoraMediaBase.ts +1814 -0
  540. package/src/AgoraMediaPlayerTypes.ts +467 -0
  541. package/src/AgoraRtcRenderView.tsx +72 -0
  542. package/src/IAgoraH265Transcoder.ts +73 -0
  543. package/src/IAgoraLog.ts +91 -0
  544. package/src/IAgoraMediaEngine.ts +321 -0
  545. package/src/IAgoraMediaPlayer.ts +753 -0
  546. package/src/IAgoraMediaPlayerSource.ts +137 -0
  547. package/src/IAgoraMediaRecorder.ts +65 -0
  548. package/src/IAgoraMediaStreamingSource.ts +81 -0
  549. package/src/IAgoraMusicContentCenter.ts +678 -0
  550. package/src/IAgoraPip.ts +295 -0
  551. package/src/IAgoraRhythmPlayer.ts +67 -0
  552. package/src/IAgoraRtcEngine.ts +8100 -0
  553. package/src/IAgoraRtcEngineEx.ts +1108 -0
  554. package/src/IAgoraSpatialAudio.ts +248 -0
  555. package/src/IAudioDeviceManager.ts +185 -0
  556. package/src/Utils.ts +35 -0
  557. package/src/extension/AgoraBaseExtension.ts +1 -0
  558. package/src/extension/AgoraMediaBaseExtension.ts +1 -0
  559. package/src/extension/AgoraMediaPlayerTypesExtension.ts +1 -0
  560. package/src/extension/IAgoraH265TranscoderExtension.ts +39 -0
  561. package/src/extension/IAgoraLogExtension.ts +1 -0
  562. package/src/extension/IAgoraMediaEngineExtension.ts +62 -0
  563. package/src/extension/IAgoraMediaPlayerExtension.ts +64 -0
  564. package/src/extension/IAgoraMediaPlayerSourceExtension.ts +1 -0
  565. package/src/extension/IAgoraMediaRecorderExtension.ts +59 -0
  566. package/src/extension/IAgoraMusicContentCenterExtension.ts +34 -0
  567. package/src/extension/IAgoraPipExtension.ts +37 -0
  568. package/src/extension/IAgoraRhythmPlayerExtension.ts +1 -0
  569. package/src/extension/IAgoraRtcEngineExExtension.ts +1 -0
  570. package/src/extension/IAgoraRtcEngineExtension.ts +72 -0
  571. package/src/extension/IAgoraSpatialAudioExtension.ts +1 -0
  572. package/src/extension/IAudioDeviceManagerExtension.ts +1 -0
  573. package/src/impl/AgoraBaseImpl.ts +39 -0
  574. package/src/impl/AgoraMediaBaseImpl.ts +238 -0
  575. package/src/impl/IAgoraH265TranscoderImpl.ts +152 -0
  576. package/src/impl/IAgoraMediaEngineImpl.ts +490 -0
  577. package/src/impl/IAgoraMediaPlayerImpl.ts +1180 -0
  578. package/src/impl/IAgoraMediaPlayerSourceImpl.ts +94 -0
  579. package/src/impl/IAgoraMediaRecorderImpl.ts +58 -0
  580. package/src/impl/IAgoraMusicContentCenterImpl.ts +561 -0
  581. package/src/impl/IAgoraRtcEngineExImpl.ts +1911 -0
  582. package/src/impl/IAgoraRtcEngineImpl.ts +7737 -0
  583. package/src/impl/IAgoraSpatialAudioImpl.ts +494 -0
  584. package/src/impl/IAudioDeviceManagerImpl.ts +442 -0
  585. package/src/index.ts +53 -0
  586. package/src/internal/AgoraH265TranscoderInternal.ts +93 -0
  587. package/src/internal/AgoraMediaBaseInternal.ts +15 -0
  588. package/src/internal/AgoraPipInternal.ts +136 -0
  589. package/src/internal/IAgoraRtcRenderView.tsx +79 -0
  590. package/src/internal/IrisApiEngine.ts +337 -0
  591. package/src/internal/LocalSpatialAudioEngineInternal.ts +3 -0
  592. package/src/internal/MediaEngineInternal.ts +187 -0
  593. package/src/internal/MediaPlayerInternal.ts +282 -0
  594. package/src/internal/MediaRecorderInternal.ts +96 -0
  595. package/src/internal/MusicContentCenterInternal.ts +204 -0
  596. package/src/internal/RtcEngineExInternal.ts +443 -0
  597. package/src/internal/call.ts +140 -0
  598. package/src/internal/event.ts +100 -0
  599. package/src/specs/AgoraRtcSurfaceViewNativeComponent.ts +16 -0
  600. package/src/specs/AgoraRtcTextureViewNativeComponent.ts +14 -0
  601. package/src/specs/NativeAgoraRtcNg.ts +40 -0
  602. package/src/specs/index.ts +26 -0
  603. package/src/ti/AgoraBase-ti.ts +16 -0
  604. package/src/ti/AgoraMediaBase-ti.ts +58 -0
  605. package/src/ti/AgoraMediaPlayerTypes-ti.ts +11 -0
  606. package/src/ti/AgoraPip-ti.ts +14 -0
  607. package/src/ti/IAgoraH265Transcoder-ti.ts +16 -0
  608. package/src/ti/IAgoraLog-ti.ts +11 -0
  609. package/src/ti/IAgoraMediaEngine-ti.ts +11 -0
  610. package/src/ti/IAgoraMediaPlayer-ti.ts +14 -0
  611. package/src/ti/IAgoraMediaPlayerSource-ti.ts +26 -0
  612. package/src/ti/IAgoraMediaRecorder-ti.ts +11 -0
  613. package/src/ti/IAgoraMediaStreamingSource-ti.ts +11 -0
  614. package/src/ti/IAgoraMusicContentCenter-ti.ts +18 -0
  615. package/src/ti/IAgoraPip-ti.ts +14 -0
  616. package/src/ti/IAgoraRhythmPlayer-ti.ts +11 -0
  617. package/src/ti/IAgoraRtcEngine-ti.ts +122 -0
  618. package/src/ti/IAgoraRtcEngineEx-ti.ts +11 -0
  619. package/src/ti/IAgoraSpatialAudio-ti.ts +11 -0
  620. package/src/ti/IAudioDeviceManager-ti.ts +11 -0
  621. package/src/ti/Utils-ti.ts +11 -0
  622. package/src/ti/index-ti.ts +11 -0
@@ -0,0 +1,656 @@
1
+ import './extension/IAgoraMediaPlayerExtension';
2
+ import { SpatialAudioParams } from './AgoraBase';
3
+ import { AudioDualMonoMode, IAudioPcmFrameSink, IAudioSpectrumObserver, RawAudioFrameOpModeType, RenderModeType, VideoFrame } from './AgoraMediaBase';
4
+ import { MediaPlayerState, MediaSource, PlayerStreamInfo } from './AgoraMediaPlayerTypes';
5
+ import { IMediaPlayerSourceObserver } from './IAgoraMediaPlayerSource';
6
+ /**
7
+ * 提供媒体播放器功能的类,支持多实例。
8
+ */
9
+ export declare abstract class IMediaPlayer {
10
+ /**
11
+ * 获取播放器 ID。
12
+ *
13
+ * @returns
14
+ * 方法调用成功,返回播放器 ID。
15
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
16
+ */
17
+ abstract getMediaPlayerId(): number;
18
+ /**
19
+ * 打开媒体资源。
20
+ *
21
+ * @param url 设置媒体文件的路径,支持本地和在线文件。
22
+ * @param startPos 设置起始播放位置(毫秒),默认值为 0。
23
+ *
24
+ * @returns
25
+ * 0: 方法调用成功。
26
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
27
+ */
28
+ abstract open(url: string, startPos: number): number;
29
+ /**
30
+ * 打开媒体资源并进行播放设置。
31
+ *
32
+ * 该方法支持你打开不同类型的媒体资源,包括自定义的媒体资源文件,并可进行播放设置。 该方法为异步调用。如需播放媒体文件,需要在收到 onPlayerSourceStateChanged 回调报告状态为 PlayerStateOpenCompleted 后再调用 play 方法播放媒体文件。
33
+ *
34
+ * @param source 媒体资源,详见 MediaSource 。
35
+ *
36
+ * @returns
37
+ * 0:方法调用成功。
38
+ * < 0:方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
39
+ */
40
+ abstract openWithMediaSource(source: MediaSource): number;
41
+ /**
42
+ * 播放媒体文件。
43
+ *
44
+ * @returns
45
+ * 0: 方法调用成功。
46
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
47
+ */
48
+ abstract play(): number;
49
+ /**
50
+ * 暂停播放。
51
+ *
52
+ * @returns
53
+ * 0: 方法调用成功。
54
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
55
+ */
56
+ abstract pause(): number;
57
+ /**
58
+ * 停止播放。
59
+ *
60
+ * 调用该方法停止播放后,如需重新播放,需要调用 open 或 openWithMediaSource 再次打开媒体资源。
61
+ *
62
+ * @returns
63
+ * 0: 方法调用成功。
64
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
65
+ */
66
+ abstract stop(): number;
67
+ /**
68
+ * 暂停后恢复播放。
69
+ *
70
+ * @returns
71
+ * 0: 方法调用成功。
72
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
73
+ */
74
+ abstract resume(): number;
75
+ /**
76
+ * 定位到媒体文件的指定播放位置。
77
+ *
78
+ * 如果你在播放已经完成后(收到 onPlayerSourceStateChanged 回调报告播放状态为 PlayerStatePlaybackCompleted 或 PlayerStatePlaybackAllLoopsCompleted)再调用 seek ,方法调用成功后,SDK 会从你指定的位置开始自动播放,此时你会收到 onPlayerSourceStateChanged 回调报告播放状态为 PlayerStatePlaying。
79
+ * 如果你在播放暂停的情况下调用 seek ,调用成功后 SDK 会定位到你指定位置,如需播放,请调用 resume 或 play 。
80
+ *
81
+ * @param newPos 指定的位置(毫秒)。
82
+ *
83
+ * @returns
84
+ * 0: 方法调用成功。
85
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
86
+ */
87
+ abstract seek(newPos: number): number;
88
+ /**
89
+ * 调整当前播放的媒体资源的音调。
90
+ *
91
+ * 你需要在调用 open 后调用该方法。
92
+ *
93
+ * @param pitch 按半音音阶调整本地播放的音乐文件的音调,默认值为 0,即不调整音调。取值范围为 [-12,12],每相邻两个值的音高距离相差半音。取值的绝对值越大,音调升高或降低得越多。
94
+ *
95
+ * @returns
96
+ * 0: 方法调用成功。
97
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
98
+ */
99
+ abstract setAudioPitch(pitch: number): number;
100
+ /**
101
+ * 获取媒体文件总时长。
102
+ *
103
+ * @returns
104
+ * 媒体文件总时长(毫秒)。
105
+ */
106
+ abstract getDuration(): number;
107
+ /**
108
+ * 获取当前播放进度。
109
+ *
110
+ * @returns
111
+ * 方法调用成功,返回当前播放进度(毫秒)。
112
+ * < 0: 方法调用失败,详见 MediaPlayerReason 。
113
+ */
114
+ abstract getPlayPosition(): number;
115
+ /**
116
+ * 获取当前媒体文件中媒体流的数量。
117
+ *
118
+ * 请在 open 后并收到 onPlayerSourceStateChanged 回调报告播放状态为 PlayerStateOpenCompleted 后再调用该方法。
119
+ *
120
+ * @returns
121
+ * 方法调用成功,返回该媒体文件中媒体流的数量。
122
+ * < 0: 方法调用失败,详见 MediaPlayerReason 。
123
+ */
124
+ abstract getStreamCount(): number;
125
+ /**
126
+ * 通过媒体流的索引值获取媒体流信息。
127
+ *
128
+ * @param index 媒体流索引值。该参数的值需小于 getStreamCount 的返回值。
129
+ *
130
+ * @returns
131
+ * 方法调用成功,返回媒体流信息,详见 PlayerStreamInfo 。
132
+ * 方法调用失败,返回 null 。
133
+ */
134
+ abstract getStreamInfo(index: number): PlayerStreamInfo;
135
+ /**
136
+ * 设置循环播放。
137
+ *
138
+ * 如果你希望循环播放,请调用该方法并设置循环播放次数。
139
+ * 循环播放结束时,SDK 会触发 onPlayerSourceStateChanged 回调,向你报告播放状态为 PlayerStatePlaybackAllLoopsCompleted。
140
+ *
141
+ * @param loopCount 循环播放的次数。
142
+ * ≥0:循环次数。例如,设为 0 表示不循环播放,一共播放一次;设为 1 表示循环播放一次,一共播放 2 次。
143
+ * -1:无限循环播放。
144
+ *
145
+ * @returns
146
+ * 0: 方法调用成功。
147
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
148
+ */
149
+ abstract setLoopCount(loopCount: number): number;
150
+ /**
151
+ * 设置当前音频文件的播放速度。
152
+ *
153
+ * 你需要在 open 后调用该方法。
154
+ *
155
+ * @param speed 播放速度。推荐取值范围为 [30,400],其中:
156
+ * 30: 0.3 倍速。
157
+ * 100: 原始速度。
158
+ * 400: 4 倍速。
159
+ *
160
+ * @returns
161
+ * 0: 方法调用成功。
162
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
163
+ */
164
+ abstract setPlaybackSpeed(speed: number): number;
165
+ /**
166
+ * 指定当前音频文件的播放音轨。
167
+ *
168
+ * 获取音频文件的音轨索引后,你可以调用该方法指定任一音轨进行播放。如果一个多音轨文件的不同音轨存放了不同语言的歌曲,你可以调用该方法设置播放语言。 你需要在调用 getStreamInfo 获取音频流索引值后调用该方法。
169
+ *
170
+ * @param index 音轨的索引值。
171
+ *
172
+ * @returns
173
+ * 0: 方法调用成功。
174
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
175
+ */
176
+ abstract selectAudioTrack(index: number): number;
177
+ /**
178
+ * 选择本地播放和发送至远端的音轨。
179
+ *
180
+ * 你可以调用该方法分别设置本地播放和发送到远端的音轨。
181
+ * 在调用该方法前,你需要通过 openWithMediaSource 来打开媒体文件,并通过 MediaSource 将 enableMultiAudioTrack 设为 true 。
182
+ *
183
+ * @param playoutTrackIndex 用于本地播放的音轨索引。你可以通过 getStreamInfo 来获取索引值。
184
+ * @param publishTrackIndex 用于发送至远端的音轨索引。你可以通过 getStreamInfo 来获取索引值。
185
+ *
186
+ * @returns
187
+ * 0: 方法调用成功。
188
+ * < 0: 方法调用失败。
189
+ */
190
+ abstract selectMultiAudioTrack(playoutTrackIndex: number, publishTrackIndex: number): number;
191
+ /**
192
+ * @ignore
193
+ */
194
+ abstract takeScreenshot(filename: string): number;
195
+ /**
196
+ * @ignore
197
+ */
198
+ abstract selectInternalSubtitle(index: number): number;
199
+ /**
200
+ * @ignore
201
+ */
202
+ abstract setExternalSubtitle(url: string): number;
203
+ /**
204
+ * 获取播放器当前状态。
205
+ *
206
+ * @returns
207
+ * 播放器当前状态,详见 MediaPlayerState 。
208
+ */
209
+ abstract getState(): MediaPlayerState;
210
+ /**
211
+ * 设置是否静音。
212
+ *
213
+ * @param muted 静音选项。 true :静音。 false :(默认)不静音。
214
+ *
215
+ * @returns
216
+ * 0: 方法调用成功。
217
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
218
+ */
219
+ abstract mute(muted: boolean): number;
220
+ /**
221
+ * 获取当前播放的媒体文件是否静音。
222
+ *
223
+ * @returns
224
+ * true :当前播放的媒体文件为静音。 false :当前播放的媒体文件没有静音。
225
+ */
226
+ abstract getMute(): boolean;
227
+ /**
228
+ * 调节本地播放音量。
229
+ *
230
+ * @param volume 本地播放音量,取值范围从 0 到 100:
231
+ * 0: 无声。
232
+ * 100: (默认)媒体文件的原始播放音量。
233
+ *
234
+ * @returns
235
+ * 0: 方法调用成功。
236
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
237
+ */
238
+ abstract adjustPlayoutVolume(volume: number): number;
239
+ /**
240
+ * 获取当前本地播放音量。
241
+ *
242
+ * @returns
243
+ * 返回当前本地播放音量,取值范围从 0 到 100:
244
+ * 0: 无声。
245
+ * 100: (默认)媒体文件的原始播放音量。
246
+ */
247
+ abstract getPlayoutVolume(): number;
248
+ /**
249
+ * 调节远端用户听到的音量。
250
+ *
251
+ * 连接到声网服务器后,你可以调用该方法,调节远端用户听到的媒体文件的音量。
252
+ *
253
+ * @param volume 信号音量,取值范围从 0 到 400:
254
+ * 0: 无声。
255
+ * 100: (默认)媒体文件的原始音量。
256
+ * 400: 原始音量的四倍(自带溢出保护)。
257
+ *
258
+ * @returns
259
+ * 0: 方法调用成功。
260
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
261
+ */
262
+ abstract adjustPublishSignalVolume(volume: number): number;
263
+ /**
264
+ * 获取远端用户听到的音量。
265
+ *
266
+ * @returns
267
+ * ≥ 0: 播放文件的远端播放音量。
268
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
269
+ */
270
+ abstract getPublishSignalVolume(): number;
271
+ /**
272
+ * 设置播放器渲染视图。
273
+ *
274
+ * @param view 渲染视图。
275
+ *
276
+ * @returns
277
+ * 0: 方法调用成功。
278
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
279
+ */
280
+ abstract setView(view: any): number;
281
+ /**
282
+ * 设置播放器视图的渲染模式。
283
+ *
284
+ * @param renderMode 播放器视图的渲染模式。详见 RenderModeType 。
285
+ *
286
+ * @returns
287
+ * 0: 方法调用成功。
288
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
289
+ */
290
+ abstract setRenderMode(renderMode: RenderModeType): number;
291
+ /**
292
+ * 注册一个播放观测器。
293
+ *
294
+ * @param observer 播放观测器,报告播放中的事件,详见 IMediaPlayerSourceObserver 。
295
+ *
296
+ * @returns
297
+ * 0: 方法调用成功。
298
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
299
+ */
300
+ abstract registerPlayerSourceObserver(observer: IMediaPlayerSourceObserver): number;
301
+ /**
302
+ * 取消注册播放观测器。
303
+ *
304
+ * @param observer 播放观测器,报告播放中的事件,详见 IMediaPlayerSourceObserver 。
305
+ *
306
+ * @returns
307
+ * 0: 方法调用成功。
308
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
309
+ */
310
+ abstract unregisterPlayerSourceObserver(observer: IMediaPlayerSourceObserver): number;
311
+ /**
312
+ * 注册音频帧观测器。
313
+ *
314
+ * @param observer 音频帧观测器,观测每帧音频的接收,详见 IAudioPcmFrameSink 。
315
+ * @param mode 音频帧的使用模式,详见 RawAudioFrameOpModeType 。
316
+ *
317
+ * @returns
318
+ * 0: 方法调用成功。
319
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
320
+ */
321
+ abstract registerAudioFrameObserver(observer: IAudioPcmFrameSink, mode?: RawAudioFrameOpModeType): number;
322
+ /**
323
+ * 取消注册音频帧观测器。
324
+ *
325
+ * @param observer 音频帧观测器,详见 IAudioPcmFrameSink 。
326
+ *
327
+ * @returns
328
+ * 0: 方法调用成功。
329
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
330
+ */
331
+ abstract unregisterAudioFrameObserver(observer: IAudioPcmFrameSink): number;
332
+ /**
333
+ * 注册视频帧观测器。
334
+ *
335
+ * 你需要在该方法中实现一个 IMediaPlayerVideoFrameObserver 类,并根据场景需要,注册该类的回调。成功注册视频帧观测器后,SDK 会在捕捉到每个视频帧时,触发你所注册的回调。
336
+ *
337
+ * @param observer 视频帧观测器,观测每帧视频的接收。详见 IMediaPlayerVideoFrameObserver 。
338
+ *
339
+ * @returns
340
+ * 0: 方法调用成功。
341
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
342
+ */
343
+ abstract registerVideoFrameObserver(observer: IMediaPlayerVideoFrameObserver): number;
344
+ /**
345
+ * 取消注册视频帧观测器。
346
+ *
347
+ * @param observer 视频帧观测器,观测每帧视频的接收,详见 IMediaPlayerVideoFrameObserver 。
348
+ *
349
+ * @returns
350
+ * 0: 方法调用成功。
351
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
352
+ */
353
+ abstract unregisterVideoFrameObserver(observer: IMediaPlayerVideoFrameObserver): number;
354
+ /**
355
+ * @ignore
356
+ */
357
+ abstract registerMediaPlayerAudioSpectrumObserver(observer: IAudioSpectrumObserver, intervalInMS: number): number;
358
+ /**
359
+ * @ignore
360
+ */
361
+ abstract unregisterMediaPlayerAudioSpectrumObserver(observer: IAudioSpectrumObserver): number;
362
+ /**
363
+ * 设置当前音频文件的声道模式。
364
+ *
365
+ * 在双声道音频文件中,左声道和右声道可以存储不同的音频数据。根据实际需要,你可以设置声道模式为原始模式、左声道模式、右声道模式或混合模式。例如,在 KTV 场景中,音频文件的左声道存储了伴奏,右声道存储了原唱的歌声。如果你只需听伴奏,调用该方法设置音频文件的声道模式为左声道模式;如果你需要同时听伴奏和原唱,调用该方法设置声道模式为混合模式。
366
+ * 你需要在调用 open 后调用该方法。
367
+ * 该方法仅适用于双声道的音频文件。
368
+ *
369
+ * @param mode 声道模式。详见 AudioDualMonoMode 。
370
+ *
371
+ * @returns
372
+ * 0: 方法调用成功。
373
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
374
+ */
375
+ abstract setAudioDualMonoMode(mode: AudioDualMonoMode): number;
376
+ /**
377
+ * @ignore
378
+ */
379
+ abstract getPlayerSdkVersion(): string;
380
+ /**
381
+ * 获取播放的媒体资源的路径。
382
+ *
383
+ * @returns
384
+ * 播放的媒体资源的路径。
385
+ */
386
+ abstract getPlaySrc(): string;
387
+ /**
388
+ * @ignore
389
+ */
390
+ abstract openWithAgoraCDNSrc(src: string, startPos: number): number;
391
+ /**
392
+ * @ignore
393
+ */
394
+ abstract getAgoraCDNLineCount(): number;
395
+ /**
396
+ * @ignore
397
+ */
398
+ abstract switchAgoraCDNLineByIndex(index: number): number;
399
+ /**
400
+ * @ignore
401
+ */
402
+ abstract getCurrentAgoraCDNIndex(): number;
403
+ /**
404
+ * @ignore
405
+ */
406
+ abstract enableAutoSwitchAgoraCDN(enable: boolean): number;
407
+ /**
408
+ * @ignore
409
+ */
410
+ abstract renewAgoraCDNSrcToken(token: string, ts: number): number;
411
+ /**
412
+ * @ignore
413
+ */
414
+ abstract switchAgoraCDNSrc(src: string, syncPts?: boolean): number;
415
+ /**
416
+ * 切换媒体资源。
417
+ *
418
+ * 你可以根据当前网络状态调用该方法切换播放的媒体资源的码率。例如:
419
+ * 在网络较差时,将播放的媒体资源切换为较低码率的媒体资源地址。
420
+ * 在网络较好时,将播放的媒体资源切换为较高码率的媒体资源地址。 调用该方法后,如果你收到 onPlayerEvent 回调报告事件 PlayerEventSwitchComplete ,则媒体资源切换成功。如果资源切换失败,SDK 会自动重试 3 次。如果仍然失败,你会收到 onPlayerEvent 回调,报告 PlayerEventSwitchError 事件,表示媒体资源切换时发生错误。
421
+ * 请确保在 open 之后调用该方法。
422
+ * 为保证播放正常,请在调用该方法时注意如下:
423
+ * 不要在播放暂停时调用该方法。
424
+ * 不要在切换码率过程中调用 seek 。
425
+ * 确保切换码率前的播放位置不大于待切换的媒体资源总时长。
426
+ *
427
+ * @param src 媒体资源的网络路径。
428
+ * @param syncPts 是否同步切换前后的起始播放位置: true :同步。 false :(默认) 不同步。
429
+ */
430
+ abstract switchSrc(src: string, syncPts?: boolean): number;
431
+ /**
432
+ * 预加载媒体资源。
433
+ *
434
+ * 你可以调用该方法将一个媒体资源预加载到播放列表中。如果需要预加载多个媒体资源,你可以多次调用该方法。
435
+ * 调用该方法后,如果收到 onPreloadEvent 回调报告事件 PlayerPreloadEventComplete ,则预加载成功;如果你收到 onPreloadEvent 回调报告事件 PlayerPreloadEventError ,则预加载失败。
436
+ * 预加载成功后,如果你想播放媒体资源,请调用 playPreloadedSrc ;如果你想清空播放列表,请调用 stop 。
437
+ * 调用该方法前,请确保你已经调用 open 或 openWithMediaSource 成功打开媒体资源。
438
+ * SDK 不支持你预加载重复的媒体资源到播放列表,但支持你将正在播放的媒体资源再次预加载到播放列表。
439
+ *
440
+ * @param src 媒体资源的网络路径。
441
+ * @param startPos 预加载到播放列表后,开始播放时的起始位置(毫秒)。预加载直播流时,将该参数设置为 0。
442
+ *
443
+ * @returns
444
+ * 0: 方法调用成功。
445
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
446
+ */
447
+ abstract preloadSrc(src: string, startPos: number): number;
448
+ /**
449
+ * 播放预加载的媒体资源。
450
+ *
451
+ * 调用 preloadSrc 方法将媒体资源预加载到播放列表后,可以调用该方法播放已预加载的媒体资源。调用该方法后,如果你收到 onPlayerSourceStateChanged 回调报告状态 PlayerStatePlaying ,则表示播放成功。
452
+ * 如果你想更换播放的预加载媒体资源,你可以再次调用该方法并指定新的媒体资源路径。如果你想重新播放媒体资源,你需要在播放前调用 preloadSrc 重新将该媒体资源预加载到播放列表。如果你想清空播放列表,请调用 stop 。 如果你在播放暂停时调用该方法,该方法会在恢复播放后才生效。
453
+ *
454
+ * @param src 播放列表中的媒体资源 URL 地址,必须与 preloadSrc 方法设置的 src 一致,否则无法播放。
455
+ *
456
+ * @returns
457
+ * 0: 方法调用成功。
458
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
459
+ */
460
+ abstract playPreloadedSrc(src: string): number;
461
+ /**
462
+ * 释放预加载的媒体资源。
463
+ *
464
+ * @param src 媒体资源的网络路径。
465
+ *
466
+ * @returns
467
+ * 0: 方法调用成功。
468
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
469
+ */
470
+ abstract unloadSrc(src: string): number;
471
+ /**
472
+ * 开启或关闭媒体播放器的空间音频。
473
+ *
474
+ * 成功设置媒体播放器的空间音频参数后,SDK 会开启媒体播放器的空间音频,即本地用户听媒体资源会有空间感。
475
+ * 如果需关闭媒体播放器的空间音频,你需要将 params 参数设为空。
476
+ *
477
+ * @returns
478
+ * 0: 方法调用成功。
479
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
480
+ */
481
+ abstract setSpatialAudioParams(params: SpatialAudioParams): number;
482
+ /**
483
+ * @ignore
484
+ */
485
+ abstract setSoundPositionParams(pan: number, gain: number): number;
486
+ /**
487
+ * @ignore
488
+ */
489
+ abstract getAudioBufferDelay(): number;
490
+ /**
491
+ * 设置媒体播放器选项。
492
+ *
493
+ * 媒体播放器支持通过 key 和 value 来设置选项。
494
+ * 该方法和 setPlayerOptionInString 的区别在于,该方法的 value 是 Int 型, setPlayerOptionInString 的 value 是 String 型。二者不可混用。
495
+ *
496
+ * @param key key 值。
497
+ * @param value value 值。
498
+ *
499
+ * @returns
500
+ * 0: 方法调用成功。
501
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
502
+ */
503
+ abstract setPlayerOptionInInt(key: string, value: number): number;
504
+ /**
505
+ * 设置媒体播放器选项。
506
+ *
507
+ * 媒体播放器支持通过 key 和 value 来设置选项。
508
+ * 该方法和 setPlayerOptionInInt 的区别在于,该方法的 value 是 String 型, setPlayerOptionInInt 的 value 是 Int 型。二者不可混用。
509
+ *
510
+ * @param key key 值。
511
+ * @param value value 值。
512
+ *
513
+ * @returns
514
+ * 0: 方法调用成功。
515
+ * < 0: 方法调用失败。详见[错误码](https://doc.shengwang.cn/api-ref/rtc/rn/error-code)了解详情和解决建议。
516
+ */
517
+ abstract setPlayerOptionInString(key: string, value: string): number;
518
+ }
519
+ /**
520
+ * 该类提供管理媒体播放器中缓存媒体文件的方法。
521
+ */
522
+ export declare abstract class IMediaPlayerCacheManager {
523
+ /**
524
+ * 删除媒体播放器中所有已缓存的媒体文件。
525
+ *
526
+ * 该方法不会删除正在播放中的已缓存媒体文件。
527
+ *
528
+ * @returns
529
+ * 0:方法调用成功。
530
+ * < 0:方法调用失败,详见 MediaPlayerReason 。
531
+ */
532
+ abstract removeAllCaches(): number;
533
+ /**
534
+ * 删除媒体播放器中近期最少使用的一个缓存媒体文件。
535
+ *
536
+ * 缓存媒体文件占用过多空间时,你可以调用该方法清理缓存文件。调用该方法后,SDK 会删除最少使用的一个缓存媒体文件。 当你调用此方法删除缓存媒体文件时,当前正在播放的已缓存媒体文件不会被删除。
537
+ *
538
+ * @returns
539
+ * 0:方法调用成功。
540
+ * < 0:方法调用失败,详见 MediaPlayerReason 。
541
+ */
542
+ abstract removeOldCache(): number;
543
+ /**
544
+ * 删除指定的已缓存媒体文件。
545
+ *
546
+ * 该方法不会删除正在播放中的已缓存媒体文件。
547
+ *
548
+ * @param uri 待删除的缓存文件的 URI(Uniform Resource Identifier),可用于标识媒体文件。
549
+ *
550
+ * @returns
551
+ * 0:方法调用成功。
552
+ * < 0:方法调用失败,详见 MediaPlayerReason 。
553
+ */
554
+ abstract removeCacheByUri(uri: string): number;
555
+ /**
556
+ * 设置待缓存的媒体文件的储存路径。
557
+ *
558
+ * 该方法需在初始化 IRtcEngine 之后调用。
559
+ *
560
+ * @param path 缓存文件储存的绝对路径。请确保指定的目录存在且可写。
561
+ *
562
+ * @returns
563
+ * 0:方法调用成功。
564
+ * < 0:方法调用失败,详见 MediaPlayerReason 。
565
+ */
566
+ abstract setCacheDir(path: string): number;
567
+ /**
568
+ * 设置缓存媒体文件数量的上限。
569
+ *
570
+ * @param count 可缓存的媒体文件数量的上限,默认值为 1000。
571
+ *
572
+ * @returns
573
+ * 0:方法调用成功。
574
+ * < 0:方法调用失败,详见 MediaPlayerReason 。
575
+ */
576
+ abstract setMaxCacheFileCount(count: number): number;
577
+ /**
578
+ * 设置缓存媒体文件的总缓存大小的上限。
579
+ *
580
+ * @param cacheSize 缓存媒体文件的总缓存上限,单位为字节。默认为 1 GB。
581
+ *
582
+ * @returns
583
+ * 0:方法调用成功。
584
+ * < 0:方法调用失败,详见 MediaPlayerReason 。
585
+ */
586
+ abstract setMaxCacheFileSize(cacheSize: number): number;
587
+ /**
588
+ * 设置是否开启自动清除缓存文件功能。
589
+ *
590
+ * 开启自动清除缓存文件后,当播放器中缓存的媒体文件超过你设置的文件数量或总缓存大小的上限时,SDK 会自动清除近期最少使用的一个缓存文件。
591
+ *
592
+ * @param enable 是否自动清除缓存文件: true :开启自动清除缓存文件功能。 false :(默认)关闭自动清除缓存文件功能。
593
+ *
594
+ * @returns
595
+ * 0:方法调用成功。
596
+ * < 0:方法调用失败,详见 MediaPlayerReason 。
597
+ */
598
+ abstract enableAutoRemoveCache(enable: boolean): number;
599
+ /**
600
+ * 获取缓存文件的储存路径。
601
+ *
602
+ * 如果你在调用该方法前未曾调用 setCacheDir 方法自定义缓存文件的储存路径,该方法返回的为 SDK 默认的缓存文件储存路径。
603
+ *
604
+ * @param length 输入参数,缓存文件储存路径字符串的最大长度。
605
+ *
606
+ * @returns
607
+ * 方法调用成功时,返回缓存文件的储存路径。
608
+ * < 0:方法调用失败,详见 MediaPlayerReason 。
609
+ */
610
+ abstract getCacheDir(length: number): string;
611
+ /**
612
+ * 获取所设置的缓存文件数量上限。
613
+ *
614
+ * SDK 默认的缓存文件数量上限为 1000。
615
+ *
616
+ * @returns
617
+ * > 0:方法调用成功,返回缓存文件数量的上限。
618
+ * < 0:方法调用失败,详见 MediaPlayerReason 。
619
+ */
620
+ abstract getMaxCacheFileCount(): number;
621
+ /**
622
+ * 获取所设置的缓存文件总缓存的上限。
623
+ *
624
+ * SDK 默认的缓存文件总缓存上限为 1GB。你可以调用 setMaxCacheFileSize 方法自定义总缓存大小的上限。
625
+ *
626
+ * @returns
627
+ * > 0:方法调用成功,返回缓存文件的总缓存上限,单位为字节。
628
+ * < 0:方法调用失败,详见 MediaPlayerReason 。
629
+ */
630
+ abstract getMaxCacheFileSize(): number;
631
+ /**
632
+ * 获取当前已缓存的媒体文件的总数量。
633
+ *
634
+ * @returns
635
+ * ≥ 0:方法调用成功,返回当前已缓存的媒体文件的总数量。
636
+ * < 0:方法调用失败,详见 MediaPlayerReason 。
637
+ */
638
+ abstract getCacheFileCount(): number;
639
+ }
640
+ /**
641
+ * 媒体播放器的视频数据观测器。
642
+ *
643
+ * 你可以调用 registerVideoFrameObserver 注册或取消注册 IMediaPlayerVideoFrameObserver 观测器。
644
+ */
645
+ export interface IMediaPlayerVideoFrameObserver {
646
+ /**
647
+ * 已获取视频帧回调。
648
+ *
649
+ * 注册视频观测器后,每次接收到一帧视频时,都会触发该回调,报告视频帧信息。
650
+ * 建议你通过 C++ API 实现该回调。
651
+ *
652
+ * @param frame 视频帧信息,详见 VideoFrame 。
653
+ */
654
+ onFrame?(frame: VideoFrame): void;
655
+ }
656
+ //# sourceMappingURL=IAgoraMediaPlayer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IAgoraMediaPlayer.d.ts","sourceRoot":"","sources":["../../../src/IAgoraMediaPlayer.ts"],"names":[],"mappings":"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"}