Re: [Live-devel] **EXTERNAL**Re: Adding UDP Video to an Audio RTSP URL coming from an AXIS encoder in the same stream doesn't work

2023-11-08 Thread Ross Finlayson
> On Nov 8, 2023, at 12:49 PM, Eric Eastman > wrote: > > I was able to update to the latest live555. Here is the output from openRTSP > and the audio file output. Every player I use says it's corrupted and doesn't > understand the compression. Hold on. You said before that if your “ServerM

Re: [Live-devel] **EXTERNAL**Re: Adding UDP Video to an Audio RTSP URL coming from an AXIS encoder in the same stream doesn't work

2023-11-08 Thread Eric Eastman
I was able to update to the latest live555. Here is the output from openRTSP and the audio file output. Every player I use says it's corrupted and doesn't understand the compression. I also tested with the -4 option and piped it to a test.mp4. The test.mp4 has video but no audio. Thanks, Er

Re: [Live-devel] Retrieving stats for ProxyServerMediaSession

2023-11-08 Thread Andy Hawkins
Hi, That's perfect, thanks for the swift response. Andy From: live-devel on behalf of Ross Finlayson Sent: 08 November 2023 14:36 To: LIVE555 Streaming Media - development & use Subject: Re: [Live-devel] Retrieving stats for ProxyServerMediaSession OK, I’ve just installed a new version (20

Re: [Live-devel] Retrieving stats for ProxyServerMediaSession

2023-11-08 Thread Ross Finlayson
OK, I’ve just installed a new version (2023.11.08) of the code that changes the signature of “getRTPSinkandRTCP()” to remove the “const” from the “rtpSink” and “rtcp” parameters. There was no good reason to make those “const”. Ross Finlayson Live Networks, Inc. http://www.live555.com/ __

Re: [Live-devel] Retrieving stats for ProxyServerMediaSession

2023-11-08 Thread Andy Hawkins
Hi, I can't pass a non-const pointer into getRTPSinkandRTCP as it will fail to compile: error: no matching function for call to ‘ServerMediaSubsession::getRTPSinkandRTCP(void*&, RTPSink*&, const RTCPInstance*&)’ fStreamStates[count].subsession->getRTPSinkandRTCP(fStreamStates[count].stream

Re: [Live-devel] Retrieving stats for ProxyServerMediaSession

2023-11-08 Thread Ross Finlayson
> On Nov 8, 2023, at 1:23 AM, Andy Hawkins wrote: > > Hi, > > Thanks again, that's very helpful. > > One remaining issue, the 'getRTPSinkandRTCP' method in returns *const*​ > pointers, but the RTPSink member 'getTotalBitrate' is not a const method, so > can't be called from these pointers.

Re: [Live-devel] Retrieving stats for ProxyServerMediaSession

2023-11-08 Thread Andy Hawkins
Hi, Thanks again, that's very helpful. One remaining issue, the 'getRTPSinkandRTCP' method in returns *const*​ pointers, but the RTPSink member 'getTotalBitrate' is not a const method, so can't be called from these pointers. Is there any reason these are const? I see the comment in the header