-
Notifications
You must be signed in to change notification settings - Fork 103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Play audio bytes #154
Comments
Honestly, not sure myself. Never had to do that. On Android the MediaPlayer is calling Hope that helps. I haven't looked at iOS to see if the player there accepts bytes as the audio source. |
@FlawaCLV @bradmartin Have you found a real solution to this by the chance? |
@zangarmarsh I didn't use this plugin, I used |
Thank you for your feedback @FlawaCLV . Do you mean JavaScript AudioContext? If so, do you already know if it supports background playback and playing speed variations? |
I honestly don’t remember. You should look into the AudioContext API to
find your answers.
Le mar. 27 avr. 2021 à 22:14, zangarmarsh ***@***.***> a
écrit :
Thank you for your feedback @FlawaCLV <https://github.com/FlawaCLV> . Do
you mean JavaScript AudioContext? If so, do you already know if it supports
background playback and playing speed variations?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#154 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABBZHXDAGTC54KBHBIX7LFLTK4LIVANCNFSM4IXCVEWA>
.
--
Hugo Pozzoli
CEO & Fondateur de Pas de panique ! <https://mobile.pasdepaniqueapp.fr>
📱 +33 (0)6 68 37 00 76
|
I've created an audio live stream with my previous mobile app (Cordova). I send audio bytes using socket.io, buffer for a few seconds and play the array of bytes.
Is there a way to play audio bytes using your plugin? Or maybe you are familiar with a plugin that can convert my bytes first?
I was thinking, creating a file with the received audio bytes, then play it with
player. playFromFile()
, but I guess this isn't optimal. Any idea ?The text was updated successfully, but these errors were encountered: