Media Server :: Stream.play (live_from_FMLE, -1, 4500, True) Got No NetStream.Play.Start?

Nov 5, 2010

I got a bunch of live stream from FMLE, say: "FMLE_channel1", "FMLE_channel2", "FMLE_channel3". And then on the server side, I created several corresponding republished stream called "channel1", "channel2", "channel3".

On periodical basis, we call Stream.get("channel1").play("FMLE_channel1", -1, 10, true) every 10 seconds. Similar things were done on the second channel & third channel.Soon after the above Stream.get("channel1").play() call, I should get the following events in sequence:info :NetStream.Unpublish.Successinfo :NetStream.Publish.Startinfo :NetStream.Play.Resetinfo :NetStream.Play.Start In the above case all are happy. Clients can view channel1, channel2, channel3 well.But then after a while, one of the three channels, in most case it would be channel1, will not be viewable.

With the server trace info, I found that after the Stream.get("channel1").play() call, only the following two events exists:

info :NetStream.Unpublish.Successinfo :NetStream.Publish.Starti.e. I was missing the play.reset and play.start event.I further checked and confirmed that the FMLE was publishing all three channels fine to the server. I was able to view the "FMLE_channel1" from flash clients, but not the republished "channel1". the version is FMS 3.5.0.

View 3 Replies


Similar Posts:


Media Server :: NetStream.play(streamName, -1);  Plays Recorded Stream?

Sep 16, 2011

NetStream.play(streamName, -1); This seems to be working wrong.if I have recorded an flv on server using FMS and FMLE with  only audio with name "myaudio" and then after if I try to play a live  stream using NetStream.play("myaudio", -1) then it plays the recorded  stream. I believe that documentation says that it should start a live  stream instead of playing recorded stream as the second argument is -1.  Is this a bug in NetStream.play method?

View 3 Replies

Media Server :: Client Side Playlist With NetStream.play Using Start Offset Causing Jerky Cuts

Dec 1, 2009

I have a series of mp4 videos (H.236 @ 22 fps) streaming from an akamai FMS serve via RTMP protocol in flash player 9+ with AS 3.My goal is to create client side playlists that smoothly switch from one stream to another. I am creating these playlists using a series of netStream. play (filename,start,len) methods. If I don't use an offset for the start parameter, then the stream switches smoothly from one video to the next with not noticeable jump or jerkiness. However if I introduce a start offset, say a few seconds in, I start to see a quick little hiccup or pause between the seams as it switches from one playlist stream to the next.

View 1 Replies

Media Server :: Access Log- Stream Play & Stream Stop?

May 24, 2010

I have recently installed FMIS 3.5.3. In checking the access logs I find data in both logs that display the same stream stop and stream play time .I'm not sure why the time is the same (00:19:27 example below). Videos play fine when testing from work (T3 connection). However, occasionally a very slight hesitation when playing video from home (I have cable connection). [code]...

View 4 Replies

Media Server :: NetStream.Play.InsufficientBW When Streaming Server Side Playlist?

Sep 23, 2010

I am streaming pre recorded audio files (mp4) to an AIR client. I have tried two different solutions,
streaming the file directly with the NetStream.play("mp4:xxxxx.m4a") and creating a server side playlist, adding the same sound clip and then streaming the playlist. The problem is, when streaming the playlist i get a few NetStream.Play.InsufficientBW, this does not happen when streaming the file direct. Both solutions uses bufferTime=1.0
 
I would like to use a server side playlist to implement a simple key solution so that the client dont know the full path to the file, but instead sends a key to a custom server side function that looks up the file path and creates a stream for the client.

View 1 Replies

Media Server :: NetStream.Play.StreamNotFound Not Dispatching?

Nov 3, 2009

I'm recording audio using FMIS, the file is being saved out as a FLV file and I am able to play it back. Eventually that file may be deleted after some time and I would like to notify the user if the file is no longer available. I was expecting to see NetStream.Play.StreamNotFound after deleting the file on the server but I'm not getting that message. Instead I get:
 
-->      NetStream.Play.Reset-->     NetStream.Play.StartAnd nothing plays which is expected since the file is deleted, but I dont get the right message. I'm calling the file like so:ns.play ("flv:file_to_stream");

View 7 Replies

