-
Hello, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
All the audio playback libraries I know eventually would put the data on disk, one way or the other even when you didn't explicitly ask for it. Really just putting it in tmpfs should be OK, I'm not sure why everyone has an issue with that. Also the data received from server is either WebM or MP3 and both would need to be converted before being sent to the audio server, and the only ways available to convert these to formats supported by the audio server would require you to put the data in a file. |
Beta Was this translation helpful? Give feedback.
-
@dstrn825 Hello, I also have the same need as you, want to achieve direct playback of audio streams without saving mp3 files, I don't know if you have solved this problem, if you have solved it, can you share your method, thank you |
Beta Was this translation helpful? Give feedback.
All the audio playback libraries I know eventually would put the data on disk, one way or the other even when you didn't explicitly ask for it. Really just putting it in tmpfs should be OK, I'm not sure why everyone has an issue with that.
Also the data received from server is either WebM or MP3 and both would need to be converted before being sent to the audio server, and the only ways available to convert these to formats supported by the audio server would require you to put the data in a file.