Dear Ross,
I would like to give many thanks for your suggestions. It seems you are
right in my case. I will try to use another codec (H.264) as well as change
from streaming unicast to multicast.
Thank again for your help.
From: Nguyen Van Long [mailto:lon...@elcom.com.vn]
Sent: Thursday, S
> Could it be that calling deliverFrame() multiple times might be wrong?
Yes, that's wrong. Your "doGetNextFrame()" function should deliver one, and
only one, H.264 NAL unit (note, not a H.264 'frame') each time it's called.
Note that if - at the time that "doGetNextFrame()" is called - no H.2
Hi Ross,
Thanks for your comment. Here is the implementation of doGetNextFrame() in my
class (which is indeed derived from FramedSource):
void CAvSource::doGetNextFrame()
{
// Forward all frames in the input AV buffer
while (getTopMetadata() != NULL)
{
deliverFrame();
}
}
> I am trying to build an RTSP server using liveMedia to stream H.264 in real
> time from a live encoder. In essence, as soon as I try to connect with VLC,
> liveMedia abort()s with the following message:
> FramedSource[0xbe838]::getNextFrame(): attempting to read more than once at
> the same t
Hello,
I am trying to build an RTSP server using liveMedia to stream H.264 in real
time from a live encoder. In essence, as soon as I try to connect with VLC,
liveMedia abort()s with the following message:
FramedSource[0xbe838]::getNextFrame(): attempting to read more than once at the
same time
> I had seen the answer at
> http://lists.live555.com/pipermail/live-devel/2014-September/thread.html
> although I didn’t received email from mailing list (may be our mail server’s
> down or something cause to lost email …)
You're on the mailing list, so you should be receiving mailing list mes
Dear Ross,
I had seen the answer at
http://lists.live555.com/pipermail/live-devel/2014-September/thread.html
although I didn't received email from mailing list (may be our mail server's
down or something cause to lost email .) and I would like to thank you for
your quick answer.
As your suggestio