Re: [Live-devel] One stream to multiple clients

2007-06-14 Thread Tom Deblauwe
Ross Finlayson wrote: >> To implement your own RTSP server, subclass RTSPServer >> > > No, in most cases you don't need to write your own subclass; the > existing "RTSPServer" class will work just fine. This is especially > true if the set of accessible streams is fixed, and known in advanc

Re: [Live-devel] MPEG4 RTP transmission

2007-06-14 Thread aditya gupta
  On Fri, 15 Jun 2007 Ross Finlayson wrote : > >i want to transmit MPEG4 media through RTP/RTCP (don't want to use > >RTSP).. > >Then you're out of luck. To stream MPEG-4 using our library, you >need to use RTSP. We have both muticast ("testMPEG4VideoStreamer") >and unicast ("testOnDemandRTSPS

Re: [Live-devel] MPEG4 RTP transmission

2007-06-14 Thread Ross Finlayson
>i want to transmit MPEG4 media through RTP/RTCP (don't want to use >RTSP).. Then you're out of luck. To stream MPEG-4 using our library, you need to use RTSP. We have both muticast ("testMPEG4VideoStreamer") and unicast ("testOnDemandRTSPServer") demo applications for this. -- Ross Finlayso

Re: [Live-devel] Frame rate SDP attribute

2007-06-14 Thread Ross Finlayson
The video data is MPEG2 ES, PS and TS streams. Then you don't convey the frame rate in SDP, because it can be derived from the video data itself. -- Ross Finlayson Live Networks, Inc. http://www.live555.com/___ live-devel mailing list live-devel@lis

[Live-devel] MPEG4 RTP transmission

2007-06-14 Thread aditya gupta
  hi , i want to transmit MPEG4 media through RTP/RTCP (don't want to use RTSP).. so for this .. i made changes(provide unicast address) exactly as it is in testMPEG1or2VideoStreamer but i am unable to play with vlc player .. but i am able to play MPEG1/2 media streamed through testMPEG1or2

Re: [Live-devel] Frame rate SDP attribute

2007-06-14 Thread Mallikharjuna Reddy \(NAVT\)
Sorry for inconvenience. The video data is MPEG2 ES, PS and TS streams. Thanks and Regards Y. Mallikharjuna Reddy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Ross Finlayson Sent: Friday, June 15, 2007 12:05 AM To: LIVE555 Streaming Media - developme

Re: [Live-devel] Frame rate SDP attribute

2007-06-14 Thread Ross Finlayson
Please don't send the same message to the list multiple times! We would like to include the frame rate attribute as part of SDP generation during RTSP streaming from server to client. We found that frame rate is retrieved from stream after sending SDP report. Any clues on how to include frame

[Live-devel] Frame rate SDP attribute

2007-06-14 Thread Mallikharjuna Reddy \(NAVT\)
Hello Everybody, We would like to include the frame rate attribute as part of SDP generation during RTSP streaming from server to client. We found that frame rate is retrieved from stream after sending SDP report. Any clues on how to include frame rate as part of SDP. Thanks and Regards Y. M

[Live-devel] Frame rate SDP attribute

2007-06-14 Thread Mallikharjuna Reddy \(NAVT\)
Hello Everybody, We would like to include the frame rate attribute as part of SDP generation during RTSP streaming from server to client. We found that frame rate is retrieved from stream after sending SDP report. Any clues on how to include frame rate as part of SDP. Thanks and Regards Y. M

[Live-devel] Frame rate SDP attribute

2007-06-14 Thread Mallikharjuna Reddy \(NAVT\)
Hello Everybody, We would like to include the frame rate attribute as part of SDP generation during RTSP streaming from server to client. We found that frame rate is retrieved from stream after sending SDP report. Any clues on how to include frame rate as part of SDP. Thanks and Regards Y. M

Re: [Live-devel] One stream to multiple clients

2007-06-14 Thread Ross Finlayson
>To implement your own RTSP server, subclass RTSPServer No, in most cases you don't need to write your own subclass; the existing "RTSPServer" class will work just fine. This is especially true if the set of accessible streams is fixed, and known in advance. (See, for example, the code for "te

[Live-devel] Help! how a program RTSP client works with multicast

2007-06-14 Thread Joan Manuel Zabala
Hi, if I have a program RTSP client to work with multicast, my machine must have a direction IP multicast or any other? Can I prove the transmission of video of the server in the same machine where I execute the client? Joan Zabala - Venezuela - ¡D

[Live-devel] Help Urgent! testMPEG1or2VideoStreamer problems

2007-06-14 Thread Joan Manuel Zabala
hello to all! somebody could say me why when I execute to testMPEGVideoStreamer it sends these messages and I do not know if it is sending data to the network. ./testMPEG1or2VideoStreamer Unable to determine our source address: This computer has an invalid IP address: 0x0 Unable to determin

Re: [Live-devel] One stream to multiple clients

2007-06-14 Thread Tom Deblauwe
Ross Finlayson wrote: > Yes, our RTSP server implementation takes care of that, *provided > that* you set the "reuseFirstSource" parameter to True when you > create each "ServerMediaSubsession" object. > Nice! So, I was checking out the whole picture of the library, just trying to understan

Re: [Live-devel] How to use setMediaSessionParameter() and getMediaSessionParameter() from LIVE555 media Server

2007-06-14 Thread Ross Finlayson
>But by looking at the codebase i found that the corresponding API's >in file RTSPClient.c > > >1) Boolean setMediaSessionParameter() >2) Boolean getMediaSessionParameter(); > > >can be used for sending GET_PARAMETER and SET_PARAMETER request >only from RTSP Client and not from MediaServer . > >

[Live-devel] How to use setMediaSessionParameter() and getMediaSessionParameter() from LIVE555 media Server

2007-06-14 Thread Nitin Jain
Hi All, I want to use GET_PARAMETER and SET_PARAMETER RTSP request method from both LIVE555 RTSP client and LIVE555 media server as per RFC 2326 . But by looking at the codebase i found that the corresponding API's in file RTSPClient.c 1) Boolean setMediaSessionParameter() 2) Boolean getM

Re: [Live-devel] MPEG4 RTP transmission

2007-06-14 Thread aditya gupta
  On Thu, 14 Jun 2007 Ross Finlayson wrote : > >yeah it works fine ..but "testOnDemandRTSPServer" and > >"testMPEG4VideoStreamer" (unmodified version) are for RTSP > >transmission .. but i want to transmit media through RTP/RTCP > >transmission , and that is not working fine .. > >RTSP is not a

Re: [Live-devel] MPEG4 RTP transmission

2007-06-14 Thread Ross Finlayson
>yeah it works fine ..but "testOnDemandRTSPServer" and >"testMPEG4VideoStreamer" (unmodified version) are for RTSP >transmission .. but i want to transmit media through RTP/RTCP >transmission , and that is not working fine .. RTSP is not a 'transmission' protocol; it is a control protocol. RTSP s

Re: [Live-devel] MPEG4 RTP transmission

2007-06-14 Thread aditya gupta
On Thu, 14 Jun 2007 Ross Finlayson wrote : > >hi, > > > >Can any one tell me how to transmit mpeg4 media via RTP .. i had made > >sufficient changes in testMPEG4VideoStreamer ( i.e. provide unicast > >address) but things are not working for me .. > >Does it work OK for you if you *don't* make any