H264 From Axis Encoder feed to FMS 3.5

Hello, my name is Dave and I am working on an issue that I have very little knowledge in. Here is the problem space.
I have a feed from an Axis Encoder that I would like to display in Flex 3.4. As far as I know there is no direct way of doing this. Is this is not true please let me know.
So I started to explore the possibilities of using Flex Media Server 3.5 to receive this feed from the Axis Encoder and using NetConnection and NetStream publish this feed to Flex…
Is this possible? I wish I had the time to research this to the point so that I can fully understand the technical aspects but I just do not have that luxury.
I have an axrtsp://MY_IP:POR/mpeg4/1/media.amp feed. Can FMS understand this?
Thanks for your input and time,
Dk.

ok I just solved my problem.
I am running vista and FMS is installed in ... "program files" ... etc.
So, when adding user through "users.exe" command users.dat remains empty even though it reports "new user successfuly added".
The problem was vista write protection.

Similar Messages

  • Please prefix 'mp4:' to the stream name to record H264/AAC/HE-AAC encoded data at FMS using DVR...

    I was able to modify the main.asc file in the application/livepkgr directory to include:
    * DVRSetStreamInfo :
    * This prototype was created to allow DVR recording funtionality to FLME to FMS
    Client.prototype.DVRSetStreamInfo = function (info)
        var s = Stream.get( "mp4:" + info.streamname + ".f4v" ) ;
        if (s)
            if (info.append)
            s.record ("append") ;
            else
            s.record () ;
            s.play (info.streamname) ;
    I get three status messages in the FLME encoding log:
    Requested DVR command has been successfully issued to Primary FMS server for stream livestream1
    Requested DVR command has been successfully issued to Primary FMS server for stream livestream2
    Please prefix 'mp4:' to the stream name to record H264/AAC/HE-AAC encoded data at FMS using DVR feature
    Now I have a few issues:
    1. How to I fix the issue with the 3rd status message "Please prefix 'mp4:' to the stream name to record H264/AAC/HE-AAC encoded data at FMS using DVR feature" since the code above is prefixing the "mp4:" to the stream name.
    2. In the applications/livepkgr/streams directory there is a file called "undefined.f4v" which is telling me the code above isn't passing the info.streamname variable.
    3. Also, what do I need to do to playback this .f4v file. I've tried opening it with Adobe Media Player, but it doesn't recognize it.
    I'm obviously using multi-bitrate streaming and that is working flawlessly.  My goal is to record this livestream to later playback as an mp4 file.
    Any ideas?
    UPDATE:
    I know on page 15 of the FMS 4.5.1 developers guide, "Configure DVR (HDS)" under "Publish a DVR stream", it states "To Publish a DVR stream from FLME, DO NOT check Record OR check DVR Auto Record. Publish the stream just as you publish any live stream. In the next section "Play DVR streams" is states that I can use SMP (Stobe Media Playback), which I am.  So that brings up two more questions:
    1. Why is my SMP Player not displaying the DVR funtionality (See image):
    In my SMP configuration, my streamType is "LiveOrRecorded" - default. There is a streamType = "dvr", but will I lose live funtionality?
    2. If I want to later on, package the stream into an mp4 file and play it back later for those who missed the live stream, what is the best approach for that?
    Message was edited by: giostefani

    Two things: You need to have "DVRCast" application on server-side i.e. "dvrcast_origin" for DVR recording to work and secondly for mp4 recording your stream name should be "mp4:<streamname>.mp4" while publishing.

  • CS6 Encore requiring a second encode of H264 BluRay from media encoder

    Have noticed that when I encode an H264 file in Blu-Ray for encore, that when I try to build the DVD I get a message that the file is not proessed.  If I go back to media encoder and reprocess the existing H264 file, Encore will then accept it.  I think this is a bug, but in bug report, no option for Media Encoder.  this has happened on 4 seperate occassions since I downloaded th latest Adobe CS6 updates.
    Anyone have any ideas?
    thx...Jim Watt

    Hi John,
    Thanks for the reply.  the file i'm atrtempting to use in Encore is an .mp4v file from media encoder, which is, I think the same file type i've used successfully in the past.  When I re-encode the file has the same extension, but it will work.  I perceive this is a new issue with the latest update of CS6.  I've not encountered this issue before the update.
    Thx...jw

  • Invoking Routing service from axis DII client

    Hi,
    Iam trying to invoke a routing service from an axis-1.4 dii client. I checked "Can be invoked from external service" for this routing service. The invocation returns with a fault -
    INFO: Mapping Exception to AxisFault
    AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server
    faultString: java.lang.NullPointerException
    faultActor:
    faultDetail:
         stackTrace: AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server
    faultString: java.lang.NullPointerException
    faultActor:
    faultDetail:
    java.lang.NullPointerException
         at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:135)
         at org.apache.axis.encoding.DeserializationContextImpl.endElement(DeserializationContextImpl.java:942)
         at org.apache.xerces.parsers.AbstractSAXParser.endElement(AbstractSAXParser.java:569)
    Iam not able to identify the reason behind this.
    Please help.

    Does it require WSIF to invoke a routing service ?

  • Do I need to extend any of classes from AXIS  to return multiple values?

    Do I need to extend any of classes from AXIS to return multiple values? I'm exposing the following method as web service through AXIS to return multiple values.
    public ContactAddress testService()
              ContactAddress     cAddr     =     new     ContactAddress();
              cAddr.setAddresses1("AAAAAAAAAAAAA");
              cAddr.setAddresses2("BBBBBBBBBBBBB");
              cAddr.setAddresses3("CCCCCCCCCCCCC");
              return cAddr;
    and the code for ContactAddress is
    public class ContactAddress {
         // member variables
         private String addresses1;
         private String addresses2;
         private String addresses3;
         public String getAddresses1() {
              return addresses1;
         public void setAddresses1(String addresses1) {
              this.addresses1 = addresses1;
         public String getAddresses2() {
              return addresses2;
         public void setAddresses2(String addresses2) {
              this.addresses2 = addresses2;
         public String getAddresses3() {
              return addresses3;
         public void setAddresses3(String addresses3) {
              this.addresses3 = addresses3;
    }when I'm exposing the method in following way...I'm gettting this error.
    org.xml.sax.SAXParseException: Premature end of file.
    The wsdl for this is .......
      <?xml version="1.0" encoding="UTF-8" ?>
    - <wsdl:definitions targetNamespace="http://v:9090/services/Test" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://v:9090/services/Test" xmlns:intf="http://v:9090/services/Test" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    - <!--
    WSDL created by Apache Axis version: 1.4
    Built on Apr 22, 2006 (06:55:48 PDT)
      -->
    - <wsdl:types>
    - <schema targetNamespace="http://v:9090/services/Test" xmlns="http://www.w3.org/2001/XMLSchema">
      <import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
    - <complexType name="ContactAddress">
    - <sequence>
      <element name="addresses1" nillable="true" type="soapenc:string" />
      <element name="addresses2" nillable="true" type="soapenc:string" />
      <element name="addresses3" nillable="true" type="soapenc:string" />
      </sequence>
      </complexType>
      </schema>
      </wsdl:types>
    - <wsdl:message name="addRequest">
      <wsdl:part name="x" type="soapenc:string" />
      </wsdl:message>
    - <wsdl:message name="testServiceResponse">
      <wsdl:part name="testServiceReturn" type="impl:ContactAddress" />
      </wsdl:message>
    - <wsdl:message name="addResponse">
      <wsdl:part name="addReturn" type="soapenc:string" />
      </wsdl:message>
      <wsdl:message name="testServiceRequest" />
    - <wsdl:portType name="TestService">
    - <wsdl:operation name="testService">
      <wsdl:input message="impl:testServiceRequest" name="testServiceRequest" />
      <wsdl:output message="impl:testServiceResponse" name="testServiceResponse" />
      </wsdl:operation>
    - <wsdl:operation name="add" parameterOrder="x">
      <wsdl:input message="impl:addRequest" name="addRequest" />
      <wsdl:output message="impl:addResponse" name="addResponse" />
      </wsdl:operation>
      </wsdl:portType>
    - <wsdl:binding name="TestSoapBinding" type="impl:TestService">
      <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
    - <wsdl:operation name="testService">
      <wsdlsoap:operation soapAction="" />
    - <wsdl:input name="testServiceRequest">
      <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://services.avon.com" use="encoded" />
      </wsdl:input>
    - <wsdl:output name="testServiceResponse">
      <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://v:9090/services/Test" use="encoded" />
      </wsdl:output>
      </wsdl:operation>
    - <wsdl:operation name="add">
      <wsdlsoap:operation soapAction="" />
    - <wsdl:input name="addRequest">
      <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://services.avon.com" use="encoded" />
      </wsdl:input>
    - <wsdl:output name="addResponse">
      <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://v:9090/services/Test" use="encoded" />
      </wsdl:output>
      </wsdl:operation>
      </wsdl:binding>
    - <wsdl:service name="TestServiceService">
    - <wsdl:port binding="impl:TestSoapBinding" name="Test">
      <wsdlsoap:address location="http://v:9090/services/Test" />
      </wsdl:port>
      </wsdl:service>
      </wsdl:definitions>

    1. The export button is only for use with Single Edition publications, for customers who are not using Creative Cloud.
    2. All DPS issues are hosted by Adobe, you cannot host them on your own server.
    3. The DPS pricing model is based around a per-issue download charge. There is no way to distribute content with DPS and avoid that charge.
    Neil

  • Exporting H264 from Adobe CC - Avid Editors can't import

    We have 5 Avid Suites with Symphony and an Adobe CC Maximus Suite. When we export H264 Files from Media Encoder/Premiere CC the Avid Suites can't import H264 or bring them in via AMA. Any known issues with Avid and Premiere and the H264 Codec?

    It was using the Format: H.264. However, I have since switched to Quicktime Format and choose the H264 Codec and that they can import no problem.  The Format: H.264 exports a multiplexed .mp4 and while everything else I have plays and imports the Avid's can't. So looks like I'll be going the Quicktime route.

  • User not found FM Live Encoder 3 to FMS 3.5

    Hello,
    We are testing Flash Media Server 3.5 with Flash Media Live Encoder 3.
    Right now we have the problem, that we can not connect from FM Live Encoder 3 to FMS 3.5 running on the localhost (M:\Adobe\Flash Media Server 3.5\Apache2.2). Both running as Standard Installation on the same System (OS: Windows XP SP2). The User is not found. So where do we have to setup the user, so that the connection is possible,
    FM Live Encoder:
    Configuration for Output:
    FMS URL: rtmp://localhost/live
    Backup URL:
    Stream: livestream
    Then press Button “Connect”
    Entering the only user and password we set in the FMS Admin Console:
    User ard, pw: ard
    Ø  Then the Reply is: User not found.
    FMS 3.5 Admin Console:
    Manage User:
    User: ard
    Reset password: ard
    Ø  Still: User not found, when we try to connect from the Live Encoder.
    Modules/access:
    There is a libconnect.dll
    FMS 3.5 access log:
    session connect               2009-06-05         11:40:11               548         127.0.0.1             3316      3073      -              -              -              -                403         -
    FMS 3.5 edge log:
    2009-06-05         11:40:08               548         (w)2641213        Connection rejected by server. Reason : [ AccessManager.Reject ] : [ code=403 need auth; authmod=adobe ] :           -
    2009-06-05         11:40:11               548         (w)2641213        Connection rejected by server. Reason : [ AccessManager.Reject ] : [ authmod=adobe ] : ?reason=nosuchuser&opaque=OzcAAA==               -
    Thx for any Information...
    Reinhard Roderer

    ok I just solved my problem.
    I am running vista and FMS is installed in ... "program files" ... etc.
    So, when adding user through "users.exe" command users.dat remains empty even though it reports "new user successfuly added".
    The problem was vista write protection.

  • How do I get MFP M476dn to scan from the document feeder from the computer?

    How do I get my HP Color LaserJet MFP M476dn to scan from the document feeder when initiated from the computer? The printer will scan from the document feeder if it is initiated from the small screen on the printer, however when I try to initiate from the computer it scans a blank page. The printer acknoledges that the document feeder is loaded.

    To get your issue more exposure I would suggest posting it in the commercial forums since this is a commercial product. You can do this at Commercial Forums.
    I hope this helps!
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • How to output from media encoder to camcorder via firewire?

    I am using CS5.5 media encoder to output edited hi def footage from premiere as DV widescreen to sony FX 1 camcorder via firewire.
    How do I route the output from media encoder to the firewire output?
    This is the same camera I use for acqusition & import into premiere via firewire.
    Media Encoder appears to be encoding the footage properly.
    Thanks in advance for any help.
    Sewerguy

    How do I route the output from media encoder to the firewire output?
    You don't--or can't, rather. You'd need to use Premiere Pro for this. Check this help page for details: Exporting to videotape

  • How do I export wmv and avi files from media encoder on a mac in CC2014

    How do I export wmv and avi files from media encoder on a mac in CC2014?

    John T Smith wrote:
    As far as I know, you don't... those are Windows formats that are not available on a Mac
    Nonsense.
    Apple Compressor has been doing wmf exports for a decade. I have the Quicktime export components from Telestream and they appear as presets in Compressor. They should be available in Media Encoder or they should be importable. Adove apparently refuses to see them. Still trying to figure that out.

  • Making http links clickable, when pulling in content from an external feed.

    Hi,
    I'm pulling in external content from an RSS feed and binding it to Flex controls (TextArea, DataGrid, etc.).  When the content contains a http link, I'd like for that link to be clickable.  What is the best way to do this?  I would think this would be the default behavior, but that doesn't appear to be the case.
    Thx,
    Ian

    Hi,
    The TextArea and DataGrid just use default  TextField instances which are plain text.
    You would  need to set htmlText on the text area and create a custom item renderer  for the data grid that accepts html text, then parse your text and  create anchors.
    Don't really see an easy way out of the  box.
    Mike

  • ITunes doesn't respond when unsubscribing from a podcast feed...

    As the title states, iTunes basically freezes when I try to unsubscribe from a podcast feed. Why is this happening and how can I fix it?

    Well, nevermind about iTunes completely freezing up, as it finally unsubscribed from a podcast feed, but I would still like to know why it took so long to do so. My only guess is that the podcast I unsubscribed from had a lot of episodes that were available for download (and I mean A LOT). I only downloaded one episode, though. Any thoughts?

  • From which table  feed back partner and root cause partner

    hi,
    can any body tell me ,from which table  feed back partner and root cause partner
    can be find.
    i need to add this in datasource 0crm_sales_act_1.
    thanks in advance.
    regards,
    sridhar M

    It is always advsible to use function modules in CRM instead of making direct table access. Unlike R/3, CRM tables and buffering are quite complex.
    In your case, to read the values of maintained Sales Areas, use the function module <h5>CRMA_BUPA_GET_SALES_AREAS</h5>
    The function module takes the BP Guid (BUT000-PARTNER_GUID)
    However you can also find your information in tables<h5>
    CRMM_BUT_LNK0011 - BP Sales rule list
    CRMM_BUT_LNK0010 - BP Sales rule list
    CRMM_BUT_SET0010 - BP Sales rule set</h5>
    Hope this helps.
    Easwar Ram
    http://www.parxlns.com

  • Premiere Pro CS6 H264 Blu-ray encoder does not do MBAFF interlace

    I have been testing the Premiere Pro CS6 H264 Blu-ray encoder with some HDV video 1440x1080i25 top field first and I have found that it always encodes as PAFF even when the MBAFF box is ticked. I analysed the stream with h264_parse and found that the mb_adaptive_frame_field_flag is set to 0 and that the pic_struct flag alternates between 1 and 2. These indicate that the encoder is using PAFF when the MBAFF flag is ticked.
    The CS5 encoder does work as it sets the mb_adaptive_frame_field to 1 and the pic_struct to 3 which is correct for top field first.
    There is another problem in that Premier pro does not recognise field order of correctly encoded MBAFF video. It reports tff video as progresive and bff as top top field first.
    MBAFF generaly gives higher quality pictures.
    Regards Trevor

    For obvious reasons I do not like to be constanly connected to the internet with my Video Edting PC.
    There are no 'obvious' reasons not to stay connected (if you know what you're doing), and in fact very good reasons to do so (more so if you're a Creative Cloud subscriber).
    Having said that, there is a way to get the PDF to come up when you hit F1, instead of the online help.  I just don't recall where that setting is.

  • HT5100 How do I unsubscribe from iTunes U feeds on iPad?

    How do I unsubscribe from iTunes U feeds on iPad?

    I have the same problem. If I delete the lecture from iPad, it appears again after couple of minutes. I don't have the lecture in my iTunes.
    I think I tried everything:
    delete from iPad
    subscribe back to PC and then delete it from both iPad and PC
    subscribe back to PC and then delete it from PC and then iPad
    I even delete iTunes U and installed it back
    Nothing helps. The lecture is there back as soon as I run iTunes U. It is really frustrating and I want to throw the iPad from my window.

Maybe you are looking for

  • Removing text typing sound from a slide

    I can't remove the text typing sound from an individual slide.  why not?  Should I just be able to right click on the "tpying text" segment in the timeline and click delete?  This doesnt' work.  Bug!

  • Major reports

    hi all, In SD,Is there any major reports that slice and dice the numbers by some criteria other than period and items. with hopes JD

  • Reordering items in a report

    The scenario: I have a table that holds values and their respective position "in line". For example, Apples = 1, Bananas = 2, Oranges = 3, Grapes = 4. When I display a report, I want the values to show up in order...so, Apples, Bananas, Oranges, Grap

  • How to "transform" multiple regions?

    I looked in the reference manual and cant find the page where to do that. Here is what I want to do : 1- select a number of regions at the same time 2- use the transformer window to do an operation on all the regions that are selected at the same tim

  • Erreur U44M1P7

    Quand je lance une mise à jour, tout se télécharge et après j'obtiens le message : Mise à jour d'Extension Manager 6.0.8 Echec de l'installation. Code d'erreur : U44M1P7