Question
Live video stream play permission on server-side
I have a live video stream application one-to-many for
example, and i want to send video only to few clients, not to all.
Like:
I only want to do restriction for Video, from server-side with FMS, or if can't be possible.. how can i put for example a black screen on video ? 🙂 and after can be removed, etc...
quote:
application.onConnect = function(client, canSeeVideo) {
// canSeeVideo = boolean
this.acceptConnection(client);
if (!canSeeVideo) client.receiveVideo(false);
};
// and after this, can be swich to TRUE or FALSE ?
client.receiveVideo(true);
I only want to do restriction for Video, from server-side with FMS, or if can't be possible.. how can i put for example a black screen on video ? 🙂 and after can be removed, etc...
