error multiple clients simultaneos diferent stream
Closed this issue · 4 comments
HI, with one client all ist ok, but when connect more cients and diferent stream, the playback stop.
Hi! Other users have also experienced the same problem and I have not been able to investigate why it happens. I think it may be caused by the port being used or the Acestream motor itself.
If you can solve it, it would be a pleasure to comment and fix it!
Thanks for your comment. All the best!
This is limitation of acestream, create multiple instances of docker containers with acestream, with different ports.
Hi @akuaman,
Recently, I've been working on fixing this error.
Unfortunately, I couldn't resolve the issue within the image or the Acestream server itself, as it's a limitation of Acestream, as @juhacz mentioned.
After reading their message, I tried deploying multiple Docker containers, and it worked. I had to dynamically change the ports in the Docker image to serve different Acestream servers.
If you'd like to review the 'SetupAcestream.bat' file, you'll see how it works. I create Docker containers starting from port 6678, and if the port is in use, I increment by 2. So, if you have one instance on port 6678, the script will try to create another container on port 6680, and so on.
Thank you!