Live streaming h.264 not showing video

I'm using FMLE 3.1 to stream live video encoded with H.264 format with  FMS 3 and Flash player 10 + AS 3 to connect to the stream.
When I connect to the stream, just the audio is played. I'm able  even to get the metadata information about the video, but I just receive  the audio.
I already tried some stuff like
1. "Flash 10 won't play live stream H.264 after iTunes install"  http://forums.adobe.com/thread/505620. I tested it in a complete  different environment than mine, but the same result.
2. I've tried some format to play method, but this is just to play  files
ns.play("mp4:saple.f4v");
ns.play("mp4:sample");
3. Also read "How do you watch and record a live h.264" http://www.flashcomguru.co.uk/forum/forum_posts.asp?TID=4649 , but I  don't get even to play the stream at first place.
This is the code I'm using 
import flash.media.Video;
var video:Video = new Video(720, 480);
var ncVideo = new NetConnection();
this.ncVideo.addEventListener(NetStatusEvent.NET_STATUS,  onNetStatus);
this.ncVideo.connect("rtmp://localhost/livecast", "user");
var customClient:Object = new Object();
customClient.onMetaData = metaDataHandler;
function onNetStatus(e:NetStatusEvent) {
     if (e.info.code == "NetConnection.Connect.Success")
            createNetStream();
function createNetStream(){
     var ns = new NetStream(this.ncVideo);
     ns.client = customClient;
      ns.addEventListener(NetStatusE vent.NET_STATUS, onNsStatus);
     ns.play("livestream", -1);
      this.video.attachNetStream(ns) ;
     this.addChild(video);
function onNsStatus(e) {
     trace("onNsStatus " + e.info.code);
function metaDataHandler(infoObject:Object):void {
     trace(infoObject.width + " - " + infoObject.height);
Another detail is that when I record the video to a file for  instance "sample.f4v", I put this video in the FMS but when I connect to  this stream I receive the "FileStructureInvalid" error message.
I went from changing the extension to .flv http://www.adobe.com/devnet/flashplayer/articles/hd_video_f  lash_player_04.html to the solution to flatten the files http://www.flashcomguru.com/forum/forum_posts.asp?TID=4006 but this is  not the case because I'm using FMS to stream the recorded video.

Please note that this  forum category is for help with the Flash Player and  NOT for users seeking assistance with  programming Flash and/or Flex. If you are seeking assistance with programming,   click here and choose the  proper category to post in.

Similar Messages

  • Adobe Flash Player 11 plugin will not show video's or  show chat rooms

    Adobe Flash Player 11 plugin will not show video's or  show chat rooms

     the operating system is Windows Vista " Home Basic" Service Pack 2  (2007)
    web browser is Yahoo Mozilla Firefox
    shows a blank screen...
    Thanks for any help u can give me ...Jake

  • TS1702 I have Foxtel sports pack for London 2012 App so I can watch on iPad overseas in Netherlands. But my wifes iPad in NL says "unauthorised region" and will not show Videos on Foxtel London Olympics App.? I have changed region and reinstalled App?

    I have Foxtel sports pack for London 2012 App so I can watch on iPad overseas in Netherlands. But my wifes iPad in NL says "unauthorised region" and will not show Videos on Foxtel London Olympics App.? I have changed region and reinstalled App?
    I am in The Netherlands on holiday visiting my family who are here. Can someone help? I only got the sports package before I left Australia so I could keep track of Olympics while in NL. My wife who is in NL bought the origional iPad before I got here.

    adetoye50 wrote:
    Dear Contacts Journal Support Team,
    FYI, this is a user to user support forum.  You are NOT addressing Apple here.
    Honestly, I doubt anyone is really going to take the time to read the novel you have written.

  • Live Streaming H.264 Video on iOS using AIR

    We would like to build an AIR app that plays Streaming H.264 Live/VOD videos that would work through AIR on the iOS platform.
    I've seem some traffic on the forums that RTMP will work to iOS - but additionally heard that video applications that use RTMP streams will be rejected by the Apple App store.
    I have seen that progressive H.264 will work - but that's not streaming or live.
    HLS would work if we use the StageWebView object; however, that provides us little control/monitoring over the video inside of it; and it's not "really" integrated as a video player.
    For OSMF there seems to be a 3rd-Party plugin which will allow OSMF to read HLS streams - but (from what I've heard) is incomplete because it doesn't play adaptive nor is it completely updated for OSMF 1.6.1.
    I would love to be wrong here - but is there currently a way to play a Streamed H.264 Video to iOS that is non-RTMP?
    I've seem little information as to if F4M streamed files played via OSMF will work on iOS.
    Thanks for the info in advance.
    -Will

    I pasted a stripped down version of my test app below, that attempts to playback an m3u8 file. This works for me on an IPad2.
    Remember to test on the device itself otherwise wont work.
    Dependencies:
    1. Air 3.1
    2. OSMF 1.6.1
    3. Flex SDK 4.6.0
    renderMode="direct"
    HTH
    - Abey
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:mx="library://ns.adobe.com/flex/mx"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   backgroundAlpha="0"
                   backgroundColor="#000000"
                   addedToStage="onViewActivate(event)"
                   applicationDPI="160">
        <fx:Script>
            <![CDATA[
                private var nc:NetConnection;
                private var ns:NetStream;
                private var video:Video;
                private var currentVidUrl:String;
                protected function onViewActivate(event:Event):void
                    nc = new NetConnection();
                    nc.addEventListener(NetStatusEvent.NET_STATUS, onNetStatus, false, 0, true);
                    nc.addEventListener(SecurityErrorEvent.SECURITY_ERROR, onSecurityErrorHandler, false, 0, true);
                    currentVidUrl = "http://fmsserver/hls-vod/sample.mp4.m3u8";
                    nc.connect(null);
                private function onNetStatus(evt:NetStatusEvent):void
                    switch (evt.info.code) {
                        case "NetConnection.Connect.Success":
                            ns = new NetStream(nc);
                            var client:Object = {};
                            client.onMetaData = onMetaData;
                            client.onCuePoint = onCuePoint;
                            client.onBWDone = onBWDone();
                            ns.client = client;
                            nc.client = client;
                            var v:Vector.<StageVideo> = stage.stageVideos;
                            if (v.length >= 1) {
                                var stageVideo:StageVideo = v[0];
                                stageVideo.viewPort = new Rectangle(0, 0, mediaContainer.width, mediaContainer.height);
                                stageVideo.attachNetStream(ns);
                            else {
                                video = new Video();
                                video.width = mediaContainer.width;
                                video.height = mediaContainer.height;
                                mediaContainer.addChildAt(video,0);
                                video.attachNetStream(ns);
                            if (currentVidUrl) {
                                ns.play(currentVidUrl);
                            break;
                        case "NetStream.Publish.BadName":
                            break;
                        default:
                            break;
                private function onSecurityErrorHandler(event:SecurityErrorEvent):void
                protected function onMetaData(item:Object):void
                protected function onCuePoint(item:Object):void
                protected function onBWDone():void
            ]]>
        </fx:Script>
        <mx:UIComponent id="mediaContainer"
                        height="100%"
                        width="100%"/>
    </s:Application>

  • Shared Photo Stream not showing video on Mac

    Hi,
    I can now see videos in my shared Photo Stream using IOS7 so that seems to be working fine. I can also see the video when viewing the public website for the shared Photo Stream. However, for the same shared Photo Stream I cannot see the video on my Mac using iPhoto. Is that supposed to work now too?
    Thanks,

    I am not aware that video is supported - and do not find any documentation saying so - there is documentation updated on Sept 18 saying that it does not - http://support.apple.com/kb/HT4486
    Which photo formats does My Photo Stream support?
    My Photo Stream supports JPEG, TIFF, PNG, and most RAW photo formats. My Photo Stream does not work with video.
    Wherer are you seeing that it is supported?
    I do see some editorial material indicating that it is and in those there is no mention o fthe Ma - only IOS 7 and Apple TV version 6
    http://teachmeios.com/apple-introduces-video-sharing-via-photo-stream-in-ios-7-a nd-apple-tv-6-0/
    So I'm not sure how it is suppose tto work but for not it appears that it is not for the Mac based on the limited info I've found
    LN

  • HDS live streaming to Flash not working

    Adobe Flash Media Server 4.5.5 r4013
    Windows 2008
    Sources:
    http://help.adobe.com/en_US/flashmediaserver/devguide/WSd391de4d9c7bd609-52e437a812a3725df a0-8000.html
    http://www.adobe.com/devnet/adobe-media-server/articles/live-multi-bitrate-video-http-flas h-ios.html
    Live streaming a single or multi-bitrate video over HTTP to Flash does not work. I have followed the instructions on the 2 sources listed above repeatedly, but I can’t get live streaming over HTTP to Flash to work. Live streaming to iOS over HTTP works with no problems (single and multi-bitrate streams).
    I have tried the troubleshooting steps from the following:
    http://help.adobe.com/en_US/flashmediaserver/devguide/WS0432746db30523c21e63e3d12efac195bd -8000.html
    Troubleshoot live streaming (HTTP)
    1.      Services window (Windows): Flash Media Server (FMS), Flash Media Administration Server, and FMSHttpd services are running. ✓
    2.      Verified that the request URL is correct. ✓
    3.      Configured ports:
    a.      Configure Apache to use port 80. Open rootinstall/Apache2.2/conf/httpd.conf in a text editor. Change the line Listen 8134 to Listen 80.
    b.     Configure Flash Media Server not to use port 80. Open rootinstall/conf/fms.ini in a text editor. Remove 80 from the ADAPTOR.HOSTPORT parameter so the parameter looks like the following: ADAPTOR.HOSTPORT = :1935 ✓
    4.      Placed a crossdomain.xml file to the rootinstall/webroot directory. ✓
    5.      In Flash Media Live Encoder, select the Encoding Options tab, choose Output from the Panel options menu, and verify the following:
    a) The value of FMS URL is rtmp://fms-dns-or-ip/livepkgr. If you’re testing on the same server as Flash Media Server, you can use the value localhost for fms-dns-or-ip. ✓
    b) For a single stream, the value of Stream is livestream?adbe-live-event=liveevent. ✓
    c) For adaptive bitrate streaming, the value of Stream is livestream%i?adbe-live-event=liveevent. ✓
    Flash Media Live Encoder uses this value to create unique stream names. To use another encoder, provide your own unique stream names, for example, livestream1?adbe-live-event=liveevent, livestream2?adbe-live-event=liveevent.
    The encoder is showing all 3 streams being published and streaming.
    6. Check Administration Console: the livepkgr application and the 3 streams are running. ✓
    7. Check the logs for errors. Flash Media Server logs are located in the rootinstall/logs folder. The master.xx.log file and the core.xx.log file show startup failures. Apache logs are located in the rootinstall/Apache2.2/logs folder. X
    a)   core00.log: these errors did not occur every time that I tried playing the live stream but these are the only relevant errors in the logs.
    1. 7968 (w)2611179     Warning from libf4f.dll: [Utils] [livestream2] Discarded all queued Media Messages received before first Video Keyframe Message
    2. 7968 (w)2611179     Warning from libf4f.dll: [Utils] [livestream3] Discarded all queued Media Messages received before first Video Keyframe Message
    b) edge00.log:
    13:33:57 4492          (w)2641213 Connection rejected by server. Reason : [ Server.Reject ] : (_defaultRoot_, _defaultVHost_) : Application (hds-live) is not defined.          -
    c) Apache-Error:
    1.     [warn]  Checking if stream is disabled but bootstrap path in event file is empty for event:livepkgr/events/_definst_/liveevent stream name:livestream
    2.     [warn] bootstrap path is in event file is empty for event:livepkgr/events/_definst_/liveevent stream name:livestream1
    As I mentioned, everything works on iOS and FMS seems to be creating all of the stream segments and meta files:
    a.     The 3 streams are being created in: HD:\Program Files\Adobe\Flash Media Server 4.5\applications\livepkgr\streams\_definst_
    b.    FMS is creating the following files in each stream folder (livestream1, livestream2, livestream 3):
    1. livestream1.bootstrap
    2. livestream1.control
    3. livestream1.meta
    4. .f4f segments
    5. .f4x segments
    The appropriate files are also being created in the HD:\Program Files\Adobe\Flash Media Server 4.5\applications\livepkgr\events\_definst_\liveevent folder, in which I have the following Manifest.xml and Event.xml files:
    <manifest xmlns="http://ns.adobe.com/f4m/1.0">
      <media streamId="livestream1" bitrate="200" />
      <media streamId="livestream2" bitrate="500" />
      <media streamId="livestream3" bitrate="1000" />
    </manifest>
    <Event>
      <EventID>liveevent</EventID>
      <Recording>
    <FragmentDuration>4000</FragmentDuration>
    <SegmentDuration>16000</SegmentDuration>
        <DiskManagementDuration>3</DiskManagementDuration>
      </Recording>
    </Event>
    I’ve tried clearing the contents of both streams\_definst_ and events\_definst_\liveevent (keeping the xml files) after restarting the encoder, and creating a different event definst for the streams (liveevent2 for example).
    We have an event in 2 weeks that we would like to stream to both Flash and iOS. Any help in solving this problem will be greatly appreciated.

    One step closer:
    Changed the crossdomain.xml file (more permissive settings).
    Changed the encoding on FMLE to vp6. Working somewhat (don't know what I did to make it start streaming through hds).
    But at least now I can get the individual streams in the set manifest file to work:
    http://localhost/hds-live/livepkgr/_definst_/livevent/livestream1.f4m
    http://localhost/hds-live/livepkgr/_definst_/livevent/livestream2.f4m
    http://localhost/hds-live/livepkgr/_definst_/livevent/livestream3.f4m
    BUT when I try to play the streams through the set manifest file from http://localhost/liveevent.f4m I'm getting the following error:
    "The F4m document contains errors URL missing from Media tag." I'll search the forums to see if anyone else has come across this problem.
    I used the f4m config tool to make the file. These are the file's contents:
    <manifest xmlns="http://ns.adobe.com/f4m/2.0">
      <baseURL>http://localhost/hds-live/livepkgr/_definst_/liveevent/</baseURL>
      <media href="livestream1.f4m " bitrate="200"/>
      <media href="livestream2.f4m " bitrate="500"/>
      <media href="livestream3.f4m " bitrate="1000"/>
    </manifest>
    Thanks

  • The capture window in Premiere Pro does not show video feed from Beta SP

    Dear Sirs
    The capture window in Premiere PRO CC with blackmagic 4k extreme (Desktop Video 10.1 for Windows) does not show a live video feed in, from analog beta sp, It works only in media express.
    Can you help us?
    Thanks
    Alessandro

    Starting from a fresh new win7 installation, all problems solved
    Bye
    Alessandro

  • Correctly installed Firefox Flashplayer (v10.1.53.64) does not show video in Firefox (v3.6.7) under Windows XP, Vista, 7

    Hi all,
    I am experiencing this mysterious flash player video rendering problem on my website www.cc-exotic-home.com (see tag cloud box with animated text on the left side "Ihre Suchbegriffe").
    Using Firefox version 3.5.x and older on all operating systems the tag cloud video is running w/o problem. As soon as I use a 3.6.x Firefox version (with a correctly installed flash player plug-in version 10.1.53.64) the video is not showing anymore, even though the Firefox plug-in seem to be up and running.
    I experience this problem ONLY in Firefox...all other browsers are fine (latest version of IE 8.0, Safari, Chrome, Opera).
    Can anyone help me with this strange problem...?? I couldn't get any useful help at the Adobe Support Forum...
    Here's the page source code:
    Ihre Suchbegriffe
    Your expert help is highly appreciated!!!
    Regards
    SABRY
    == This happened ==
    Every time Firefox opened
    == I access website www.cc-exotic-home.com (tagcloud box left side "Ihre Suchbegriffe")

    Hi weater15,
    I am running on v 3.6.8 already...and it didn't solve my problem... thanks for your suggestion anyway...
    Are you running on an Windows OS ? I still can't understand why people from outside Germany seem to be able to view the content in firefox 3.6.x and many users in Germany experience the same problem as I do...it's so strange...

  • Nokia Multimedia Player does not show video in 3gp...

    PC Suite 6.85.14.1 - latest Windows Vista When trying to play 3gp files recorded by Nokia N70, Nokia Multimedia Player only shows green video screen with moving vertical stripes, but not actual video image. Sound is played normally. I tried alternative player (VideoLAN VLC) and latter displays video without problems (unfortunately this player does not support 3gp sound so I would appreciate either correction of this problem or indication of good player supporting 3gp).

    14-Dec-2007 10:25 AM
    sidream wrote:
    PC Suite 6.85.14.1 - latest Windows Vista When trying to play 3gp files recorded by Nokia N70, Nokia Multimedia Player only shows green video screen with moving vertical stripes, but not actual video image. Sound is played normally. I tried alternative player (VideoLAN VLC) and latter displays video without problems (unfortunately this player does not support 3gp sound so I would appreciate either correction of this problem or indication of good player supporting 3gp).

  • Not showing video while loading

    My quicktime is not showing the video on quicktime movies, primarily on the apple website and i'm perplexed as to why. It will play the audio while it is loading and once it has loading i can refresh and it will play the audio and video... any ideas on how to fix this very annoying problem?

    I am having the same problem. If someone could provide a solution that would be great. I reset safari, cleared out cache, made sure I had a newest updates.

  • How to not show videos in slideshow

    Hi. Just updated to iphoto '09, and I notice that when I play a slideshow for an event, it also plays the videos embedded in the event. iphoto '08 skipped over these. Is there any way to make iphoto '09 do that as well? I like just showing the photos when I want to quickly view a slideshow. Thanks!

    so I'll need to move the videos for each event to it's own seperate event in order to play a slideshow without them, correct?
    Or make Albums without them. For instance how about a Smart Album like
    File -> New Smart Album
    Event -> Contains -> Name of Event
    +
    Keyword -> is not -> Movie
    Will find all the photos in that Event and not the videos.
    I think a meaningful update to the product would be to have a slideshow setting where you could check or uncheck a box that said "play videos in slideshow," don't you agree?
    As it happens, no, but you know, I never use that feature anyway
    Seriously: Let the Developers know what you think
    iPhoto menu -> Provide iPhoto Feedback
    Regards
    TD

  • Canvas not showing video

    Yesterday, I rendered this video I'm making, and after it rendered the canvas did not show any video, I already re-installed Final Cut Studio, and nothing happened, just the canvas doesn't show video, but the viewer and when I export has video, what do I do? 

    #15 White or Black Canvas or Viewer
    Shane's Stock Answer #15:  White or Black Canvas or Viewer
    Make sure the canvas or viewer are selected then go to VIEW>CHANNELS and set it to RGB.   It might be set to ALPHA.
    OR...
    Click on the drop down menu above the Viewer or Canvas and make sure that you are on IMAGE or IMAGE + WIREFRAME.

  • Logic Pro 9 Will Not Show Video

    When I import a video to Logic, the video does not show up on the video track nor on the top left of the project. Although the movie tab shows up, there's no film. If I double click the video track, it asks me to look for the video (finding it again doesn't work). Now this only seems to happen with mp4 files. Mov files show up, but the screen is white and there's still no video (but there is sound). It also shows up on the video track, but the track is blank.
    Note: I've never had any of these problems before, but I recently just did a clean install of Snow Leopard and did a transfer of apps and files from a Yosemite drive, which then the problem occurred. I've tried possible fixes like reinstalling Logic 9 and deleting the preferences file in /Library, but the problem still stands. Is there any possible fix to this problem I'm missing? Could it be a QuickTime problem maybe? I tried videos that worked before this problem but now they don't.
    Logic 9.1.8
    iMac 10.6.8
    Intel 3.06 - 12GB RAM
    Komplete Audio 6 Inerface

    Hi
    Mr. DiSpirito wrote:
    I recently just did a clean install of Snow Leopard and did a transfer of apps and files from a Yosemite drive, which then the problem occurred.
    This is most likely the source of your problem.
    Best bet would be to reinstall the OS from scratch, without transferring any Apps etc from the other drive
    CCT

  • "Making multicam sequence from 3 other sequences" not showing video properly

    Well, problem in a nutshell. I created a multicam sequence, using 3 other sequences. But somehow, it's not showing it 100% correctly. Like, the main window shows the video, like it should be, and the smaller windows, are just off sync for some reason (except the only sequence that doesn't have any empty caps on it). Any explanation & fix for this?
    Instant workaround that I just invented. I put some empty title on the empty caps, and now It shows it, like it should be in the smaller windows. But if anybody knows why it did it in the first place, would be clad to know.

    OK, maybe I should clarify...
    Only A2 is coming through, NOT A1 -- so that's inconsistent with what you're saying. I have not checked Audio Follows Video, because that's not the bahvior I want. I'd like to be able to choose from any of the video tracks. Is that not possible in Premiere Pro?
    Also, do you think it makes a difference that I'm 'multicam editing' from a regular sequence (with multicam enabled) as opposed to an actual multicam sequence?
    thanks for the help.

  • How to Live Stream h.264 via FME?

    I would like to take advantage of benefits of H.264 for our
    live event streaming. Can this be done with FME?
    Is there another option to encode and stream to our CDN
    server in H.264?
    thanks for your help.

    There is currently no way to live encode H.264 using a CDN..
    since no-one has yet updated to FMS3. Then there is the issue with
    the live encoder.. I'm pretty sure that Adobe is going to release a
    new FME soon to support the h.264 codec

Maybe you are looking for

  • How do I arrange the order of icons on the printer's touch screen panel? (Office Jet Pro 8600)

    There has to be a way to remove apps from the screen and to re arrange.  The only one I use is scan to email and it is buried 7 screens deep. Does anybody know how to do this?  This is really annoying and I would not have bought the rpinter if you ca

  • PR PO language issue

    Hi , SErvice PO with no service master using ME59 creted from service PR having short text description in spanish language . PR is getting cretaed thru PM order  for which the log on language is spanish and therefore  EBAN table for PR also shows spa

  • New order type creation ?

    Hi, While creating a new order type what points we need to remember ? And what information we need to get from the user. As per my knowledge i can create the order type as 01) Define order types 02) Order type dependent parameters 03) Define number r

  • Run away log problem...

    My hard drive space keeps getting eaten up by something. I've copied something that keeps repeating in the console log. Can anyone tell me how to fix this problem based on what the console log says? 2009-10-17 18:21:58 ERROR Uncaught Exception: at no

  • Why my serial number of flash cc 2014 dont run?

    i have a serial number of flash cc 2014, but dont run!