Media Server :: Pre-buffering Multiple NetStreams?

May 21, 2009

I am running into some streaming bugs and am wondering if anyone else has come across them. Very grateful in advance for any help as I've been banging my head against this for a week now.
 
First of all, I'm finding that no matter what value I set for a NetStream's bufferTime property, the NetStream will not begin actually playing until the bufferLength property is over 2 seconds. This is not what Flash documentation says (that the default value of bufferLength is .1 seconds). Could this issue a function of the FMS configuration with my RTMP hosting account? Is it something I can resolve with my asc file?
 
Also: In my Actionscript 3 app, I need to pre-buffer a number of video streams so that any one of them can be triggered immediately later in the program. I do this by building an array of NetStreams (within a single NetConnection), then playing each of the streams I need to pre-buffer and immediately pausing each too. This is successfully causing them to buffer in the background, so that they're ready for immediate play when I need them. When I do this with just one NetStream, it works fine. But with more, the streams are behaving unpredictably. They are successfully buffering, but when I need to actually play them and I go to unpause them (Netstream.resume), the NetStreams are generally NOT playing back correctly. Their behavior is not consistent, and they mostly play with no video, or no audio OR video. The one exception is the FIRST NetStream that I started pre-buffering, which is the only one that's consistently playing back fine with its audio and video. Again, if I unpause any of the other NetStreams, they play back with just audio, or not at all.

View 2 Replies


Similar Posts:


Media Server :: Is There Limit On Concurrent Netstreams

Oct 11, 2010

Can I play two flv from FMS at the same time with actionscript?

View 1 Replies

Media Server :: RMI Vs NetStreams For Text Chat

Sep 17, 2011

I am wondering if we should use RMI or NetStreams for our text chat.A few things should be considered, as we have different scenarios that could happen :
 
- Imagine a 2-way text chat, with 2 people connected via RTMFP to the FMES server. Would text chat with RTMFP NetStreams be more appropriate than RMI?
- Imagine a 2-way text chat, 1 person connected via RTMP and the other via RTMFP, would the text chat be better over RMI or over RTMP NetStreams?
- We need to consider that video/audio are also available, and we use either RTMP or RTMFP NetStreams (depending on the protocol the users connected to the server with).

View 1 Replies

Media Server :: Record Audio From Separate Netstreams?

Oct 27, 2009

I have two audio streams on the same client.i need to record both streams in a single flv file.can this be done?the below stub is for visual purposes.
 
stream0 = new NetStream();
stream0.publish("pub0");
stream0.attachAudio(mic0);

[code]....

View 1 Replies

Media Server :: 3.5 Buffering Too Much

Jul 14, 2009

i setup the development versionof fms 3.5 server on windows 2003 server and it worked great in my tests.so we bought the server and are putting it in production now.the only problem is i never "tested" large FLV files.now if i put a large 50+megabytes flv file in the server it constantly buffers on the client.Is there a setting that defines the buffer size to increase the amount of buffer data that gets sent to the client?if i use a small flv file it works flawlessly but for large files it says "buffering" every 2-5seconds on the client.the client is just opening the test page that comes with the server the server has 3000mb/s to the internet and the client has a 20mb/s connection so i don't think bandwidth is an issue...

View 1 Replies

Media Server :: Streaming Vid Skips After Buffering

May 26, 2011

When my streaming videos start they will buffer and begin to play as normal. However, as soon as the vid starts buffering again a problem arises. Basically what is happening is that Flash is buffering the video to a certain point, but instead of resuming playback from the point where the vid paused it now jumps instantly to the end of the newly buffered area without playing the vid portion in between. Which essentially means that it skips merrily through the video and never stops buffering. That said i'd prefer to get to the root of the prob, particularly if this is a codec/keyframe issue, since i could then re-export the vids appropriately.

View 2 Replies

Media Server :: FMS Static HD Video Playback Buffering

May 18, 2010

I have downloaded and installed the Flash Media Server (FMS) trial version. Just purchased the software today and waiting for the activation serial number. I created a video gallery - [URL]. My goal is for these videos to stream just like vimeo. I am only using HD 1280 x 720 video. All videos are between 25 to 125 MB in size, originally .mov files converted to .flv using FFMPEG. Videos are between 30 seconds to 58 seconds in length.

I am using ColdFusion to upload and organize my videos and I have configured FMS to work with CF. The Issue is that these videos buffer the same way they did when I didn't have FMS installed. Press play, the video buffers, the video plays, then stops to buffer again. Stop and Buffer, Stop and Buffer. I can understand if there is buffering at the start of the video but not throughout. When I start the video over from the start, it has to buffer all over again!

View 2 Replies

Media Server :: FLVPlayback 2.5 Buffering State Never Ends

Jul 27, 2010

I'm using the FLVPlayback to load streaming videos from a FMS. The bug that I'm running into is with the buffering state. Several times the video will enter a buffering state that never ends. The last video event that's fired in this scenario is the BUFFERING_STATE_ENTERED. But if I seek the video on the seekbar, it's playing away.

View 3 Replies

Media Server :: File Is Stuck On Buffering On Playout?

May 31, 2011

I followed the instructions located here:when i load the player and put the correct rtmp link, the video is stuck in bufferingI also tried the strobe media playback  and getting the same issue.I also tried playing the sample.flv file located in the vod/media directory and getting the same problem

View 2 Replies

Media Server :: Buffering Process Bar Not Working With FMS Streaming?

Feb 10, 2012

I am developing a video player that is almost done, but there is a problem in Bufferbar

I am using a flvplayback for video playing when I use http path for video it show bufferbar working perfectly like below:
 
Code:
_flvPlayback.source = "http://flash.projectstatus.in/fmsvid/sample.flv";
 
If I use rtmp path from the fms the bufferbar does not work it shows already full like below:
 
Code:
_flvPlayback.source = "rtmp://75.126.73.138/vod/flv:sample.flv";
 
In both case video playing perfectly. Only problem regarding buffering bar.

View 2 Replies

Media Server :: Dynamic Buffering Based On Bandwidth And Datarate?

Jul 13, 2010

I'm trying to determine an initial value for NetStream.bufferTime based on the client's calculated bandwidth and the video's bitrate.As far as I can tell you can't do this, because you must have an initial buffer set BEFORE you call NetStream.play() (or use the default 2 seconds) and FMS does not call NetStream.onMetaData, where one would normally find the videodatarate, until after NetStream.play() is called.Even if you modify NetStream.bufferTime during the onMetaData call back it doesn't effect when the video starts playing or when the NetStatus event registers "NetStatus.Buffer.Full".
 
How do I find the Video Data Rate BEFORE I call NetStream.play?How do how do I reset the initial bufferTime before acctual play back begins and the NetStatus event fires with "NetStatus.Buffer.Full"

View 1 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 :: NetStream.time Jumping Ahead When Buffering Playlists?

Dec 14, 2009

I am streaming a playlist of multiple mp4 video files with flash 9 and FMS 3 and have been experiencing strange netStream.time values when the buffering is set for an extra long time on slow connections. When I have my buffer set to something like 60 seconds I'll start experiancing this problem:
 
the NetStream.time value will return 0 on progress events while buffering, but the moment the buffer is full, instead of reading 0,1,2 +++ it jumps to a really high value, in this case 53.5 seconds, and sticks there until the video (which seems to play correctly from the beginning) catches up to that time and then the netStream.time starts incrementing as it should.
 
Another relevant fact is that the time the netStream.time gets stuck to always corresponds to the end/begining point between two streams in the playlist. For whatever reason this usually seems to be the third video in the playlist. If the connection is relatively fast and the buffer is set to a smaller value,

View 1 Replies

Media Server :: Have Multiple FMS Installation Running On 1 Linux Server?

Jan 19, 2011

Is it possible to have multiple FMS installation running on 1 linux server?This mean that each fmsadmin, fmsmaster, fmsedge, fmscore will run under a specific user. (not vhosts of a single FMS install)How will this impact the performance of the other FMS instances in case there are more of them running on the same server?

View 2 Replies

Media Server :: Create Multiple FMS Applications?

Aug 14, 2009

Another question re setting up FMS to do multiple vid conferences:I have 3 or 4 video feeds being generated from different locations, and those 3 or 4 video feeds are going to be consumed by others.  Can I do that through the same NetConnection/FMS application?  Or do I need to create multiple FMS applications (i.e. one for each feed)?  I currently have one feed on a NetConnection, but I'm looking to expand it.

View 2 Replies

Media Server :: Stream From Multiple Folders In VOD

Oct 1, 2009

I want to create folders inside of VOD that I can use to store FLV in and them stream them to webpage.When I do this the webpage displays a white screen.It doesn't seem to find the FLV.

View 12 Replies

Media Server :: Keep Multiple People In Sync From FMS?

Dec 11, 2009

I am trying to create a Flex application with a shared viewing experience for users watching video.  Specifically, there are a group of users in a virtual room, and one of them is the remote holder.  One approach is to have everyone have a video player, and then use our own protocol sent among the different Flash player instances to make sure people are in sync (we have our chat routed over XMPP for the people in the room).

However, we were wondering if there was a simpler way to do it using Flash Media Server.  Is it possible to create a synchronized viewing experience in FMS where everyone is always at the same point in the video?  And is it possible for 1 person to then have control over that stream (e.g. pause, play, seek, etc.) for everyone connected to that stream?

View 3 Replies

Media Server :: Multiple NetStream Creation?

Mar 23, 2010

I have an FMIS 3.5 app where I am attempting to publish multiple streams to an edge server.I have found that if I loop through my list of streams and attempt to publish to the edge server (i.e. as fast as possible), the publishing will fail  They succeed if I have some delay between the publish calls.

View 4 Replies

Media Server - Multiple Stream Bit Rates And FMS?

Apr 1, 2010

I was told by my FMS host that even though FMEL can create multiple streams at different bit rates I could not send them.  I need to use a different entry point for every stream which meant a different encoding machine for each rate.

View 1 Replies

Media Server :: 3.5 - Take Multiple Live Streams?

Jun 17, 2010

Can Flash Media Server 3.5 do the following?. Can it take multiple live streams?. Is it possible to control the ip streams - by using API's in to the Media Servers?.

View 4 Replies

Media Server :: Multiple IP Camera Streaming With FME 2.5?

Jul 29, 2010

I can stream live 1 Axis  IP camera with FME 2.5. How can I stream multiple IP cameras with FME 2.5?.

View 3 Replies

Media Server :: Multiple SWFs On A Page?

Nov 24, 2010

Is it common to have issues when there are more than one Recording SWF on an html page?I have 4 SWFs on a page, each with the capability to record, They all use the same FMS application but record and playback different FLV files.Could there be an issue with the NC being shared and then causing grief?

View 2 Replies

Media Server :: Broadcast To Multiple Locations?

Jan 28, 2011

Trying to output to multiple servers - tried launching multiple window of FMLE-but get an error message with the second broadcast attempt.

View 1 Replies

Media Server :: Setting Up Multiple Live Sources With FMS

Jun 16, 2009

I'm struggling setting up 4 live audio sources with fms 3.5. I have 4 streams input from our studios into 1 encoder server. From here I need to pass it to the internet via 4 FMS 3.5 servers. I do not want to have 4 * 4 encoding sessions on the encoder in order to service the 4 FMS servers. Is there any way to pull the streams from the encoders? I have also tried configuring explicit connections using 1 server as an origin server and 3 as edge servers but being a live stream the load and connections seem to get passed to the origin server which will eventually not handle the load. I've looked through the application.xml server settings but cannot seem to see any noticeable settings?

View 6 Replies

Media Server :: Listen To Multiple Live Streams At Once?

Sep 7, 2009

I am developing an application where I need musicians to play together and I want to have an audience listen to it. I have created my publisher clients and they can create the streams, but now I want to take those multiple streams and combine them so that you can hear the guitar, singer, etc. all together.

View 8 Replies

Flash :: Server - Media Encoder Multiple Sources

Feb 5, 2010

Can Flash Media Encoder handle several video sources and live srteam them all at the same time? We want to stream a few over the air broadcast sources using Flash Media Server v3.0. Is it possible to install several TV tuner cards into a PC and have Media Encoder live steam each of them at the same time? If not, can several copies of the software run on the same machine (each with it's own video source live streaming)?

View 3 Replies

Media Server :: Make A Application For Multiple Videoconferencing?

Feb 10, 2010

I trying to make a application for multiple videoconferencing, in which more than one peaple can join. During my analysis I have got one issue:  Suppose four users are making a conference meeting and all of them are publishing their respective videos. All the video are displayed on on each screen. But due to limited connection and bandwidth I am making connection or viewing each publisher one at a time in every 15 sec, which make still image. but I want to clear the video of the respective person who has either logged out or stop publishing. I have tried the netstream event i.e netstream.unPublishNotify but it works only when I have made connection for viewing. But sometimes it happens that I have no connection for viewing for that perticular person as per the timer. so I want to know who is publishing video at the time of making connection for that perticular view. How could it be possible to know whether the live stream is coming or not at the time of view.

View 1 Replies

Media Server :: Allow The User To Record Multiple Flvs?

Feb 17, 2010

I'm having a problem with Flash Media Interactive Server 3.5. I have a simple application setup. I would like to simply to be allow the user to record multiple flvs. This is just because we want them to record, preview and either publish or try again.

[Code]...

to start and stop recording. The problem I'm having is that while the first record seems to go ok, the second gets garbled. The video starts about 70% through, and then just plays a small portion. I've tried meta injection to fix it up, but it's just not working. I'm thinking maybe I have to reset the stream or something before starting a record again, but I don't know how.

View 18 Replies

Media Server :: Multiple Song Playing At The Same Time

Apr 28, 2010

I have developed a Player where I am using FMS to play MP3 files, it works great in normal scenario but when user keep on clicking new songs from Song List (List Component) then the player stated playing all songs. Which It should not do. Is there a way that we can unload previous song before loading new song.

View 5 Replies

Media Server :: Call AddEventListener Multiple Times?

Feb 10, 2011

camera.addEventListener( ActivityEvent.ACTIVITY, onTriggerRecordStart );

Or do I make sure that the above script is only called once?
 
UPDATE
 
Can I register two different functions to the same event?

View 8 Replies







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