[Live-devel] MyTestVideoStreamer

2008-06-26 Thread 47manzoor
I have made my own test video streamer and when i put it in the testProgs folder and rebuild i don't get "MyTestVideoStreamer.exe". I have followed all the steps i.e run genWindowsMakefiles and so on ... I think i should make some changes to the config file but i don't know the exact place. Pl

[Live-devel] MyTestVideoStreamer

2008-06-26 Thread 47manzoor
I have made my own test video streamer and when i put it in the testProgs folder and rebuild i don't get "MyTestVideoStreamer.exe". I have followed all the steps i.e run genWindowsMakefiles and so on ... I think i should make some changes to the config file but i don't know the exact place. Pl

Re: [Live-devel] Still working on a h264 framer

2008-06-26 Thread Jerry Johns
The reason why you're stream doesn't work in Quicktime is because QuickTime expects something called SDP Parameters - its text that describes the stream, and in the case of H.264, Quicktime looks into this SDP list to find the SPS and PPS information (See RFC Spec section on sprop parameters) You

Re: [Live-devel] stream to mobile phone

2008-06-26 Thread Ross Finlayson
Can anybody tell me, is it possible to stream video to mobile phone using live555? Yes - many people have done this (playing streams served by our RTSP server). For this to work, the phone has to be able to to play streams using "rtsp://" URLs. (Several 'smartphones' handle such URLs OK, alth

Re: [Live-devel] Still working on a h264 framer

2008-06-26 Thread Ross Finlayson
Also my stream works in VLC and Mplayer, but not Quicktime. That might just be a (known) problem with Quicktime's decoder not handling as wide a variety of H.264 video encodings as the decoder used by VLC and MPlayer. -- Ross Finlayson Live Networks, Inc. http://www.live555.com/

Re: [Live-devel] Still working on a h264 framer

2008-06-26 Thread Mike Gilorma
Thanks Ross, setting the frameDuration to the number of frames per second seemed to make things better. I guess I'll have to make that more dynamic later on, but the good news is I'm streaming H.264!!! the bad news? My file doesn't keep playing, I modeled my test program after testMPEG4VideoStre

[Live-devel] stream to mobile phone

2008-06-26 Thread akarlov
Can anybody tell me, is it possible to stream video to mobile phone using live555? Mobile phone usually have real player and can accept 3gp streams. Does live can stream this files? If somebody tell me about his experience in mobile streaming, I'll be very thankful ___

[Live-devel] ARM Cross Compiler

2008-06-26 Thread Lonnie Walker
I would like to compile live555 using the arm-elf compiler. I have the compiler install on a machine running Fedora 7. I ran ./genMakeFiles armlinux to create the make files. I did a make and got the following errors. /opt/uClinux/arm-elf/bin/gld: cannot open Media.o: No such file or directory mak

[Live-devel] Using FFmpeg to write H.264 Framer

2008-06-26 Thread Brian Marete
Hello, Please see attached files to see how you can use FFmpeg's libavformat library to write a framer for H264 video. The code has been tested with .mp4 files, and with a tweak or two, will work for any other container format. It assumes that the nal_length_size is 4, but one can change this so t

Re: [Live-devel] Still working on a h264 framer

2008-06-26 Thread Fernando Reátegui del Aguila
Hello Mike, I have interest in what you are doing with the H264. Haven't you forgot to inlcude the H264VideoStream Parser.hh in your previous email? Regards, 2008/6/25 Mike Gilorma <[EMAIL PROTECTED]>: > Update: getting closer!!! > > I have re-written my framer based off the H263plusVideoFramer

Re: [Live-devel] Streaming H.264

2008-06-26 Thread Etienne Bömcke
On 24 Jun 2008, at 20:56, Ross Finlayson wrote: I have some questions regarding H.264 streaming: 1) Is it true that if we have one NAL unit in a frame then the virtual function "currentNALUnitEndsAccessUnit()" always returns true" ? Yes, iff by "frame" you mean a complete video frame - i