Re: [Live-devel] Run a method when streaming starts for another client?

2015-08-18 Thread Usama Shah
Thank you. That worked perfectly. I also had to overwrite createNew(), constructor and destructor as well to make it work properly. You should not need to do this (especially if you want support on this > mailing list). > > If you don’t have “reuseFirstSource” set to True in your > “OnDemandServer

[Live-devel] Run a method when streaming starts for another client?

2015-08-13 Thread Usama Shah
I need to send some extra data `sendIframes` when a new client connects to our RTSP server. This is what I have found and done so far env->taskScheduler().scheduleDelayedTask(500, (TaskFunc*)sendIframes, NULL); //failed //delaying is useless as we need to send only to the new client co