Play video (http) works, stream video (rtmp) does not; edge server not starting

However, I think the problem is the edge server not starting.
I looked in the logs directory and found the core log, the master log.
I also found /var/log/messages.
Shouldn't there be an edge log?
I did this from the readme:
sudo ./fmsmgr server fms start
udo ./fmsmgr adminserver start

rats, hit the wrong button
here is the rest of the report
I did this
sudo ./fmsmgr server fms start
sudo ./fmsmgr adminserver start
sudo ./server start
The master.log: 
#Date: 2011-07-21
#Fields: date   time    x-pid   x-status        x-ctx   x-comment
2011-07-21      16:34:35        26286   (i)2581173      FMS detected IPv6 protocol stack!       -
2011-07-21      16:34:35        26286   (i)2581173      FMS config <NetworkingIPv6 enable=false>        -
2011-07-21      16:34:35        26286   (i)2581173      FMS running in IPv4 protocol stack mode!        -
2011-07-21      16:34:35        26286   (i)2581173      Host: bastet.cam.corp.google.com IPv4: 172.31.194.67    -
2011-07-21      16:34:35        26286   (i)2571011      Server starting...      -
2011-07-21      16:34:35        26286   (i)2581224      Edge (26306) started, arguments : -edgeports ":1935,80" -coreports "localhost:19350" -conf "/opt/adobe/fms/conf/Server.xml" -adaptor "_defaultRoot_" -name "_defaultRoot__edge1".      -
2011-07-21      16:34:35        26286   (i)2571111      Server started (/opt/adobe/fms/conf/Server.xml).        -
2011-07-21      16:34:40        26286   (i)2581226      Edge (26306) is no longer active.       -
#Date: 2011-07-21
#Fields: date   time    x-pid   x-status        x-ctx   x-comment
2011-07-21      16:36:16        26713   (i)2581173      FMS detected IPv6 protocol stack!       -
2011-07-21      16:36:16        26713   (i)2581173      FMS config <NetworkingIPv6 enable=false>        -
2011-07-21      16:36:16        26713   (i)2581173      FMS running in IPv4 protocol stack mode!        -
2011-07-21      16:36:16        26713   (i)2581173      Host: bastet.cam.corp.google.com IPv4: 172.31.194.67    -
2011-07-21      16:36:16        26713   (i)2571011      Server starting...      -
2011-07-21      16:36:16        26713   (e)2571122      Server aborted. -
The /var/log/messages output shows "Server starting ..." messages.
When I do the ps:
ps auxww | grep adobe
nobody   19178  0.0  0.0 203444 11124 pts/2    Sl   16:03   0:00 /opt/adobe/fms/fmscore -adaptor _defaultRoot_ -vhost _defaultVHost_ -app registry -inst registry -tag -console -conf /opt/adobe/fms/conf/Server.xml -name _defaultRoot_:_defaultVHost_:registry:registry:
I expected to see the fmsedge binary.
lsof doesn't show anybody listening on 1935 as I expected for an rtmp server.

