[Live-devel] Re : Max limit for RTSPClientSession instances?

2008-07-21 Thread ahmoud alkassoum
Hi Mauro, If you are running your application under windows you might have the same problem i had few months ago. My problem was due to an windows OS limitation on the number of sockets that can be open at any one time. On windows the FD_SETSIZE parameter have a default value of 64, so with that

Re: [Live-devel] Max limit for RTSPClientSession instances?

2008-07-21 Thread Ross Finlayson
Do you think I run into an "max open socket" limit (even if 210 is much less than 65535)? I don't know. But in any case, there's no preset limit in our code, so you must be running into some limit in your OS. (Because you are running multiple threads, perhaps you are running into a limit in

Re: [Live-devel] PES to Transport Stream Framer

2008-07-21 Thread Ross Finlayson
My problem is that instead of sending with the right bitrate, this will stream as fast as it can to the network When this happens, it's usually because your 'framer' object is not able to compute the duration of each Transport Packet (and so, each packet gets the default duration of 0). The r

Re: [Live-devel] hang on connect() of sendOptionsCmd with invalid address

2008-07-21 Thread Ross Finlayson
This is about https://trac.videolan.org/vlc/ticket/1730 It takes a long while before an invalid/non-present address is rejected. For instance we use: rtsp://10.90.33.109 Now if live555 starts working on that, it hangs on connect() in the sendOptionsCmd(). The describeURL does not have this prob

[Live-devel] hang on connect() of sendOptionsCmd with invalid address

2008-07-21 Thread Derk-Jan Hartman
He Ross, This is about https://trac.videolan.org/vlc/ticket/1730 It takes a long while before an invalid/non-present address is rejected. For instance we use: rtsp://10.90.33.109 Now if live555 starts working on that, it hangs on connect() in the sendOptionsCmd(). The describeURL does not hav

[Live-devel] PES to Transport Stream Framer

2008-07-21 Thread Ionut Cotoi
Hi, I am trying to write a little application that reads an Program Elementary Stream from a file, puts it trough a transport stream multiplexer and sends it over UDP. My problem is that instead of sending with the right bitrate, this will stream as fast as it can to the network and overflow VL

Re: [Live-devel] Max limit for RTSPClientSession instances?

2008-07-21 Thread Renato MAURO (Libero)
Re: [Live-devel] Max limit for RTSPClientSession instances>you may have run into a limit - in your operating system - of how many open files it can have; Thank you for your fast response. I'm not reading data from files; my application receives data from a custom HW and uses Live555 to receive

Re: [Live-devel] Max limit for RTSPClientSession instances?

2008-07-21 Thread Ross Finlayson
I wrote an RTSPServer application using Live555. I have 36 different sessions, each with one video subsession. It works and have one limit only: it seems to be impossible to serve more than 32 client requests at a time(no difference between 32 clients on the same session or one client on 32

Re: [Live-devel] Streaming live telemetry data

2008-07-21 Thread Ross Finlayson
I am new here and have a question about streaming non multimedia data. I want to stream live telemetry data (so no video or audio) over the internet (bandwidth for each stream 2kbps) to thousands of connected clients simultaneously. I think RTSP(T) is the right protocol for this because the cli

[Live-devel] Max limit for RTSPClientSession instances?

2008-07-21 Thread Renato MAURO (Libero)
Hi. I wrote an RTSPServer application using Live555. I have 36 different sessions, each with one video subsession. It works and have one limit only: it seems to be impossible to serve more than 32 client requests at a time(no difference between 32 clients on the same session or one client o

[Live-devel] Streaming live telemetry data

2008-07-21 Thread Manuel Rejen
Hi all, I am new here and have a question about streaming non multimedia data. I want to stream live telemetry data (so no video or audio) over the internet (bandwidth for each stream 2kbps) to thousands of connected clients simultaneously. I think RTSP(T) is the right protocol for this because