Media Server :: Display Current # Of Viewers And Total Views Similar To Ustream Displays Them?
Jan 4, 2012
How can you display current # of viewers connected to a stream and total views similar to how ustream displays them?Is this done using server side actionscript? Are there any templates and/or examples or tutorials to use to get started?
View 1 Replies
Similar Posts:
Jan 9, 2011
I'm trying to find out how I can tell how many users are connected to the same FMS application in a flex application:
public function totalConnectedUsers():void{
lblText1.text = "There are a total of " + bindableUserVariable + " Users Connected to the Stream Now";
}
View 6 Replies
Jul 20, 2009
I am currently using Digital Rapids StreamZ to encode video for Flash media Server. The guys who look after the equipment have streamed to flash media server before using RTMP addresses without any problems but ustream doesn't seem to work.
Would there be any reason why the encoded signal would not get through or display on ustream? The StreamZ software is not showing any problems or error messages so we are assuming the encoded feed is being sent correctly but Ustream doesn't detect that there is a flash media stream available for that channel.
View 1 Replies
Aug 6, 2010
I want FMLE users to be able to stream to my FMIS but block them from watching it on other websites instead of mine.
I am using
allowedSWFdomains.txt
allowedHTMLdomains.txt
to stop other domains. when ever i put my domain there, FMLE can not connect to my server. this is a huge fallback for me, i dont know what to do, all the content theft just stream to my server and put the rtmp url to there SWF player, some even have there own logos.
View 18 Replies
Feb 10, 2011
I'm using Amazon EC2 and AFMLE 3.2. How do I generate a report that will tell me how many viewers I have watching?I figured out how to report on the Kb out in an hour but that only tells me average viewers, asuming they all watched an entire hour I need unique viewers and average viewers at different points in the webcast.
View 3 Replies
Mar 17, 2010
1. I want to limits the number of viewers per stream
2. I want to limit the valid stream names
View 3 Replies
Sep 14, 2010
How to limit the number of viewers per application
View 3 Replies
Oct 12, 2010
I wanted to know how to restrict the number of viewers for an application. I tried this
{
if(application.clients.length > 10)
application.rejectConnection(client)
}
I put that inside application.onAppStart = function() - but it didn't work
View 2 Replies
Jan 12, 2012
I want to know how many viewers watch stream at the moment. How to find this out?
View 4 Replies
Feb 16, 2012
I'm using Amazon CloudFront in connection with Adobe Flash Media Server to live stream an event using HTTP streaming. How can I get basic stream statistics, including number of viewers?
[Code]...
View 4 Replies
Apr 13, 2012
One of my clients installed FMS 3.5 and has the following issue:
a model was video chatting w/ one or more customers in a chat room. but sometimes, one customer entered her chatroom but saw blackscreen only, couldn't see model's activity, nor the video. the model did not see that customer entering the chat room either.
View 1 Replies
Jan 5, 2011
I have a dynamic playlist that is populated by XML and I would like to have a "viewed" textfield next to each video showing how many times it has been clicked to play, exactly like YouTube's views.I'm not 100% certain how I want/should tackle this, but I was looking at the File object from FMS and somehow interacting with that or my web server runs ASP 3.5 and I was thinking a hit counter that way
View 2 Replies
Apr 4, 2011
using old AS2 code on an fms project.it seems that both server-side NetStream object and client-side NetStream object do not have a totalTime property.my goal is to determine when the flv has completed playing ( has reached the end visually );so I figured that comparing time to totalTime would work but there appears to not be a totalTime.
View 3 Replies
Nov 1, 2011
Is there a way to create videos in a playlist that i can limit the views to 10 videos per user?
View 1 Replies
Mar 24, 2011
I can get which part of file in bytes is loaded using videoDisplay component for RTMP protocol for VOD, I can get the current playing position using videoDisplay.playheadTime. But I want to know how many seconds of video are already loaded (not the length of bufferTime, which remains constant). i used videoDisplay.bytesLoaded when using RTMP it returns nothing ,if we uses HTTP it displays number of bytes loaded
The loaded size in bytes is not directly proportional to running time of the video, and while using rtmp im unable to get bytesLoaded too, how i can calculated the Video already loaded.
View 3 Replies
Nov 5, 2011
I've got what should be a simple problem I can't quiet get my head around: Say I have these array values (could change, but same basic structure):
[Code]...
The sub array could go deeper, or it could be less, but it's always a matter of comparing within the subarray to get the goal. The answer I'm after is a count of total matched groups. So since there is a 4 and 3 together all 4 and 3s would simply count as a 1. My expected result from the above would be 3 (a count of total unique groups). All the 0s are 1, all the 3 and 4s merge together to be 2 and the 6 are 3. I just care the value is 3.
View 1 Replies
Aug 12, 2009
I need the main.asc file to return the current directory listing to a flash application.
[Code]...
View 1 Replies
Jul 14, 2010
I want flash to return all the attributes from each node, including the node number. EG: trace(xmlObj.firstChild.childNodes.currentNode);Chicago would be 0 and new York XML:
Code:
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<images>
[code].......
View 1 Replies
Feb 1, 2005
At the moment I'm making a presentation for school in Flash MX 2004. I want some kind of progression bar in the presentation. This is how I have it in my mind:
2/15
2 is the current frame and 15 is the total number of frames. I know I have to do this with the use of ActionScript in combination with dynamic text labels. How can I read out the current frame number and the total number of frames?
The names of the dynamic text labels are:
"cFrame" and "tFrames"
View 3 Replies
Mar 7, 2011
Is there anyone who has a HTML example (or can give an URL with a page) that has the Adobe Flash player displaying a live stream (and not a file)?There is one in the installation under "Flash Media Server Start Screen" but it was too complex for me to understand. I just need a simple example on how to display a live flash stream in Adobes own web player.
View 1 Replies
Oct 9, 2009
I am using sendAndLoad heavily in my fms3.5.2 application because it accesses an API on the webserver to execute commands. It calls a PHP file on the webserver which connects to a database, does some processing and returns XML output. Now, LoadVars has been giving me problems for months now. I suspect it is the reason my application crashes intermittently.
Also, lately.. it takes about 2 minutes just for the sendAndLoad to reach the onData stage. I have no idea why. This is not a problem of the PHP taking long to display the XML because if I access the PHP directly using `links` linux command, then it returns practically immediately.
View 1 Replies
Mar 25, 2010
Is it possible to listen to ProgressEvent when streaming?
I want to display the buffer progress by listening to the NetStream ProgressEvent, but the event does not dispatch...
View 4 Replies
Nov 25, 2010
I've build a simple video chat application. The problem is that there is a delay of seconds between video display i.e. user1 video motion change displayed bit late at the user2 window. I'm using FMS 3.5 and FLEX.. IS THIS PROBLEM RELATED TO THE BANDWIDTH. My FMS bandwidth is 256kbps.
[Code]...
View 3 Replies
Jun 30, 2011
I installed FMS about a year ago, and realized that it broadcasts videos in "real time", just the point where the video is, without a "progressive display and download".Maybe there is a mode in FMS that makes it work in "progressive display and download" way in HTTTP connections, just like youtube or any other tube, so, it will be downloading the rest of a video, while playing its previous part.
View 4 Replies
Feb 8, 2011
I need to increase my buffer size in FMS. My video is running from RTMP and I faces the problem to load. Video stalled between the running. So I need to increase buffer size for running video smoothly.
View 1 Replies
Jul 9, 2009
I am loading a flv video in AS2:
var conexion:NetConnection = new NetConnection();
conexion.connect(null);var stream:NetStream = new NetStream(conexion);
mi_video.attachVideo(stream);
stream.play("motto.flv");
this.onEnterFrame = function() {
[Code] .....
It works very good, In this line, I get de current time of the flv:
timer_txt.text = ((integer.length<2) ? "0"+integer : integer)+":"+((decimal.length<2) ? "0"+decimal : decimal)
And I need to display the total time too. By the way, I am not using the any flv component, I need to play the video in a custom player....
View 1 Replies
Sep 28, 2011
I have an AdvanceDataGrid. How can I show the total of each column at the bottom. I am able to calculate the total, and tried displaying them on labels below each column by giving width as column width. But they are not getting aligned properly below each column.[code]Is there a way by which I can assign total to the grid itself instead of using seperate labels below.
View 1 Replies
Feb 19, 2008
I need this to work so that on my stage i can have a dynamic text box displaying the current time of the flv and the total time ---- example 3:45 / 6:58 where the 3:45 would update as the flv was scrubbed or played, or whenever a jump point was pressed. I found an example of this on this page.I have been using the as3 code to import my video and use cue points and for the life of me I cant get this to work.
View 14 Replies
Jan 30, 2004
Okay, my preloader has some code in it to display the percentage of a 6 MB movie and I want to display the proper file size such as 6.53MB instead of 6987362892 Bytes. Here is what i have so far and it's not working. [AS]percent.text = Math.round((getBytesLoaded()/getBytesTotal()) * 100) + '% of ' + Math.round(getBytesTotal())/1024 + 'kb';[/AS] The red code is where I'm having my problems.
View 2 Replies
Jan 30, 2004
My preloader has some code in it to display the percentage of a 6 MB movie and I want to display the proper file size such as 6.53MB instead of 6987362892 Bytes. Here is what i have so far and it's not working.[code]...
View 2 Replies