Similar Messages

  • How to create encrypted HTTP Live Streaming Videos?

    Does Compressor4 have any features (or scripts that can be run post-compression) to create encrypted HTTP Live Streaming Videos?
    It works great for creating UNencrypted ones, but I need to make some encrypted ones also.

    I found it out: You have to use "New Batch From Template" and choose “HTTP Live Streaming". Then you have to create a new folder where the output goes to in the "Information" window. There is also a checkbox which instructs Compressor to create a "readme.html".
    Then a folder for every quality setting is created, where all the .ts files go to and the playlist files as well. Works like a charm, as soon as you found out how to do it.

  • I require steps to converting or having my videos in HTTP LIVE STREAMING VIDEO for my App,its a requirement by apple that i cant seem to wrap my fingers around,thank you

    i require steps to converting or having my videos in HTTP LIVE STREAMING VIDEO for my App,its a requirement by apple that i cant seem to wrap my fingers around,thank you

    Maryrhire910 I am sorry that you are facing difficulty downloading and installing Photoshop Elements 12.  Are you downloading the installation files from Download Photoshop Elements products | 13, 12, 11, 10?  If so what specific error are you receiving?

  • .rotation on Video() only works on videos smaller than 5mb. Bug, any workarounds?

    UPDATE: Found some reliable reproduction on my end.
    Shorter videos tend to rotate just fine, longer videos tend to not rotate but become parallelograms. All on one build. Is there perhaps some metadata tags I need to add to my videos?
    UPDATE: Found more reliable repro.
    .mp4 files smaller than 5mb have no problem rotating, .mp4 files over 5mb do not rotate, they only skew.
    Using standard netstream/netconnection/video setup for streaming video, any mp4 files over 5mb will not rotate when using video.rotation
    Videos larger than 5mb skew by the number of degrees you specify, but not rotate.
    Videos smaller than 5mb rotate by the number of degrees, and do not skew
    100% reproducable on my end: Win 7 x64, Flash Pro CS6 (12.0.2.529), testing on PC and several android devices of varying make/model.
    Questions:
    -Is this air for android specific?
    -Is there a workaround?
    -Does this happen on screen rotate too? (It happens when rotating the entire swf, when rotating the parent, and when rotating the parent's parent.)
    -Does this happen with older versions of Air for Android, and/or actionscript?
    OLD THREAD:
    This has been very problematic for me.
    When I try to use video.rotation = 90; in code, rather than rotating the video 90 degrees, it disappears. But this only happens sometimes when I publish. I can make zero changes, clear publish cache, and sometimes it is broken like this, sometimes it isn't and works perfectly fine. I can't figure out what is changing to make it compile differently. I've tried in all render modes (publishing to Android, so: Direct, CPU, GPU, Auto) with no changes in this specific behavior.
    I've tried putting the video inside of a movieclip, and rotating the movieclip only, and it still occurs.
    I've tried directly copy/pasting another successfully rotating item's code to video, same problem still occurs.
    I've tried re-ordering it, and putting rotation before and after x/y/w/h changes, removing x/y/w/h changes, same problem.
    Restarting my computer usually fixes the problem for 1-2 solid publishes before it starts happening again.
    The code is located towards the bottom of this post.
    I've tried changing the rotation to 45, and I figured out how the video disappears, but not why. video rotation goes from rotating the whole video, to only moving the right-most points, and creates a parallelogram.
    (Height and Width are pre-established variables, with values partaining to the overall container size, which is not always 768*432 ratio)
    video.x = Width;
    video.y=0;
    video.width = Height;
    video.height = video.width/768*432;
    video.rotation=90;
    Please tell me I am just missing something incredibly simple here, and that this is not a bug.

    i don't see a problem testing on flash pro cs6 win 7 pro 64bit using an flvplayback component and a 964 MB mp4.

  • Error playing very long Smooth Streaming videos.

    I’ve run in to an issue playing very long VOD videos. I’m running a C# Windows Phone 8.1 Universal  App. A 318 minute long VOD video plays fine but a 394 minute long one gives me a MediaFailed event with an error
    code 0xC00D36C4 when I try to play it. Same thing happens with all  streams that are longer than 394 minutes. The MediaFailed-event is thrown from a MediaElement-object. All the videos are smooth streams with Playready DRM and use the same encoding.
    Looking at the network traffic, the player does not even try to load any video or audio chunks, only the manifest, so I’m guessing the error happens when parsing the manifest document. Some sort of integer overflow
    perhaps? 
    With an older Windows Phone 8.0 C# application using an older Smooth Streaming Client SDK library the long videos will play just fine. The Smooth Streaming Client SDK is the latest, version 1.0.141016. Is there some
    known maximum length for a VOD stream on Windows Phone 8.1?

    Hello,
    The Smooth Streaming components are not supported in this forum. I would recommend that you post on the Gallery's Q & A page for the project:
    https://visualstudiogallery.msdn.microsoft.com/b837ddf3-6884-436e-aeb7-35c6151a8933
    For completeness that error equates to MF_E_UNSUPPORTED_BYTESTREAM_TYPE. This error usually occurs when the media type being offered by the bytestream is not a known type or does not match the type in the manifest. This can also happen if the content is
    protected by PlayReady and the Media Engine cannot load the dectryptor.
    Again your best bet is to post to the project's Q & A page referenced above.
    -James
    Windows SDK Technologies - Microsoft Developer Services - http://blogs.msdn.com/mediasdkstuff/

  • HT204291 When I airplay "Dish Anywhere" to my Apple TV I only get audio,no video. Other streaming videos ex Netflix is fine ?

    When I airplay "Dish Anywhere" from my IPad Air to Apple TV, I only get audio, no video. When I Airplay other streaming video(ex Netflix) everything works fine. I would appreciate any input

    Not all apps are enabled for airplay, this is up to the developer to do.

  • Firefox does not display "Server not found" for unexist. sites, rather Firefox display previous page or blank page.

    Firefox displaying regular site (address), something like: http://www.monitor.hr/, and everything is fine. Next, I write something that do not exist (site do not exist, or it is temporary out of function, etc). So, in Firefox address bar I will write something as: http://www.news-bar.hr (at this very moment, I know this site is under DOS attack, and site is not available). But my Firefox is still presenting "last correct site" ie www.montior.hr. This behaviour is wrong. Instead "last correct site", Firefox must display message "Server not found", or something simmilar.
    Same behaviour exist if I start from "blank-page". I write some "wrong address" into address bar, and after some time, page is still blank, again there is no "server not found" info.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Quicktime does not allow to change video position from streamed video

    I just wanted to watch the newest Apple event stream. For many ears I have watched them typically from Mac as they works from there perfectly.
    Now I installed quicktime for Windows (without iTunes) and I watched 34 minutes from the event. Then suddenly the sound went off from the quicktime. I tought the system sound went and I checked the volume and other player and they worked fine.
    Then I tought it was about streaming problem and I allowed it to continue to 39 minutes. Then I tought I could scroll backward to position where the sound went off. But I couldn't at all. I can drag the position slider somewhere, but it always jump back to the place where it is streaming. When I stop mouse, it jumps back to current position. So if I keep mouse cursor moving and dragging same time the slider, it moves.
    Neither I can not start a video (any video, was they a trailers or Apple event videos) and jump to the known position to continue watching.
    So to me if I would now like to watch the latest presentation, I should watch first 40 minutes again. As I am not allowed to rewind to wanted position.
    I tried this on my laptop as well and I got exactly the same problem (the scrolling).
    Is it really so that Windows Quicktime does not allow rewind/forward functions at all on quicktime videos?
    Is there tweaks to get that possibility as I do not want to watch 40 minutes and be sharp when it comes so I can continue where I left and not miss the position and never could rewind back?

    QuickTime Pro does not allow to make video capture from desktop - only from camera. How can i solve this problem?
    Use the QT X.1 Player to capture desktop video. QT 7 Pro does not  and never has had this feature which was first introduced in the QT X.0 Player.

  • Video Out Features : Streaming Video

    Asked this in my local Apple Store today - unfortunately they were no use ("we have no demo AV cables sir") so I thought I'd try on here.
    I'm keen to understand what output I can see on the video out of my iTouch if I connect it to a monitor. I fully appreciate I will be ale to see both photos and videos stored on the iTouch. However, it's not clear to me whether it is possible to watch content streamed from the web (eg. youtube) via video out. Hopefully someone can help (my Apple Store rep could only guess "it might work", "but it's streaming so maybe not", "we can't demo it, sorry").
    Thanks.

    Thanks for the responses. This has helped me a lot. It's also meant my 'pet project' is now almost possible. I've wanted, for while to be able to access 'on demand' content via the web to my TV/monitor without having to have a computer/AppleTV/etc grinding away in the background. Seems my iTouch will allow this albeit with a limit to my screen size as the resolution will be limited. Soon the BBC iPlayer will stream TV shows to iTouch (fantastic!). My bet is the BBC already have the holy grail of the SDK and iPlayer will be one of the first apps out for a UK audience.
    http://networks.silicon.com/webwatch/0,39024667,39170102,00.htm
    http://hacktheiphoneitouch.blogspot.com/2008/02/bbc-iplayer-coming-to-iphone.htm l

  • What is the best video format for streaming video in Captivate 6 for html5 output?

    I'm guessing it's h.264 mp4, but I haven't been able to get it to stream. Can you stream mp4s from Amazon S3?

    Hi Rod,
    That link is from the Captivate help file:
    You could also find this documented in the help file link:
    http://helpx.adobe.com/pdf/captivate_reference.pdf
    Look under the topic "Unsupported objects in HTML5 output".
    Thanks!

  • Toshiba Sattelitte L550D, AMD dual core processor M520, Firefox 3.6 works fine; any later version produces only server not fond for any URL; any one have a fix?

    Forgot to mention op system is Windows 7 64 bit; 4 gig memory and a 320 gig 5400 rpm (slow) SATA drive. Have tried Pale Moon with the same result although its site shows the AMD Turion II dual core processor as supported

    Yes, the question was poster from my desktop machine which is set to dual boot both windows 7 and Xp. I regularly run spybot scans but I'll try all the others you mentioned.
    Thanks

  • HT5293 XQuartz does not open -- Server not Found

    I have tried on both Chrome and Safari. Here are my results from Chrome.
    The server at xquartz.macosforge.org can't be found, because the DNS lookup failed. DNS is the network service that translates a website's name to its Internet address. This error is most often caused by having no connection to the Internet or a misconfigured network. It can also be caused by an unresponsive DNS server or a firewall preventing Google Chrome from accessing the network.
    Error code: DNS_PROBE_FINISHED_NXDOMAIN

    Back up all data.
    Unlock the Network preference pane, if necessary, by clicking the lock icon in the lower left corner and entering your password. Cllck Advanced, open the DNS tab, and change the server addresses to the following:
    8.8.8.8
    8.8.4.4
    That's Google DNS. Click OK, then Apply.
    In Safari, select
    Safari ▹ Preferences... ▹ Privacy ▹ Remove All Website Data
    and confirm. If you’re using another browser, empty the cache. Test. Any difference?
    Notes:
    1. If you lose Internet access after making the above change to your network settings, delete the Google servers in the Network preference pane, then select the TCP/IP tab and click Renew DHCP Lease. That should restore the original DNS settings; otherwise restore them yourself. Remember that you must clickApply in order for any changes to take effect.
    2. I don't use Google DNS myself, though I have tested it, and I'm not recommending it or any other DNS provider; the server addresses are offered merely for testing purposes. There may be privacy and technical issues involved in using that service, which you should investigate personally before you decide whether to keep the settings. Other public DNS services exist.

  • CP6: Streaming Video Doesn't Work in HTML5

    Apparently, streaming video just doesn't work if you publish to HTML5 from Captivate 6.  I have that directly from Adobe tech support.
    I have been working with Adobe tech support on this issue, but I want to do a bit of crowd-sourcing and see if anyone in the community has come up with a solution. Has anyone found a solution or workaround for this? 
    We are publishing courses to HTML5 and SWF, and the courses contain streaming video.  The streamed video works PERFECTLY in the SWF version in multiple browsers.  The HTML5 vesion just....doesn't.  By that I mean that the places where the video is supposed to appear are just blank - no black or white placeholder, no controls but no video - just a whole lot of nothing.  The other objects in the published SCO work great, but no video.  Again - the failure is ONLY in HTML5.  Apparently it has something to do w/ the fact that HTML5 handles video "differently," though I have yet to get an explanation of what that actually means. 
    We've tried several video formats, but none of them work.
    We've tested by publishing to just HTML5 and playing it locally in a browser, and by trying to play it from our LMS and from SCORM Cloud (in various browsers/platforms and on various mobile devices) - none work.
    All thoughts and suggestions are appreciated. 
    Laura

    Thank you, but as I said - I have been working w/ Adobe on this.  I received word about the update, immediately asked my contact if the update addressed the HTML5 and streaming issue, and he said no - it did not.  I went ahead and tried it, just in case, and indeed it still does not work.
    As I understand it, this is not an isolated incident where it doesn't work for me - it's an actual problem with the software.  The way that Captivate 6 publishes streaming video is incompatible with the way that HTML5 "understands" video.
    I was hoping someone had come up with a good workaround or found a solution independently.
    Laura

  • Straming video doesnt work.

    Streaming video doesnt work. Video in Skype is OK. Play locally stored video OK in MediaPlayer as well as iTunes. Downloaded Adobe Flash and Shockwave. Still no steraming after restart of PC.
    Firefox is upgraded.
    Windows XP home

    Hi,
    Can you please cross check the following :
    1. The rtmp URL is edited accordingly to point to the correct FMS server instead of localhost etc.
    2. The above code snippet should be bundled as an AIR app and published for iOS.
    If you are using HTTP instead of RTMP, you need to follow HLS streaming for iOS which makes use of the HTML5 video tags instead of any flash/AIR based applications. Please let us know if you are looking for this.
    Thank you !

  • Streaming Video in pdf-based ebook

    I have created a pdf file with streaming video. In other words, using the multimedia tool in acrobat 9, I specify a RTMP URL which points to a specific video on our streaming video server. Everything works perfectly in the PDF.
    After packaging the PDF in ACS4, the streaming video does not work in the resulting ebook.
    Is there some restriction that is preventing streaming video using the RTMP protocol from working? Has anybody successfuly placed streaming video in their ebook?

    I have placed a SWF in my base PDF document and packaged it as an ebook. Video does not play. I do have the poster image of the video visible but I am not able to start the video. There is no active area on the video for me to do anything. Is there any document I have missed that explains how to embed a video into an ebook?
    There are a number of different opotions in flash to generate a SWF file for imported video such as:
    - Loading a video with playback component
    - Embedding a FLV in SWF and play in timeline
    None of these options work for me.
    If anybody has been successful at this, please let me know the procedure. Thanks in advance for your help.

Maybe you are looking for

  • How can I determine which programs/files are using disc space?

    A question for the professionals: What program on my MacBook Pro can I run to determine which programs and files are taking up the percentage of disc space?  I am running at 72 gb, which is great, but I need to know what is using up the rest of it. 

  • Implementing SQL Server Reporting Services with a Java EE Application

    Hi All, I need to find some tutorial on "Implementing SQL Server Reporting Services with a Java EE Application" for my j2EE application. Until now i have searched a lot of sites but have not any thing related to this topic. I am using apache axis alo

  • Silly Dual DDR question

    OK,      Is there a way to verify f a system is running in dual DDR? I have 2 512 Meg sticks in slots 1/3 and Sandra reports 1024 Meg avail, as well as XP Pro. I have not seen anything in the bios to enable/disable, so is it an automatic thing that i

  • .Mac Backup Program - Premature Launch

    I like the simple-to-use program, "Backup" that I downloaded from my MobileMe account quite some time ago.  It allows me to create custom backups of various files/servers and store the backups at specified destinations. Anyway, recently it has been l

  • 13 months back from the Chosen Month

    Hi, I am using SAP BW Query as Source for my Universe and i dont have any BI Variables in the Query. My Month and Year Objects is [0CALMONTH] it will display like JAN 2009. here the requirement is i am using this dimension as FILTER in my Query Panel