Cue points not working

Hai am tying to inject the cuepoints in strobe mediaplayer version 2.0.Its not Working ,Same code is working in another version(1.6).Whats the problem kindly guide me

More digging into the new FLV shows that while XMP defines the cue points as type "navigation", there is prior data in the file that defines all the cue points as "event". This makes sense, because my SWF is correctly listening for and reacting to an "end" cue point in the FLV, but will not seek to any cue point since they are all set as "event".
Copying and pasting from Notepad++:
cuePoints       0       name   q1in  time @BYûçl‹D  type   event 
  1       name   q1out  time @JÜ(õ\  type   event 
  2       name   q2in  time @V£¥ãS÷Ï  type   event 
  3       name   q2out  time @^/ Ÿ¾w  type   event 
  4       name   q3in  time @_Oß;d  type   event 
  5       name   q3out  time @nE™™™™š  type   event 
  6       name   q4in  time @s G® zá  type   event 
  7       name   q4out  time @vNÄ›¥ãT  type   event 
  8       name   q5in  time @w¢Ù ‡+   type   event 
  9       name   q5out  time @zw×
=p¤  type   event 
  10       name   end  time @€ð bMÒò  type   event 
Any idea why AME is doing this?

Similar Messages

  • Embedded FLV Cue Points not working

    I am updating a project which uses an FLVPlayback component to play and navigate FLV videos using embedded Navigation cue points. The FLVs were originally encoded using an older version of AME, CS4 possibly. When trying to replace an FLV with a new one encoded using AME CS6, the embedded cue points do not work. Testing in Flash I get "VideoError: 1003: Invalid seek" when attempting to use "seekToNavCuePoint".
    Comparing the two FLVs using Premiere shows no recognizable differences between them. They are the same format, their cue points are named identically, all are designated as Flash Cue Points, and all set to type "Navigation".
    Digging into the FLV data, I've found that the cue point descriptions are formatted quite differently and I'm wondering if this is the source of the problem:
    Excerpt from the original FLV (AME CS4?):
         <rdf:li>
          <rdf:Description
           xmpDM:trackName="AME Markers"
           xmpDM:frameRate="f254016000000">
          <xmpDM:markers>
           <rdf:Seq>
            <rdf:li
             xmpDM:startTime="9323149248000"
             xmpDM:name="q1in"
             xmpDM:type="FLVCuePoint"
             xmpDM:cuePointType="Navigation"/>
    Excerpt from the new FLV (AME CS6):
         <rdf:li>
          <rdf:Description
           xmpDM:trackName="FLVCuePoint"
           xmpDM:trackType="FLVCuePoint"
           xmpDM:frameRate="f15">
          <xmpDM:markers>
           <rdf:Seq>
            <rdf:li>
             <rdf:Description
              xmpDM:startTime="550"
              xmpDM:name="q1in"
              xmpDM:cuePointType="Navigation">
             <xmpDM:cuePointParams>
              <rdf:Seq>
               <rdf:li
                xmpDM:key="marker_guid"
                xmpDM:value="2c2c8be0-75af-47d6-8938-4a365e33a550"/>
              </rdf:Seq>
             </xmpDM:cuePointParams>
             </rdf:Description>
            </rdf:li>
    Completely stumped here, any ideas appreciated!

    More digging into the new FLV shows that while XMP defines the cue points as type "navigation", there is prior data in the file that defines all the cue points as "event". This makes sense, because my SWF is correctly listening for and reacting to an "end" cue point in the FLV, but will not seek to any cue point since they are all set as "event".
    Copying and pasting from Notepad++:
    cuePoints       0       name   q1in  time @BYûçl‹D  type   event 
      1       name   q1out  time @JÜ(õ\  type   event 
      2       name   q2in  time @V£¥ãS÷Ï  type   event 
      3       name   q2out  time @^/ Ÿ¾w  type   event 
      4       name   q3in  time @_Oß;d  type   event 
      5       name   q3out  time @nE™™™™š  type   event 
      6       name   q4in  time @s G® zá  type   event 
      7       name   q4out  time @vNÄ›¥ãT  type   event 
      8       name   q5in  time @w¢Ù ‡+   type   event 
      9       name   q5out  time @zw×
    =p¤  type   event 
      10       name   end  time @€ð bMÒò  type   event 
    Any idea why AME is doing this?

  • Pointer not working properly in mozilla browser alone wat to do??????

    pointer moves around the page but unable to select using the pointer.each time i had to press backspace to type something on the search box.i cannot get a dropdown box in gmail to sign out because of pointer not working properly.how do i rectify it??????????

    You may have switched on caret browsing.
    *http://kb.mozillazine.org/accessibility.browsewithcaret
    You can press press F7 (on Mac: fn + F7) to toggle caret browsing on/off.
    *Tools > Options > Advanced : General: Accessibility: [ ] "Always use the cursor keys to navigate within pages"
    *http://kb.mozillazine.org/Scrolling_with_arrow_keys_no_longer_works
    *http://kb.mozillazine.org/Accessibility_features_of_Firefox

  • HTML5 API - Heat Layer Points Not Working

    Hi everyone,
    Really weird issue this, and I am honestly at a loss to explain what's going on, so hopefully someone can spot my mistake!
    I want to overlay a density-based heat map over a map of Britain, based on longitude/latitude points stored in OBIEE columns. I have copied and pasted some of the code (modifying it for my needs) from the SampleApp v406 "dynamic heat layer" demonstration.
    My "showMap(darray)" function is what is responsible for building and displaying the map. darray in this case is an 2-dimensional array containing all the OBIEE data in [row number][column number] format which is fed in via a narrative view. Note that mapview, heatLayer and eventsLayer are global variables defined in the main script body. Below is the code:
    function showMap(darray) {
       var baseURL  = "http://"+document.location.host+"/mapviewer";
       mapview = new OM.Map(document.getElementById("map"), { mapviewerURL:baseURL });
       mapview.addLayer(new OM.layer.ElocationTileLayer("background"));
       var marker = new OM.style.Marker({src: "/mapviewer/icons/BALL_sel.png", width:7, height:7});
       var heatStyle = getStyle();
      heatLayer = new OM.layer.VectorLayer("heatLayer",
                def:
                    type: OM.layer.VectorLayer.TYPE_LOCAL
                    renderingStyle: heatStyle
      addPoints(darray, heatLayer);
      mapview.addLayer(heatLayer);
    eventsLayer = new OM.layer.VectorLayer("eventsLayer",
                def:
                    type: OM.layer.VectorLayer.TYPE_LOCAL
                    renderingStyle: marker
      addPoints(darray, eventsLayer);
      mapview.addLayer(eventsLayer);
      // Set the initial map center and zoom level
      var mapCenterLat = 51.14076;
      var mapCenterLon = 0.88016;
      var mapZoom = 8;
      var mpoint = new OM.geometry.Point(mapCenterLon,mapCenterLat,8307);
      mapview.setMapCenter(mpoint); 
      mapview.setMapZoomLevel(mapZoom);
      console.log(heatLayer);
      mapview.init();
    Here is the getStyle() function definition, it simply returns a style for the heat map to use.
    function getStyle(){
      var colors = ["#C6DBEF","#6BAED6","#008fff","#00abff","#00d5ff","#00ffff","#00ff7f","#00ff00","#7fff00","#ffff00","#ffd500","#ffab00","#ff7f00","#ff5600","#ff2b00", "#ff0000", "#A50F15"];
      var config = {
        spotlightRadius:25,
        lengthUnit:"pixel",
        colorStops: colors,
        opacity:0.65,                 
        sampleFactor: 1
      var heatStyle = new OM.style.HeatMap(config);
      return heatStyle;
    and here is the addPoints(darray) function which is responsible for plotting points on the layer:
    function addPoints(darray,layer) {
      /*lat,long,estb,metric*/
      for (i=0;i<darray.length; i++) {
          var fid = i;
          var mpoint = new OM.geometry.Point(darray[i][4], darray[i][3], 8307);
          var f_attr = {attributes :{"Car Number":darray[i][0], "Event":darray[i][2], "Time":darray[i][1]}};
          var feature = new OM.Feature(fid,mpoint,f_attr);
          layer.addFeature(feature);
    I apologise for the code dump, but I thought it would be necessary to help troubleshoot.
    My issue is that any layer using the "marker" style displays the points in the correct place, but the heat layer, which uses the "heatStyle" style, stacks all of its points at 0,0 which is somewhere just off the west coast of Africa! You'll notice the call to console.log(heatLayer), investigating this reveals that the correct GPS coordinates are being stored in the heat layer's feature array, it's just for some reason rendering them all at 0,0. This is what normally happens if you use an invalid SRID and it doesn't know where to put them on the map (if I change mpoint in addPoints() to use -1 as a SRID for example, then it does the same thing to the eventsLayer layer), but both layers use the same function. I have torn apart my code several times trying to understand why it's doing this, and compared it to the code in the SampleApp v406 demo and it's identical! The only difference is that I've modified getStyle() to return a static definition since I'm not allowing my users to modify the heat layer style. I've also got another visualisation with the same heat style definition and it works fine, though that is not based on a world-map but a custom one.
    I've also tried clearing all caches, including the presentation layer and mapviewer server, as well as my browser's cache, and it's still not working.
    EDIT: I have also discovered that any functions called from heatLayer, such as setVisible(true/false), produces a javascript error in oraclemapsv2.js "ReferenceError: layer is not defined", but only if the call is made OUTSIDE the showMap function. It looks like, for whatever reason, heatLayer works fine until showMap() is finished, and then it suddenly stops working? Remember that heatLayer is a global variable, so it is not a scope issue. What is going on?! Also, calling console.log(heatLayer) in the same function as my setVisible() call shows that heatLayer is still defined and still contains the same data, it's just that oraclemapsv2.js no longer recognises it. Is this a bug or something?
    If anyone can identify what I've done wrong, I would be extremely grateful!
    Thanks,
    Richard

    Hi Mark,
    Can you post the create index command, as well as the contents of user_sdo_geom_metadata for the point layer?
    Also, can you post the results of doing a select count(*) from the index table as well as select count(*) from the point table?
    Thanks,
    dan

  • Access point not work correctly

    Hello everybody, I have a problem in my BlackBerry Passport. I can't turn on "access point" function,this function not work. Does this function work in the future OS updates?
    P.S access point give your internet from the mobile network to your WiFi

    Hotspot does work on all versions of BlackBerry 10 OS and all BB10 models. It is, however, controlled by your carrier. If it won't turn on you have one of several possible problems:
    1) Your mobile data is off or not working.
    2) You need to have Hotspot provisioned on your account by your carrier.

  • Cue Points not highlighted - gggrrr

    Hey,
    I'm using Flash Pro v8 Trial, and I'm importing a movie, but
    when I go to Advanced Settings, my Cue Points menu isn't
    highlighted. What am I doing wrong?
    Please help. This is really killing me.
    Kai

    senin wrote:
    > Hey,
    >
    > I'm using Flash Pro v8 Trial, and I'm importing a movie,
    but when I go to
    > Advanced Settings, my Cue Points menu isn't highlighted.
    What am I doing wrong?
    >
    > Please help. This is really killing me.
    Cue Points are only available if the video comes from outside
    source not if you
    import it to timeline.
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Play book charge point not working

    Dear Team,
    The charge point is not working and total battery is down now, am from India and living in Trivandrum. There is no expert too who can address the issue. Can Playbook be charged through some alternate point.
    Pl help me.

    hey ara,
    it's not about a disc that will work like all pressed discs out there.
    it's just that most dual layer discs are dvd+r and most set-top dvd players can only read dvd-r discs.
    if you want to look at your burned dual layer discs, look at them in a computer environment.
    the lack of compatibility has nothing to do with DVDSP.
    Mikey

  • Trackpad/point not working after keyboard removal

    Earlier today I opened up my T510 for maintanence. In doing so, I removed the keyboard. After putting everything back together, the trackpoint/trackpad did not work. That includes the the **bleep**-mouse, trackpad, and all mouse buttons. The trackpad wasn't even removed, but I guess the data connection for that goes through the rest of the keyboard (?).
    I took the keyboard out several times to make sure the connection was secure and inspect for physical damage. There was nothing.
    The obvious thing to do here is replace the keyboard and desperately hope that the problem is not with the mobo connector, but the problem is sufficently strange (keyboard working but not mouse) thatI figured it would be worth posting here to see if anyone has any insight. 
    Solved!
    Go to Solution.

    Solved.
    As I mentioned in the last post, the trackpad connects to the mobo through the cable labled as a speaker wire in the manual (this can be easily seen after removing the keyboard bezel/trackpad from the machine). There is a small latch to hold this cable in place on the mobo end. I had mixed up the secured and unsecured states for this latch, which apparently broke the connection. Fixed that now and everything works.
    It's probably worth explicitly pointing out that the **bleep**-mouse and mouse buttons on the keyboard do seem to be depenent on the trackpad being properly plugged in, despite having a seperate connection to the mobo.

  • Extension Point not working for extending Columns in sap.m.Table

    Hi Colleagues,
    We are recently developing a UI5 application and we tried to extend the Fragments and views as per wiki.
    Below is the code :
    <core:View xmlns:l="sap.ui.layout" xmlns:core="sap.ui.core"
      xmlns="sap.m" controllerName="ui.s2p.srm.sourcingcockpit.view.S1">
      <Page id="page" class="marginBoxContent" showNavButton="true"
      navButtonTap="_navBack">
      <content>
      <l:Grid class="" defaultSpan="L12 M12 S12">
      <Table id="demandsTable" mode="MultiSelect" growing="true"
      updateFinished="handleUpdateFinished" growingFinished="onListLoad"
      growingThreshold="20" items="{/UnsourcedDemandCollection}">
      <columns>
      <Column id="col_sos" minScreenWidth="tablet" demandPopin="true">
      <Text text="{i18n>col_sos}" />
      </Column>
      <core:ExtensionPoint id="extDemandColumn">
      <Column id="col_attach" minScreenWidth="tablet"
      demandPopin="false" width="4%">
      <Text text="{i18n>col_attach}" visible="false" />
      </columns>
      <items>
      <ColumnListItem>
      <cells>
      <Link
      text="{parts:[{path:'ObjectID'}, {path:'NUMBER_INT'}],formatter:'.formatObjectIdNumberInt'}"
      wrapping="true" />
      <core:ExtensionPoint name='extDemandList' />
      <l:HorizontalLayout>
      <l:content>
      <core:Icon src="sap-icon://attachment">
      </core:Icon>
      <Text text="({AttachmentCount})" class="paddingRightLeft" />
      </l:content>
      </l:HorizontalLayout>
      </cells>
      </ColumnListItem>
      </items>
      </Table>
      </l:Grid>
      </content>
      </Page>
    </core:View>
    In the above code we have specified two extension points. While extending it through Component.js, extDemandList works fine, but extDemandColumn does not work.
    Please let me know the way through which we can extend the columns in table and similarly formelements in FormContainer control.
    Thanks in advance.
    Best Regards,
    Ankit Jain

    I think you have defined 'id' instead of 'name' for the extDemandColumn
    <core:ExtensionPoint id="extDemandColumn">
    Regards,
    Jason

  • What is the orange light on my touchpad?? Pointer not working!

    The little orange light is lit up on my touchpad - then my pointer stopped working. I do not use a mouse.  I didn't know how to get pointer working again so I shut off computer.  What do I do the next time this happens?

    Hey sublikun, 
    I'm sorry you're running into this issue with your touchpad. Do you have or have you recently had an external USB mouse plugged in? If so, unplug it, restart and test the touchpad. 
    If not, perform a Hard Reset by
    1. Shutdown 
    2. Remove battery, power cord and all peripherals
    3. Hold Power button for 15 seconds and release
    4. Reinsert battery and power cord and turn the computer on
    5. Test the touchpad. 
    If a hard reset doesn't work, uninstall the ALPS or Synaptics Touchpad driver and Restart the computer.
    1. Click the Start button
    2. Type 'device' 
    3. Click Device Manager
    4. Expand Mice and Other Pointing Devices
    5. Double-click on the mouse driver (could be ALPS or Synaptics) to open Properties
    6. Click the Driver tab
    7. Click the Uninstall button 
    8. Restart the computer and test the touchpad.
    Let me know if either of those steps work or if you have any questions
     

  • SCCM 2012 Distribution Point not working properly on a Windows 2012 Server

    I have an SCCM SP1 site running on a Server 2008 R2 machine.  I had a couple of distribution points, also running on 2008 machines.  These served as DPs and PXE boot points.  I had no problems with these.
    I resently added a Server 2012 machine, and set it up as a DP, with a PXE boot point.  The servers is part of a boundary group containing about 1500 clients.  I distributed all of packages that are included in my main task sequence, and am able
    to PXE boot, and image machines successfully.
    However, I am having problems deploying other packages and Windows update packages from this DP.  It seems like I am only able to deploy packages that have the "Copy the content in the package to a package share on distribution points" enabled. 
    If this is not enabled, the client will get the deployment policy, but will never download the package.  The "In Progress" tab for the deployment status will just say "Waiting for content".
    I have checked the rereqs for IIS on the Server 2012 DP, also checked the firewall.  Everything that I see seems to be OK.  Are there other things that I can check to determine why this DP isn't working right?

    Hello,
    According to the following description, this behavior would be normal:
    If you configured the option Run program from distribution point on the
    Distribution Points page of the Deploy Software Wizard, do not clear the option
    Copy the content in this package to a package share on distribution points, because this will make the package unavailable to run from distribution points.
    http://technet.microsoft.com/en-in/library/gg682178.aspx

  • Recovery, and Black Point Not Working in 2.0

    I imported RAW pics from my old database (converted to 2.0). Wanted to try the new exposure adjustments, mainly recovery and BP. The HUD only lets me adjust exposure and brightness, the recovery and black point are grayed out and cannot be adjusted.
    Has anyone got this adjustment to work? I am using the trial version. No, I am not in the preview mode. The master is Canon RAW from 40D.

    Got it. Thanks! Just figured it out too that you need to choose the v2.0 RAW conversion on the RAW Fine Tuning adjustment toggle.
    Recovery and BP adjust a lot more sluggish on my MBP w/4G Ram then it does in the tutorial video. This is concerning since in have only imported about 40 pics so far.
    Time will tell.

  • Anchor point not working with pinned page navigation link

    Anchor point at top of page, named top, does not function when clicking on pinned navigation link text.  Correct link has been made in the Links menu.  What procedure might overcome this functional problem?
    I have the same type of anchor point named 'top' on other pages and the pinned navigation link works fine on those pages.  For some reason only one page shows this problem.
    Thanks,
    Tim

    Try moving the 'top' anchor down a little bit. I have run into a few issues when the anchor was to close to the top of the canvas for example JS not smooth scrolling, it would just jump to the top or it would not do a thing like what you are experiencing.

  • R2 - Distribution Point not working properly

    From my main SCCM R2 server, I went to add an additional server with multiple roles. 
    I can't tell if it's working properly, however. 
    For example, the Distribution Point role. I've set it as PXE boot, and our Cisco admin has setup an IP helper accordingly, but when I go to boot a client to PXE, it gets an error "Windows failed to start". 
    File: \Tmp\x86x64{13902C6F-DD5F-4467-88C9-1BAC44DF8287}.bcd
    status: 0xc0000098
    Info: The windows boot configuration data (BCD) file from the PXE server does not contain a valid operating system entry. Ensure that the server has boot images installed for this architecture. 
    From Boot Images on the main SCCM server, I had pushed them to the distribution point. Or so I thought? I mean, the "In Progress" tab says the distribution point server name I'm trying to push it to under the "Device" column. Then
    Description reads "Distribution Manager Successfully processed package "Boot Image (x64)" (package ID = STL00005)". 
    But it's been sitting like that for over an hour...
    WDS role is also installed on the DP I'm trying to PXE boot from. 
    Should I disable WDS and then what do I do in SCCM to get it to PXE boot and make sure the boot file for SCCM is on there? 

    Nvm I got it up
    I removed the WDS server but not the role of the DP in question
    I then removed the roles from the server within SCCM console
    Then added back only Distribution Point, then I was able to distribute the boot ups to it again, no errors in logs
    PXE boot working fine with task sequences 
    This is what I ran into after getting PXE to not throw DHCP error
    http://www.windows-noob.com/forums/index.php?/topic/8836-problems-with-pxe-and-nothing-in-smspxelog/

  • Points Not Working

    When points are awarded in the private discussion areas it does not appear they are being posted to the accounts.
    Dave
    Edited by: Dave Haseman on Apr 8, 2009 9:13 PM

    Hello Dave and Tony,
    Currently we are working through a manual process. These points have been noted and will be awarded in the future.
    Thank you for your patience,
    Diem

Maybe you are looking for

  • File transport problem in XI 3.0

    Hi, I am facing an issue in transporting XI objects(JAVA component). When I am using the transport wizard for Export design or configuration objects it's showing me the below error "Error during Export The System can't find the path specified". Expor

  • Zen Extra "USB Device Not Recognized" ??? HEL

    Hi all, I had a MPIO 20 gb MP3 player wich was stolen. No biggy, I took advantage of it and upgraded to a Nomad Jukebox Zen Extra 30gb. It look and feel nice and the navigation seems really easy. Where it gets more difficult is the "simple" pluging i

  • System and sysaux file block corruption

    Errors in file /u01/app/oracle/diag/rdbms/pdent/pdent/trace/pdent_smon_3135.trc: ORA-00604: error occurred at recursive SQL level 1 ORA-01578: ORACLE data block corrupted (file # 1, block # 91607) ORA-01110: data file 1: '/u01/app/oracle/oradata/pden

  • Java consol error

    hi to all i got the following error in java consol. Forms Applet version is : 10.1.2.0 java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.      at sun.applet.AppletClassLoader.getBytes(Unknown Source)      at sun.apple

  • Not installing, just see Waiting... and Finishing...

    I thought it had installed but it seems to have "stalled"! Is there something I am doing wrong? Thanks. Robert and Laura Windows 7