Jeff Bass
Jeff Bass
What caused me to suggest it is that your `CameraHub` thread `__init__` is starting a `VideoStreamSubscriber` thread, which itself starts a thread. I have had problems with Python threads starting...
@johnhh2, I apologize for being slow to respond. I will try to respond more quickly going forward. I have found intermittent and sporadic blocking with **imageZMQ** in my own projects....
Hi @sureshgorakala, Short Answers: Question 1: Yes, but only if you can send images to your local machine's IP address (see below). Question 2: I'd be happy to put together...
Hi @ankit6979, The `imageZMQ` library can send audio clips (as-is, without being extended) by using the `send_jpg` and `receive_jpg` methods. The 2 jpg methods send / receive `(message, binary_buffer)` tuples....
Hi @endlessboy, Yes, you can change the image size, but it needs to be done in the sending program. The sending program is not part of **imageZMQ**. The **imageZMQ** classes...
Thanks @fjolublar! Any speed improvement suggestions are always very welcome. Would you be interested in providing an example program pair that illustrates your use of `simplejpg`? You could start with...
Thanks again for your pull request. Merged it.
Yes, you can set a timeout on the client when sending frames to the server. It is how my imagenode software works. I use a try / except block with...
Yes, you can have multiple image receiving servers on the same computer. I do this a lot. You will have to run each server using a different port (I use...
I don't know anything about changing configurations to speed up the tcp protocol. But I would love to find out if you learn anything! There are others who are using...