audio.ts 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. import Toast from '@/app/components/base/toast'
  2. import { textToAudioStream } from '@/service/share'
  3. declare global {
  4. // eslint-disable-next-line @typescript-eslint/consistent-type-definitions
  5. interface Window {
  6. ManagedMediaSource: any
  7. }
  8. }
  9. export default class AudioPlayer {
  10. mediaSource: MediaSource | null
  11. audio: HTMLAudioElement
  12. audioContext: AudioContext
  13. sourceBuffer?: any
  14. cacheBuffers: ArrayBuffer[] = []
  15. pauseTimer: number | null = null
  16. msgId: string | undefined
  17. msgContent: string | null | undefined = null
  18. voice: string | undefined = undefined
  19. isLoadData = false
  20. url: string
  21. isPublic: boolean
  22. callback: ((event: string) => {}) | null
  23. constructor(streamUrl: string, isPublic: boolean, msgId: string | undefined, msgContent: string | null | undefined, voice: string | undefined, callback: ((event: string) => {}) | null) {
  24. this.audioContext = new AudioContext()
  25. this.msgId = msgId
  26. this.msgContent = msgContent
  27. this.url = streamUrl
  28. this.isPublic = isPublic
  29. this.voice = voice
  30. this.callback = callback
  31. // Compatible with iphone ios17 ManagedMediaSource
  32. const MediaSource = window.ManagedMediaSource || window.MediaSource
  33. if (!MediaSource) {
  34. Toast.notify({
  35. message: 'Your browser does not support audio streaming, if you are using an iPhone, please update to iOS 17.1 or later.',
  36. type: 'error',
  37. })
  38. }
  39. this.mediaSource = MediaSource ? new MediaSource() : null
  40. this.audio = new Audio()
  41. this.setCallback(callback)
  42. if (!window.MediaSource) { // if use ManagedMediaSource
  43. this.audio.disableRemotePlayback = true
  44. this.audio.controls = true
  45. }
  46. this.audio.src = this.mediaSource ? URL.createObjectURL(this.mediaSource) : ''
  47. this.audio.autoplay = true
  48. const source = this.audioContext.createMediaElementSource(this.audio)
  49. source.connect(this.audioContext.destination)
  50. this.listenMediaSource('audio/mpeg')
  51. }
  52. public resetMsgId(msgId: string) {
  53. this.msgId = msgId
  54. }
  55. private listenMediaSource(contentType: string) {
  56. this.mediaSource?.addEventListener('sourceopen', () => {
  57. if (this.sourceBuffer)
  58. return
  59. this.sourceBuffer = this.mediaSource?.addSourceBuffer(contentType)
  60. })
  61. }
  62. public setCallback(callback: ((event: string) => {}) | null) {
  63. this.callback = callback
  64. if (callback) {
  65. this.audio.addEventListener('ended', () => {
  66. callback('ended')
  67. }, false)
  68. this.audio.addEventListener('paused', () => {
  69. callback('paused')
  70. }, true)
  71. this.audio.addEventListener('loaded', () => {
  72. callback('loaded')
  73. }, true)
  74. this.audio.addEventListener('play', () => {
  75. callback('play')
  76. }, true)
  77. this.audio.addEventListener('timeupdate', () => {
  78. callback('timeupdate')
  79. }, true)
  80. this.audio.addEventListener('loadeddate', () => {
  81. callback('loadeddate')
  82. }, true)
  83. this.audio.addEventListener('canplay', () => {
  84. callback('canplay')
  85. }, true)
  86. this.audio.addEventListener('error', () => {
  87. callback('error')
  88. }, true)
  89. }
  90. }
  91. private async loadAudio() {
  92. try {
  93. const audioResponse: any = await textToAudioStream(this.url, this.isPublic, { content_type: 'audio/mpeg' }, {
  94. message_id: this.msgId,
  95. streaming: true,
  96. voice: this.voice,
  97. text: this.msgContent,
  98. })
  99. if (audioResponse.status !== 200) {
  100. this.isLoadData = false
  101. if (this.callback)
  102. this.callback('error')
  103. }
  104. const reader = audioResponse.body.getReader()
  105. while (true) {
  106. const { value, done } = await reader.read()
  107. if (done) {
  108. this.receiveAudioData(value)
  109. break
  110. }
  111. this.receiveAudioData(value)
  112. }
  113. }
  114. catch (error) {
  115. this.isLoadData = false
  116. this.callback && this.callback('error')
  117. }
  118. }
  119. // play audio
  120. public playAudio() {
  121. if (this.isLoadData) {
  122. if (this.audioContext.state === 'suspended') {
  123. this.audioContext.resume().then((_) => {
  124. this.audio.play()
  125. this.callback && this.callback('play')
  126. })
  127. }
  128. else if (this.audio.ended) {
  129. this.audio.play()
  130. this.callback && this.callback('play')
  131. }
  132. if (this.callback)
  133. this.callback('play')
  134. }
  135. else {
  136. this.isLoadData = true
  137. this.loadAudio()
  138. }
  139. }
  140. private theEndOfStream() {
  141. const endTimer = setInterval(() => {
  142. if (!this.sourceBuffer?.updating) {
  143. this.mediaSource?.endOfStream()
  144. clearInterval(endTimer)
  145. }
  146. }, 10)
  147. }
  148. private finishStream() {
  149. const timer = setInterval(() => {
  150. if (!this.cacheBuffers.length) {
  151. this.theEndOfStream()
  152. clearInterval(timer)
  153. }
  154. if (this.cacheBuffers.length && !this.sourceBuffer?.updating) {
  155. const arrayBuffer = this.cacheBuffers.shift()!
  156. this.sourceBuffer?.appendBuffer(arrayBuffer)
  157. }
  158. }, 10)
  159. }
  160. public async playAudioWithAudio(audio: string, play = true) {
  161. if (!audio || !audio.length) {
  162. this.finishStream()
  163. return
  164. }
  165. const audioContent = Buffer.from(audio, 'base64')
  166. this.receiveAudioData(new Uint8Array(audioContent))
  167. if (play) {
  168. this.isLoadData = true
  169. if (this.audio.paused) {
  170. this.audioContext.resume().then((_) => {
  171. this.audio.play()
  172. this.callback && this.callback('play')
  173. })
  174. }
  175. else if (this.audio.ended) {
  176. this.audio.play()
  177. this.callback && this.callback('play')
  178. }
  179. else if (this.audio.played) { /* empty */ }
  180. else {
  181. this.audio.play()
  182. this.callback && this.callback('play')
  183. }
  184. }
  185. }
  186. public pauseAudio() {
  187. this.callback && this.callback('paused')
  188. this.audio.pause()
  189. this.audioContext.suspend()
  190. }
  191. private cancer() {
  192. }
  193. private receiveAudioData(unit8Array: Uint8Array) {
  194. if (!unit8Array) {
  195. this.finishStream()
  196. return
  197. }
  198. const audioData = this.byteArrayToArrayBuffer(unit8Array)
  199. if (!audioData.byteLength) {
  200. if (this.mediaSource?.readyState === 'open')
  201. this.finishStream()
  202. return
  203. }
  204. if (this.sourceBuffer?.updating) {
  205. this.cacheBuffers.push(audioData)
  206. }
  207. else {
  208. if (this.cacheBuffers.length && !this.sourceBuffer?.updating) {
  209. this.cacheBuffers.push(audioData)
  210. const cacheBuffer = this.cacheBuffers.shift()!
  211. this.sourceBuffer?.appendBuffer(cacheBuffer)
  212. }
  213. else {
  214. this.sourceBuffer?.appendBuffer(audioData)
  215. }
  216. }
  217. }
  218. private byteArrayToArrayBuffer(byteArray: Uint8Array): ArrayBuffer {
  219. const arrayBuffer = new ArrayBuffer(byteArray.length)
  220. const uint8Array = new Uint8Array(arrayBuffer)
  221. uint8Array.set(byteArray)
  222. return arrayBuffer
  223. }
  224. }