StreamCopy for multy clients #1086
-
so i have changed the
i have created a new file
any thing result to only 1 stream playing and only the last one. even if i do this way for all of the code :
i do return the size of all 3 reading to
oh, and i am using PWM for output. the quality for me doesn't matter. i just need to play 3 clients at the same time. and all the audio's are the same mp3 codec and info. like i am sending 1 mp3 file in 3 different times to it. thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
Read the chaper about mixing! There are not enough resources for multiple mp3. So you will need to replace the mp3 with something more efficient: wav will work great... Subsequent mp3 segments depend on their predecessors, so you can't just do what you're doing. |
Beta Was this translation helpful? Give feedback.
-
if you check the Arduino code, i have don it too. the mixer didn't do it ether. it was jittery too. |
Beta Was this translation helpful? Give feedback.
-
please hijack away! i love that.
as for now, all of this is too crazy for me. maybe if i cool off i will return. |
Beta Was this translation helpful? Give feedback.
Read the chaper about mixing! There are not enough resources for multiple mp3. So you will need to replace the mp3 with something more efficient: wav will work great...
Subsequent mp3 segments depend on their predecessors, so you can't just do what you're doing.