How to stream an mp3 file over UDP? #1749
-
Hi, im using the command: Im trying to recieve the stream but my audio is very distorted. So im wondering what i am doing wrong? i also tried to convert it to pcm with but that also did not create a better result
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
My guess would be that the audio is just sent too quick and therefore gets lost because there is no synchronization. You could try to write into a Queue and play back from the queue in a separate task as described here Or better, if you are in linux, try to use Snapcast |
Beta Was this translation helpful? Give feedback.
My guess would be that the audio is just sent too quick and therefore gets lost because there is no synchronization.
I suggest you try with IP instead of UDP.
You could try to write into a Queue and play back from the queue in a separate task as described here
Or better, if you are in linux, try to use Snapcast