Media Server :: How To Avoid NetStream.Play.Stop

Jun 15, 2010

I'm streaming mp3 on flash media server 3.5 on  linux version, and very often come accross with that problem, when the buffer.length become 0 on client side, the streaming will stop with NetStream.Play.Stop event, and will not be continued. I think this case it should wait always till the data arrives and never should stopping. Some more info : I tested on applications/live folder, and the mp3 files are created dynamically during the playing, and the creation speed is almost the same like the playing speed, so those are not fix files.

View 2 Replies

Media Server :: NetStream.Play.StreamNotFound Not Working?

Aug 3, 2011

I would like to have the possibility to detect when NetStream is not working (i.e. the name used in initialization can't be found on the server side). The StreamNotFound doesn't work at all. I've read that it's the fault of the Flash Media Server, which automaticaly creates new stream, if it cannot be found (of course it's an empty stream - what is wrong from my point of view). Is it true? If yes, can I disable it on the server side, so I could easily detect if the stream name is correct?

View 8 Replies

Media Server :: Netstream Play And Publish Simultaneoulsy?

Nov 15, 2011

i've created a sub-folder called dvr under fms 4.0 applications. i made a test of playing a video named sample.flv then at the same time i publish it to the same fms 4.0 server with a different video name: "mergedVideo".the asc at the fms server as following:

application.onAppStart = function()
{
trace("app start : " + application.name);

[code]...

View 1 Replies

Media Server :: Got NetStream.play.stop Before It Reaches End Of Playback

May 23, 2011

i have application that streams videos from fms .i try to play video of 240 seconds, but when playback reaches 180 seconds i got NetStream. play. stop . it happens regularly at the same time.why does it happen? is it encoding of the video??

View 4 Replies

Media Server :: Get Stream Name On Play?

Nov 17, 2009

Using SSAS on FMS3.5, is there a way to get the stream name of a play event?  In my case, I am trying to run additional steps when a stream is played and I need the stream name to do so.

View 3 Replies

Media Server :: Stream.play On Server Side Makes Video Choppy?

Apr 30, 2010

I have an *.flv file on a FMS. When I play it on the client side the video plays just fine, but when I call Stream.play(filename, 0, -1, false) on the server side the video turns out really choppy.I both cases I use NetConnection to connect to an rtmp and NetStream to play the stream, but in one case I connect to a stream and request the server to play my file on that stream. Apparently that doesn't work with files? It works just fine for live streams.

View 20 Replies

Media Server :: Play Stream In A HTML5 Video Tag?

Jun 21, 2011

I use Flash Media Server 4 and Flash Media Live Encoder 3.2 for a strem rtmp.
 
I set FMS url to rtmp:localhost/livepkgr and I set stream name to :livestream.m3u8
 
 I started FMS and I'd want to play my stream in a HTML5 video tag.
 
I have not changed FMS4 parameter, and I'd want to insert the src attribute in video tag.

View 8 Replies

Media Server :: NetStream.Play.Stop And Complete Fired Early On RTMPE Streams

Oct 20, 2011

I am experiencing an issue with playback on RTMPE streams. after investigation it seems that the FMS server is firing the NetStream.Play.Complete message at random points, indicating that a stream has ended. This is happening and random points during the stream,  not even close to the end.[code]As you can see roughly 17mins into playback...although the stream is 1 hour 24mins long.I have tested this numerous times, and each time it is at a different point in the stream.Intermittently the NetStream.Play.InsufficientBW warning is being fired prior to NetStream.Play.Stop.I am using a player built on OSMF 1.5

View 1 Replies

Media Server :: Stream Play And Origin Edge Setup

Apr 28, 2010

I'm stuck trying to get a Stream.play() call on a recorded video file (.flv) to translate from origin to edge servers. Don't even know if it's possible. If I call Stream.play() on a server, and connect a viewer directly to that server, the viewer sees the stream play. If I call Stream.play() on an origin server and connect a viewer to edge servers the stream does not play.

Is it possible to configure in any way that the play() call would propagate to edge servers? According to FMS 3.5 docs on the Stream class, the following is the case:
"When you call Stream.play()on the server, the server becomes the publisher."
See [URL].

If that server becomes a publisher and lets say it was an origin server on a CDN, shouldn't the other machines in the configuration receive the published stream? Somehow when you publish a live stream to an origin server it makes its way to edge servers. Is this analogy not relevant to the scenario wherein you call Stream.play() on a recorded file?

View 4 Replies

Media Server :: Play Live Video Stream With Flex?

Sep 23, 2010

I'm trying to get Flex Builder 3 to play a live video stream with Flash Media Server and Flash Live Media Encoder.
 
I'm able to stream pre-recrorded (vod) flvs in flex from flash media server.
I'm able to stream live video using Flash/FMS/Flas Live Media Encoder, but not with Flex.
 
This code streams pre-recorded Video on Demand flvs, but not live streams:
If I change source to "rtmp://localhost/live/livesream.flv, I get nothing.
 
<?xml version="1.0"?><!-- controlsvideodisplayVideoDisplayFMS.mxml --><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:HBox>        <mx:Label text="RTMP FMS 2.0"/>        <mx:VideoDisplay autoBandWidthDetection="false"             source="rtmp://localhost/vod/Legend.flv"/>    </mx:HBox></mx:Application>

View 3 Replies

Media Server :: Creating One Way (A Publish B Play) Stream Through RTMFP?

Aug 17, 2011

I've noticed an issue while creating one way (A publish B play) stream through RTMFP. When I try to create connection between computers behind the same NAT (same IP) stream playing is not fired at all, but on the other hand the same code works on remote computers (different IPs).This issue arose after releasing final release of Flash Player, in a beta release everything works fine.We checked NAT settings and there are no differences for this cases.

View 3 Replies

Media Server :: FMS Serverscript Stream.play Not Working Because Of FMLE?

Feb 23, 2012

i was modified the main.asc script in livepkgr, it used to call s.play(streamObj.name), which i assume this is the code it play the stream from FMLE to s.play("FileName") , which is a flv video file in my application. unfortunately when i start the FMLE stream to the FMS and watch the stream with the FMS Sample Video player, i was expecting to see the video content from the flv, but instead the camera footage in playing on the player.

i am very confusing now, i thought the s.play the only code to control what should be playing in application. or when FMLE is connected to server, the server must play the footage from FMLE by some hidden code, no matter what s.play wanna to play?

View 2 Replies

Media Server :: Start Buffering And Fetch Meta Without .play()?

Nov 22, 2010

I want to get the meta from an FMS server and start buffering (really I just want the first frame).  Is there any way to do this other than calling play() and waiting for meta to call pause?

View 2 Replies

Media Server :: Recorded / Post Processed Stream Won't Play Until Restarted

Apr 6, 2012

I'm having a very frustrating problem with FMS. A stream recorded on the server-side won't play until I restart the server.

The user flow I'm currently working with is:

1. record webcam stream

2. close the stream

3. call FMS function to post process the stream

4. FMS joins the recorded webcam stream with two pre-recorded videos and stores as a new stream
 
Then, knowing the new stream name, I'm trying to play it. However, I'm always seeing its last frame and it doesn't play. Surprisingly, restarting the server and re-connecting to it helps, then I can play the stream.
 
So I wonder if (server-side):

var stream = Stream.get("streamName");
stream.record();
stream.play(...);
stream.play(...);
stream.play(...);

View 1 Replies

Flex :: Use Flash Player To Play Video Stream From Other Media Server(rather Than FMS)?

Oct 10, 2010

is it possible to play video stream from non-adobe(or homebrew server), in the newest flash player(10).It looks like the VideoPlayer only plays the stream from FMS? Is it the business model of Adobe?

View 2 Replies

Media Server :: Stale Image From Earlier Playback After Close The Stream And Play Another Name

Jul 8, 2010

I don't think there is much to add to the subject. It is a bug, anyhow. Let's say I am playing content from publisher which is displayed in a video. I then close the stream, and issue a play call for content B on this same stream object. If publisher B is slow enough (no new data arrives for a short while), I manage to catch a glimpse of OLD UNRELATED content from publisher A! Why is this, and is there anything I can do about it? By the way Video.clear is broken in Flash Player 10, and that's public knowledge. However, I am not sure the clear method alleviates the problem. Even if you clear the video, the stale data appears afterwards anyway.

View 1 Replies

Media Server :: Client Is Not Able Play Back The Live Stream From The FMS(Error 1009)?

Jul 13, 2011

I am publishing video content to FMS with my program to livepkgr application. After i start publishing the vidoe content, files like .bootstrap, .conrol, .f4f and .meta  are gettign created inside the livepkgr folder's my stream folder. But when i try to playback via OSMF player, the player is throwing error 1009. This happens for some few minutes. After some 4-5 minutes, the player start playing the live video content properly  (.f4f file size is not getting updated for those few 4-5 minutes)

View 2 Replies

Media Server :: Cannot Play HTTP Sample Video And Dynamic Stream On IIS Default Website

Aug 4, 2009

if I repeat this IIS topic, I couldn't find the answer to my problem any where on the internet. I installed FMS Dev 3.5 on Win 2003 Server with IIS 6.0 enabled. I don't have any issue with port 80 Listening, I used the IP address 192.168.0.21 for my web application (IIS) and 192.168.0.22 for FMS (I only have one network card and port 1935 is open under firewall). I can play the sample videos (RTMP, HTTP, and Dynamic Stream) using the Flash Media Start Screen (or from the location C: Program FilesAdobe Flash Media Server 3.5webrootindex.html) without any problem.

I then modified the IIS Default Website to look at the "webroot" folder (C: Program FilesAdobe Flash Media Server 3.5webroot). From IE, I can access the default web site by enter http://192.168.0.21/index.html. The website loads up correctly, and the RTMP video is playing perfectly. However, if I click Play Video (HTTP) or Dynamic Stream (tab), I receive "Connection Error. Please press Play to try again." I look at the log file (access.01.log) and see the error log "Session disconnect

[Code]...

View 5 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 :: Getting Lots Of "NetStream.Play.InsufficientBW" When There's Plenty Of Bandwidth?

Feb 8, 2010

We've upgraded our production servers to 3.5.3 on Windows 2008, and now I'm seeing a lot of "NetStream.Play.InsufficientBW" statuses in our client app's log  The server is streaming a very low bandwidth live video/audio stream, and the client has more than plenty of bandwidth to play it  The stream doesn't exhibit any audio drops or skipped frames, and there are no message drops on the server side  We have had clients complaining of random disconnects. Does anyone know why I might be getting this message

View 13 Replies

Media Server :: Video Complete Triggering "NetStream.Play.StreamNotFound"?

Jun 1, 2010

I'm using OSMF v.95 to handle my video playback. When my streaming videos finish, the following error is triggered:"NetStream.Play.StreamNotFound"I want to be able to re-play the videoor scrub back, but the stream is unusable after that error.I've tested  against a few different streams - here is one:

View 1 Replies

Media Server :: "NetStream.Play.InsufficientBW" Dispatched When There's Plenty Of Bandwidth?

Mar 29, 2012

I am working on the Audio-Video application having two Flash Media Server, One is Flash Media Interactive Server and another is Flash Media Streaming Server.I am publishing stream on Flash Media Streaming Server and receiving stream from Flash Media Streaming Server. Flash Media Interactive Server  publish stream to live folder "rtmp://xxx.xxx.xx.xx/live" Flash Media Streaming Server from server side code.when application.onPublish of Interactive server dispatch then the stream published by interactive server  has been republished to live of the streaming server and from there client receive stream by
making connection with live folder of Streaming server. Stream from streaming server received successfully but

View 1 Replies

ActionScript 3.0 :: Netstream.play.stream Not Found

Feb 7, 2009

I am trying to upload my demo reel. I compressed it to an FLV file, and used the import video command with the setting' "Load external video with playback component." After selecting my skin and hitting ok, I got a prompt that said "Netstream.play.stream not found." Why isn't this working?

View 2 Replies

Actionscript 3.0 :: NetStream.Play.Start Fires Multiple Times

Jul 28, 2009

I'm working on a project using a MVC design pattern where flvs are played form a xml playlist. I noticed something strange in the Output window. For the first flv the NetStatusEvent NetStream.Play.Start fires once, the second one fires twice, the third one three times....

Here is the part of the code where I load the video :

Code: Select allpublic function loadVideo(url:String):void
{
_nextBtn.mouseEnabled = true;
_playHead.x = 0;

[Code].....

View 1 Replies







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