Re: [Live-devel] Streaming from a device

2009-09-10 Thread Ross Finlayson
The card does not have a sockets interface. OK, in this case I suggest using the "watchVariable" parameter to "doEventLoop()". Have a separate thread that reads data from your interface, and then - when sufficient data is available for a frame - sets the "watchVariable" to some value non-zer

Re: [Live-devel] (no subject)

2009-09-10 Thread ansary mohamed
Hi guys, thanks for all your advise on how to implement H.264 streaming". I have done so by using unicast. I have another question to ask you u guys. When the live555 is streaming h264 file, does it read the whole file at once or just reads several bytes at once. If it does not read the who

Re: [Live-devel] Live G711 audio source

2009-09-10 Thread Ross Finlayson
Here's how I implemented the subsession methods: RTPSink * LiveG711MediaSubsession::createNewRTPSink(Groupsock *rtpGroupsock, unsigned char rtpPayloadTypeIfDynamic, FramedSource *inputSource) { char const* mimeType = "PCMU"; unsigned char payloadFormatCode = 0;

Re: [Live-devel] Streaming from a device

2009-09-10 Thread Alastair Bain
>-Original Message- >From: live-devel-boun...@ns.live555.com [mailto:live-devel-boun...@ns.live555.com] On Behalf Of Ross Finlayson >Sent: Thursday, 10 September 2009 8:38 p.m. >To: LIVE555 Streaming Media - development & use >Subject: Re: [Live-devel] Streaming from a device >>I'm trying

Re: [Live-devel] H264 multicast streaming question

2009-09-10 Thread Jeremy Noring
2009/9/10 > > > But when I streamed the H.264 file by unicsat method successfully , the > sprop-parameter-sets has been set “h264”. Therefore i think the > sprop-parameter-sets=h264 does't influence the stream when using multicast > method. Is it right? > > No, that's not right. For the decoder

[Live-devel] RTP over TCP, pushing

2009-09-10 Thread Jeremy Noring
Is it possible for Live555 to push a unicast stream to a server online, and have all the traffic go over TCP? I know Live555 can interleave AV data over the RTCP TCP channel, but I've only seen that for the on-demand configurations; is it possible to "push" video to a server over the RTCP line? T

Re: [Live-devel] Live G711 audio source

2009-09-10 Thread Jeremy Noring
On Wed, Sep 9, 2009 at 5:50 PM, Ross Finlayson wrote: > I believe this because VLC is incorrectly reporting the # of bits per >> sample as 16, and that's the only inheritance hierarchy I can see that >> clearly communicates such a value. Is that correct? >> > > What RTP payload format are you del

[Live-devel] H264 multicast streaming question

2009-09-10 Thread spopo316
Hi, I am working on streaming H.264 video file to the remote PC. The H.264 file can be streamed by the unicast method and displayed in VLC player on the remote PC. But when I adopted the multicast method, the VLC can not show any image as it opened the RTSP stream. I have used Wireshark to comp

Re: [Live-devel] Streaming from a device

2009-09-10 Thread Ross Finlayson
I'm trying to use mediaServer to stream from a encoder card, but not sure how handle synchronization between the device source and the live555 event loop. First, is the encoder card accessible (readable) as a socket? Those are the easiest kinds of input devices to handle. -- Ross Finlayson L

[Live-devel] Streaming from a device

2009-09-10 Thread Alastair Bain
I'm trying to use mediaServer to stream from a encoder card, but not sure how handle synchronization between the device source and the live555 event loop. The device I'm using presents transport stream packets in its own thread. I've created a subclass of DeviceSource, but I don't believe I can jus