Media Server :: Playing Recorded Files As If They Were Live

Jan 10, 2011

There are some recorded flv files. The guy in the video is showing numbers with his hands. (1.flv, 2.flv, 3.flv etc) And there are live idle videos. In these idle videos the guy doesnt do anything.
 
I need to be able to click 1 as the operator and viewers should see the guy make "1" in the video. Actually I have accomplished so far. It works. I do this:
 
If the operator selects a video it adds the video to playlist:   stream.play(filename, -2, -1, false);
 
Also have this event handler to play a random idle video when there are no more action videos lined up:
 
function onStreamStatus(obj) {
if (obj.code != "NetStream.Play.Stop") return;
switch (obj.code) {

[Code]..... 
 
So it is working so far. Problem is:
 
As time goes by there appears to be a delay between I issue the play command on the stream and I actually see it in the video on client side.

View 9 Replies


Similar Posts:


Media Server :: Recording Video/audio Files Using Flash Media Server Through Rmtp, And Allow Users To Access The Recorded Files Through Http?

May 25, 2009

As titled, what is the way to record video/audio files using Flash Meida Server through rmtp, and allow users to access the recorded files through http?What I am trying to do, is to record a user's microphone's input and save it to the server.fterwards, I would like other users to be able to access the recorded files and mainuplating the audio data, by computeSpectrum(), to do some visualization of the audio. As I know computeSpectrum() cannot work on streaming files, so I think I need to access the recorded files using http instead of rmtp. Is that true?

View 1 Replies

Media Server :: 3.5 Recorded Live Stream Not Playable?

Sep 22, 2010

I use FMLE 3 streaming and recording (DVR) to FMS 3.5, and the sample DVR scripts on FMS for recording the live stream, but the recorded stream not playable (from the remote FMS with FLVPlayback and from my local Developer FMS with Adobe Video Player too). The recorded file is crashed.

View 3 Replies

Media Server :: Switching From Live Streaming To Pre-recorded Instantly?

Feb 24, 2010

I am having troubles finding a way to switch videos during a live stream.  For example,  broadcasting a show and switching to a commercial and then back to the live feed.

View 1 Replies

Media Server :: Copy Recorded Live Stream To New Drive?

Mar 19, 2010

how to copy a recorded live stream to a new drive on the server?  I can copy the file within the virtual app directory but not to another drive.
 
The only solution i found was to edit the application.xml:
 
<StreamManager>        <StorageDir>e:Sync</StorageDir>    </StreamManager>
 
But unfortunately i need to rename the file once its recorded, and i'm having a hard time accessing that drive/directory where the file is located.

View 1 Replies

Media Server :: 3.5.0 Stops Streaming Live Pre-recorded Streams Unexpectedly

Mar 1, 2010

When broadcasting pre-recorded streams on a live applicationFMS always stops streaming at a certain time...
 
It can be after 10 seconds, it can be after 2 hours, or it can be after any other time, the frame just freezes on the client and the buffer drops to 0.

any attempt to diconnect / reconnect does not resume the streaming, althought the FMS console registers the connected client, no streaming is ensuing. One of the common events we get on the client in such instances when the streaming stops results in get "NetStream.Play.InsufficientBW".[code]...

View 4 Replies

Media Server :: Set The Flvplayback Properly So That It Can Play Both Live And Recorded Videos?

Nov 19, 2010

I've read the reference here,but it seems to me that I can only make it work with live OR recorded videos.How can I make it work with both live AND recorded videos?

View 7 Replies

Media Server :: Recorded Mp4 Is Not Playing?

Feb 22, 2011

I have developed an application for recording the mp4 format movie. I am able to record  mp4 format file but my recorded file is not playing in window media player.
 
so, if any body have some idea/suggestion  about play pre-recorded mp4 file in window media player then your most welcome.

View 4 Replies

Media Server :: Rotate The Live Recorded Video Stream To A Maximum Limit?

Dec 6, 2010

Is it possible to limit the length of live recorded video stream to N minutes/MegaBytes by SSAS in FMS? If the aggregate size of stream outcomes the limit,always make the recorded video file the last N minutes/MegaBytes of the live show? remove the video file and record from the beginning when arriving N minutes/MegaBytes?

View 1 Replies

Media Server :: Setup Multicast Event With Recorded Videos Not With Live Stream?

Nov 25, 2011

setup multicast event with recorded videos not with live stream. how to setup multicast address that ask in multicast configuration utility....

View 1 Replies

Media Server :: Adobe Flash Tried To Play A Live Or Recorded Stream That Does Not Exist. Source Can't Be Found?

Sep 5, 2011

I have started a stream from Flash media encoder to flash media server. According to my encoder, it should be located at: "rtmp://localhost/live" and is called livestream.In the Flash  software I try and set the source of FLVPlayback component to rtmp://localhost/live/livestream", and I get this error: "NetStream.Play.StreamNotFound : Adobe Flash tried to play a live or recorded stream that does not exist. Source can't be found.". Both the server and encoder is runnind and I am encoding.

View 12 Replies

Media Server :: Change Recorded Stream Files Permissions From Server Side?

Dec 20, 2010

I need a way to set the permissions (ex 0777) for the recorded streams without calling any additionals scripts.

View 2 Replies

Media Server :: How To Append Recorded Files

Mar 20, 2010

I am using adobe dvrcast to record my live streams. the problem I am having is when I stop the encode during a live stream, a new file is not created, the existing stream is written over. How can I preventive this from occuring. Is there a way to have all vod files that are in one folder to roll over to the next file during play back.

View 12 Replies

Media Server :: Playback F4v Files Recorded In FMLE?

Feb 25, 2010

my name is Göran and I know this is probably the wrong place to post my question but as far as I can see there´s no forum for FMLE here. I´m using the betaversion for mac. I was broadcasting to justin tv last night and decided to try out the record feature i FMLE. It looked like it worked ok and a 125 mb f4v landed on my harddrive. There´s no way I can play it back though or for that matter convert it mov etc etc. What am I doing wrong do I need another special app for playback or converting. Seem a bit strange if this feature is onboard the FMLE but you can´t use it.

View 3 Replies

Media Server :: Store The Recorded FLV Files On The Other System?

May 16, 2011

Suppose we have FMS on A system and if we want to save the recorded FLV files on the B system.

View 4 Replies

Media Server :: Playing Recordings When No Live Streams Available

Jun 1, 2011

I am able to record live streams on server side. Now I am looking for an option to play recorded streams on server side when no one is publishing a live stream. Currently I am able to record all live streams that are currently being published in /opt/adobe/fms/webroot/live_recorded Folder. All the recorded streams are saved in stream.f4v format. I want to change main.asc in livemyapp folder in such a way that if any one is not publishing live streams of the name "abc" then automatically the client is served with the previously recorded abc.f4v in his browser.

Here is main.asc
/* * application.onAppStart:* is called when application load. It contains Live (out of the box) * application specific initializations. */
application.onAppStart = function(){ // Logging
trace("Starting Live Service...");
[Code] ....

What should I write in main.asc so that if a client is requesting to watch a stream and if that is not being published at the moment, he should be served the recorded version of that stream.

View 1 Replies

Media Server :: Record A Live Video Stream Playing On An FLVPlayback?

Mar 22, 2012

How to record a live video stream playing on an FLVPlayback?

View 1 Replies

Flash :: Media Server - Change The Live Stream From Camera While Playing With Lite?

Aug 2, 2010

I know the stream can only be modified at publishing side by previous posts. I was thinking of using Server shared objects, but it's not supported by lite.

View 2 Replies

Media Server :: Recording Live Streams And Play Files Later

Apr 19, 2011

My Purpose is to record live streams on server side and play recorded files later. What I have done is -

1. Copied All files of applications/live in some safe location.
2. Copied all files from samples/applications/live to applications/live folder. (Deleted main.far from live folder)
3. Restricted SWF and HTML to mydomain in these files - allowedHTMLdomains.txt and allowedSWFdomains.txt
4. In main.asc I added these line in the end
var mystream;var intervalID;
[Code] .....
5. Then I restarted FMS and tried streaming using FLash Media Encoder. I was able to live stream and then i stopped it.
6. A FLV File was recorded in application/live folder with the stream name that i used in encoder.

I am able to view live video on my domain as well as some other domain, that means allowedHTMLdomains.txt and allowedSWFdomains.txt did not worked. Another issue is that I am not able to view recorded video after I stopped encoder but I was able see live video before stopping. I am using jwplayer to view the video and using flashvars streamer (rtmp://xx.xx.xx.xxx/live) and file(abc) to view the live and recorded video.

View 17 Replies

Media Server :: Possible To Adjust FPS,video Size And Quality Per The Bitrate While Playing A Live Stream?

Jul 30, 2010

So far , I only found tutorials on control these attributes while publishing the stream

View 15 Replies

Media Server :: Hosting Files On A Different Web Server And Playing?

Jul 22, 2009

Is it possible to host my /media/ directory on a different server (that has more space) and have FMS Link to it to player VOD ?

View 1 Replies

Media Server :: Can't Republish To The Same Live Event After Deleting The Existing Stream Files?

Dec 22, 2011

Say I got a live event called game in "C:FMSHOMEapplicationslivepkgrevents\_definst_game" and push a MBR stream for awhile and see the ".stream" files being created, everything works good.
 
However whenever I stop the stream, delete the contents and try to republish another stream to this event name never recreates the '.stream' files or stream directories.

1. Delete the files "C:FMSHOMEapplicationslivepkgrevents\_definst_gameMsadsaasa.str eam","C:FMSHOMEapplicationslivepkgrevents\_definst_gameMsadsaasa .stream".

2. Delete all the stream directories - "C:FMSHOMEapplicationslivepkgrstreams\_definst_game1", "C:FMSHOMEapplicationslivepkgrstreams\_definst_game2".
 
Is this normal behavior or is there a default waiting peroid before reusing an event name? Should I only publish to a liveevent name once?

View 2 Replies

Media Server :: FMS4.5 Live Stream With Multiple Video Files As Single Source?

Jan 27, 2012

I am using Flash Media server 4.5 and i read the tutorial if i want to stream the live feed, i may need to use the media live encoder.
but what i found in media encoder is i have to manually setup everything and it only support camera devices. But in my case i have multiple video files keep received from another program and place it on file system (server),my goal is use the Flash Media server to perform a live boardcasting with these video file one by one. That means when client watching a live streaming, they will not notice the server is playing mov1, then mov2, then mov3, then mov4... and so on.
 
You can imagine i am trying to boardcast a live footage say for 60sec, but the video file will not recorded entirely after 60sec, instead for every 10sec i will save a new video file, so that when client watching the live by HLS [URL]when the time reach to 10sec, a mov1 video file available and FMS should boardcast this video on live123.when the time reach to 20sec, a mov2 video file available and FMS should Immediately follow the mov1 boardcast on live123.and so on...Also can FMS dynamically create a new streaming session (invoke by code), so that when client A uploading some video files to the server, the FMS open a new streaming session only stream cilent A video files?the configuration to boardcasting like screen size, bit rate, etc should be pre-defined on the server.  [URL]

View 5 Replies

Media Server :: Playing F4v Files In FMS3.1

Feb 19, 2010

I thought that FMS3.1 supported f4v files but I cannot get mine to play.  It says it cannot find the stream specified but the file is right where all my other files are that do play fine (both flv and mp4 files).  Am I incorrect in thinking that FMS3.1 supports f4v files or do I have the wrong code? 

[Code].....

View 8 Replies

Media Server :: Error In Playing .flv Files

Mar 8, 2011

I'm new in FMS Recently, i create an application to record videos from my camera and recorded it But, when i tried to play it in an HTML, i met errors. The .flv jumps to the end when the progress is in the middle.And i tried to play in an .exe, it plays well.

View 5 Replies

Media Server :: Dynamic Stream Not Playing F4v Files

May 5, 2010

In my .smil file, if I put this line it works: <video src="sample.flv" system-bitrate="150000"/> But if I put the following line it doesn't work: <video src="mp4:sample1_150kbps.f4v" system-bitrate="150000"/> Both video files are in the webrootvod folder. I am using the sample dynamicStream.smil code, so my syntax should be right.

View 3 Replies

Media Server :: Mozilla And Internet Explorer - Playing Flv Files

Oct 28, 2010

We have one player in this player we are playing flv files. If we are opening that player in the mozilla we can view the flv file after 2 second but in the internet explorer we can see the same flv after 20 to 25 second.

View 5 Replies

Flash 3.5.3 - Breaking Change On Playing Pre-recorded Files?

Feb 1, 2010

installing Adobe FMS 3.5.3 seems to completely wipe out all our interactive applications, and I wondered if anybody else had the same experience.

Back in the happy days of 3.5.2, to add a pre-recorded file to a stream, we created the stream:

this.clientPlayStream = Stream.get (slrStreamName);

[Code]...

View 1 Replies

Media Server :: 3.5.3 Freezing / Stuttering Server Playback Of Recorded Streams

May 24, 2010

I'm using the server Stream.play() method to playback a recorded stream, it plays back fine until it hits the buffer limit (Say I set the buffer to 5 seconds, it will playback fine for 5 seconds). But then it freezes and playback is very stuttery (1 frame every 2/3 seconds). Is this a know issue? I'm using windows 2008 server. I've tried a few things to resolve this but no luck. The server is running the dev license and has no load.

View 13 Replies

As3 :: Media Server :: Limit Server Recorded Netstream Length To 10 Seconds At Client Side

Sep 19, 2010

I want to limit server recorded netstream length to 10 secs at client side using as3. How can I do that?

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved