Media Server :: Securing Publishing To FMS 3?
Dec 21, 2009
I have a FMS 3 in on a linux server and I have a ViewCast Niagara Pro II encoder. I can publish to the FMS 3 no problem but how to I limit who can publish to the server, because currently I can use the free Adobe Media Encoder to connect to the server and publish with no authorization which tells me anybody could do the same if they just input the rtmp url and feed name.
View 29 Replies
Similar Posts:
Feb 28, 2012
I am having an application where I stream videos through RTMP using FMS and the sample vod application. I am securing RTMP streams using domain/swf security on server side. I need to stream videos to iOS devices and secure the videos. How can I do that?
View 1 Replies
Jul 20, 2009
what does Multipoint Publishing mean?
View 11 Replies
Oct 28, 2009
I use the Windows MEdia Server, but i´d like to migration to FMS. I set a login and passwrod on WMS to Encoder to use. Using FMS, how can i do to set a login and/or password for use by Flash Media Encoder?
View 9 Replies
Jun 14, 2009
I`m using FMIS 3.5.2 (windows xp) and was trying to make this example working URL...When my flash media live encoder connects to 'livestreams/ localnews' publishing point i got in logs:CSAAACPI is connectedSending error message: Method not found (releaseStream).Sending error message: Method not found (FCPublish).localnews is publishing into application livestreams/_definst_Republishing the stream into "livestreams/anotherinstance"Stream Status: NetStream.Publish.StartThe stream is now publishing.When i`m trying to connect to the "livestreams/localnews" with flash media player i can see the stream from my webcam but when i`m trying to connect to republished stream 'livestreams/anotherinstance' i got nothing.Player says "loading..." and shows nothing.
View 5 Replies
Oct 23, 2011
I have followed this link to republish my local stream to other local application instance : [URL]
i have used this script code into main.asc and it is working :
// Called when the client publishes
application.onPublish = function(client, myStream) {
trace(myStream.name + " is publishing into application " + application.name);
[Code].....
View 9 Replies
Jan 10, 2011
There's just one thing I still don't get about the sample app: As a client, you always have to check the checkboxes (send/receive Audio/Video) in order to define who is sending/receiving what kind of stream. How is it possible to manage the feeds from the FMS server? So the clients can't set the checkboxes, but the server determines who is sending and who is receiving?
View 2 Replies
Mar 24, 2011
I'm currently having an issue with FMS4 developer edition on both Linux (x64) and Windows XP (x86).When I stream a webcam using ns.publish("foobar", "live") I can watch the live stream on another client, however when i use ns.publish("foobar", "record"); neither broadcasting nor recording works.Using the "live" parameter the client appears in the log files and in the administration console as "publishing", using "record" the client appears as "idle".Is there anything I need to configure besides LIVE_DIR in fms.ini?
Is this a restriction in the developer edition? Here is the relevant part of the code (condensed):
--------------------------------------------------------------------
var camLive:Camera = Camera.getCamera();
var nc:NetConnection = new NetConnection();[code]............
View 1 Replies
Oct 10, 2011
1) I currently have multi point publishing set up to rebroadcast a stream between several servers. I'm running into an issue where even if it's a live stream, when a client connects, it starts from the beginning and you have to seek to the very end for it to go live.I've attached my main.asc file
application.onAppStart = function()
{
trace("Application name: " + application.name);[code]........
2) Is there any way to set up multi point publishing on Video on Demand files?
3) Say server 2 has restarted, is there anyway to force a push to that server without having to restart the feed?
View 29 Replies
Oct 2, 2009
I have justed started using Flash Media server so this could be a really easy one to answer or not even possible.I have Adobe Flash Media Live Encoder 3 publishing to Adobe Flash Media Server 3.5 which then publishes this live stream to two CDN providers. I want to publish the stream with a different name to each CDN. Anyone know howI can do this without having FMLE3 publishing a backup stream and then FMS having to process two differently named streams?I.E.FMLE publishes a stream called bobThis is then published to CDN1 as bob and I then want to publish it to CDN2 as bob2Below the main.asc for the application but it ignores the second stream name and publishes to CDN2 with bob
main.asc file
server-side actionscript[code].....
View 1 Replies
Apr 6, 2010
I learned from some previous post that the default encoding format used when you publish the camera from a Flash player is Soreson. I'm wondering whether it is possible to select to use other codec such as VP2 or H.264?
View 3 Replies
Jun 24, 2010
I am publishing screen data to FMS 3.5.3 using ffmpeg with flv. Everything is fine with 1024 x 768. When I try to publish 1600 x 1200, the connection closes and I get an entry in core.00.log:1458 (e)2631029 Bad network data; terminating conection.
View 2 Replies
Aug 15, 2010
I have made a sample application for publishing video through FMS using as3.In that I had used the same code as given in the sample provided by the adobe,
m_nc = new NetConnection("rtmpt://localhost:1935/Test");
private function onNetStatus(event:NetStatusEvent):void {
switch (event.info.code) case "NetConnection.Connect.
[code].....
View 2 Replies
Mar 21, 2011
I'm developping a FMS 4 application that read an external stream, and then, republish it in multicast:
1.- So, first of all I open a NetConnection to the remote application. And I associate it to a new Stream created in the application. Then I have the stream available in my application.
nc = new NetConnection();
nc.connect(REMOTE_APPLICATION);
nc.onStatus = function(info)
[Code].....
But, I don't know who would be the client in the registerStream method. Which reference should I add there? Is it possible in this way?
I made another different script that republish that stream in localhost using NetConnection.publish(localhost/sameapplication). It works properly. But I would like to be able of managing it in the other way.
View 2 Replies
Oct 23, 2011
I use different versions of FMS (3.0 3.5 4.0 to 4.5) to muti-point publishing?Use existing old ones for most streams, and use 4.5 for iOS apps.
The answer is Im guessing probably yes, as I was able to multi-point publish to different big company's new FMS (4?) from one of our FMS 3.0 machine. But just to make sure before I make investment? Also Air 3 sdk based iOS app now can connect to FMS 4.5 and play h264 live video stream on ios devices over the appstore approved http-live-streaming protocol right? Just to be clear
View 2 Replies
Dec 7, 2011
I'm trying to use Flash Media Server (on Amazon) to read in a video feed from a user's webcam, process it via my own executable, and return processed data (not video) to the user. For simplicity, let's say my executable finds the darkest pixel in the image and returns its coordinates, and I want the client to draw a cross at this location.
The client-side is working fine. It can send the video stream, and receive vertex data to draw. The server is half-working. It can accept connections, and send fake vertex data to the client. However I can't find any way to access the webcam stream.
Ideally, I would pass each frame from the stream into my executable for processing, with no saving to disk (or perhaps minimal saving to disk as a cache for P-frames). I've got the impression that this is impossible though, so another acceptable solution is to save the stream (live) to disk, and read it (live) from my executable.
Also, somewhat relatedly, I would like to secure the video feed as much as possible. Eventually I'll use SSL to secure it in transit, but for now I have the more serious problem of FMS sharing every stream it recieves. I'm sure there's an option to disable this somewhere, but I just can't find it.
View 10 Replies
Oct 7, 2009
: Flash Media Interactive Server. Hi, Im curious if we can publish on multiple sites, I have 5 websites all password protected for members, and I want all 5 members areas to be able to view my live video as I publish it. So can I embed the flash player on all 5 sites and have it pick up the same live feed. Also was wondering if interactive server supports or has a chat box, so students can type questions as I am explaining things live. And One last question Can I stream my video from different computers or can I only use one ( the one I register it on ) I want other teachers to be able to use thier webcams from there homes and publish live videos as I do on my sites. ( At different times of course )
View 1 Replies
Sep 15, 2010
I'm having a reliability problem with publishing live, h.264 streams from FFMPEG (using the rtmp publish ability now built into FFMPEG, where I can set an rtmp address as the output).After a random period of time (usually between an hour and several hours), the default "live" application in FMS 4 (or 3.5) eventually drops the connection from the FFMPEG encoder. This is what appears in the log for the application:"Dropping application (live/_definst_) message. Clients not allowed to broadcast message."After googling the error, I discovered that people have been reporting this error for several years, but there has not been a single response from any FMS experts or Adobe about what causes the error.
View 6 Replies
Dec 2, 2011
I'm trying to create a simple application that streams the webcam to FMS 4.5 (running on a Windows 7 machine), and then displays the published stream locally. Here's my code:
import flash.net.NetStream;
import flash.media.Video;
import fl.video.FLVPlayback;
import flash.events.NetStatusEvent;
[Code]...
All traces in the event handlers show the NetConnection connecting successfully, and the netstream publishing successfully. However, I get no video output from this. I've confirmed this using the sample video player in FMS 4.5 as well. There is also a weird traffic pattern reported in the FMS Admin console.There is some traffic (~4K) when the NetStream first publishes, but after that there is no activity.
View 1 Replies
Mar 24, 2011
I'm currently having an issue with FMS4 developer edition on both Linux (x64) and Windows XP (x86). When I stream a webcam using ns. publish ("foobar", "live") I can watch the live stream on another client, however when i use ns.publish("foobar", "record"); neither broadcasting nor recording works. Using the "live" parameter the client appears in the log files and in the administration console as "publishing", using "record" the client appears as "idle". [code]
-Is there anything I need to configure besides LIVE_DIR in fms.ini?
-Is this a restriction in the developer edition?
-Is there something else I'm missing?
View 1 Replies
Jul 5, 2010
What is best way to set up my application. I currently have a working app but the work flow doesn't feel right at all. Here are the basic steps involved:
[Code]...
View 1 Replies
Sep 1, 2010
I am facing a strange issue with a pair of FMIS servers set up with Multipoint Publishing. Configuration is as follows:
Encoder >>>> FMIS1 >>>> FMIS2
When freshly started, I am able to view live streams from both servers, however, periodically, FMIS2 unpublishes the streams as seen in the log below. When this happens lives streams are accessible from FMIS1 but not FMIS2. In order to resume live streams on FMIS2, FMIS1 must be restarted.
Logs:
2010-09-01 14:31:00 9244 (s)2641173 NGA_1 is unpublishing -
2010-09-01 14:31:00 9244 (s)2641173 FTV_1 is unpublishing -
2010-09-01 14:31:00 9244 (s)2641173 BBCWN_1 is unpublishing -
2010-09-01 14:31:00 9244 (s)2641173 CTI_1 is unpublishing -
2010-09-01 14:31:00 9244 (s)2641173 CNN_1 is unpublishing -
.....
View 7 Replies
Oct 4, 2010
I've managed to publish video now: ns.attachAudio (mic);ns.attachCamera (cam);ns.publish ("name","record"); But without time information.
View 22 Replies
Apr 28, 2011
i have a website like ustream, where user can register and create live channels and publish live video using FMLE.
Now i want to check wether a particular channel is online or offline. I have stream name for particular channel. My website is coded in PHP. I have tried using getLiveStreamStats function, it works fine where the XML file is not heavy. I mean number of subscribers are less. Then i can just check the Publisher Tag. if it exists that means stream video is live, else not.
But problem arrives when the number of subscribers are high. The XML file do not loads in PHP, and it takes too much time to load the page.
what can be done to just check if the xml file has publisher tag. and display if the stream is live or not
View 12 Replies
Jan 3, 2012
I want to retrieve the list of live stream name.
View 1 Replies
Mar 10, 2012
I am Trying to Apply some information Like text and An Image as an overlay to create a overlay effect as lice a security camera with time and date on the video along with a png based Logo.
I can record VIDEO Using Flex and FMS or any other Media Server. But I want to save a modified version of the stream being uploaded.
View 2 Replies
Aug 3, 2009
The auth_addin works as expected when using the Flash Media Live encoder requiring a username and password before publishing a stream.However, tools like Wirecast and even the sample broadcasting SWF that comes in the FMS Introduction page can publish a stream without providing any credentials!
View 1 Replies
Nov 10, 2009
Can Adobe Flash Media Streaming Server 3.5 run on AMD Athlon Dual Sock Quad Core?I just requested a Dell server to be added to our farm to run as a Media Server and to my surprise, while reading the requirements for FMS it states the following: 3.2GHz Intel® Pentium® 4 processor (dual Intel Xeon® or faster recommended)
View 2 Replies
Jan 13, 2010
I'm trying to troubleshoot a Flash Media Server working with a little video playback application I wrote a few years ago that has suddenly stopped working.I'm using CS3/Actionscript 3.My app uses the FLVPlayback Component, and was working well last time I checked. I recevied a report that the videos stopped working, and have been looking into it.I figured I'd add a bunch of event listeners to the FLVPlayback's ncMgr.netConnection so I could get debug info on things like io errors, net status, etc.The problem I'm running into is that the netConnection is null when I set it to anything on my Flash Media Server, and adding any event listeners to this netConnection throws errors.Here's what I've tried so far:
Playback of a local FLV file works fine.In the FLVPlayback documentation, I found an example and stole the URL of the stream they were using in the example, and that works fine, although it is an HTTP protocol stream rather than RTMP.Any attempt to access FLV files on my Media Server, which has worked fine in the past, basically cause the FLVPlayback object to sit and hang in "buffering" mode and never progresses beyond this point.The netConnection object in this case is null.Here's my code:[code]........
Again the purpose of this is to troubleshoot the video streaming from the Flash Media Server, and it seems like there is no netconnection to the server being created.Does this mean that the server is not working, or is there a problem with the way I'm trying to access the content on the server?This was all working fine before, and I have set up the server-side application .ASC files and such to allow things to work fine on the server end.
View 6 Replies
Jan 17, 2010
How can we automatically configure edge from the admin console of flash media interactive server?
View 1 Replies