Can't get the current bitrate info use SMPTE-TT Plugin

Using OSMF2.0 to stream a smil title.
Add the MediaPlayerCapabilityChangeEvent.IS_DYNAMIC_STREAM_CHANGE event listener, after the event dispatch then add the DynamicStreamEvent.SWITCHING_CHANGE event listener.
The bitrate info can be report, normal. But after I add the SMPTE-TT plugin and load it like this:
var pluginResource:MediaResourceBase = new PluginInfoResource(new SMPTETTPluginInfo);mediaFactory.loadPlugin(pluginResource);
The title can be stream correct and the quality of the video can be set by the bandwidth, but only the DynamicStreamEvent.SWITCHING_CHANGE event can not be dispatch, so I can't get the current bitrate info.
I debug it in the OSMF source code and find the issue in the org.osmf.elements.compositeClasses.ParallelDynamicStreamTrait class line 323
FYI:
onSwitchingChange function that the numChildrenSwitching property always 0, so it can not call the setSwitching function and can not dispatch DynamicStreamEvent.SWITCHING_CHANGE event.
So, I add some changes from line 333 to line 336 and it has be fix:
Environment:Flex SDK 4.6 + flash player 11.8.
I don't know it is a bug in the OSMF framework and I want to get more info about it.
Thanks.

can you turn off the message pane (F8) between restarts? I am guessing it will turn on again as well.

Similar Messages

  • How can i get the HTTP header info using Java

    Hi,
    I kinda need to extract the HTTP header info from a page that i goto through a URL objecrt and socket. Java.
    Can someone please help me.. thanks!!!!
    System.out.println("Enter URL : ");
    String getAdd; // The URL that the crawler begins at.
    // Manually take in URL
    Scanner sc = new Scanner(System.in);
    getAdd = sc.nextLine();
    URL myURLobj = new URL(getAdd);
    String hostName = myURLobj.getHost();
              Socket s = new Socket(hostName, 80);

    URL url = new URL(getAdd);HttpURLConnection conn = (HttpURLConnection)url.openConnection();
    Map<String, List<String>> headerFields = conn.getHeaderFields();

  • I have a photo album in my apple tv but can't get the apple tv to use it as a screen saver. it is using older photos

    I have a photo album in my apple tv but can't get the apple tv to use it as a screen saver. it is using older photos

    Is this a software or hardware issue? 

  • How can I get the current user an  resource context  in a portal JSPDynPag

    How can I get the current user (com.sapportals.portal.security.usermanagement.IUser?)an the resource context  in a portal component (JSPDynPage)?
    Thanks.

    Hi Jon,
    Here is the code to get the current user and resource context in your JSPDynPage:
    IPortalComponentRequest  currentRequest  = (IPortalComponentRequest)pageContext.getAttribute(javax.servlet.jsp.PageContext.REQUEST);
    com.sapportals.portal.security.usermanagement.IUser contextUser = (com.sapportals.portal.security.usermanagement.IUser) currentRequest.getUser().getUser();
    ResourceContext resourceContext = new ResourceContext(contextUser);
    Greetings,
    Praveen Gudapati
    p.s. points are always welcome for helpful answers

  • How can I get the App store to use money in my account rather than a credit card when I want to buy something?

    How can I get the App store to use money in my account rather than a credit card when I want to buy something?

    The iTunes/Mac App Stores use credit on an account first. You are asked to supply an additional payment method when the cash credit doesn't cover the complete cost of the purchase.

  • I choose to restore from a safety backup in iTunes. It works ok, but iTunes is still asking to restore the iPhone. Why can't I get to syncronise the phone? I can't get the menue I am used to in iTunes. It only states "Klargjør iPhone" (Norwegian). Somethi

    I choose to restore from a safety backup in iTunes. It works ok, but iTunes is still asking to restore the iPhone. Why can't I get to syncronise the phone?
    I can't get the menue I am used to in iTunes. It only states "Klargjør iPhone" (Norwegian). Something like "Start up your iPhone". I've done this several times, restarted the iPhone and my computer, but I can't get ready to sync... The phone is working ok and my backup data is restored into the phone.

    Hi there,
    I would recommend taking a look at the troubleshooting steps found in the article below.
    iOS: Troubleshooting backup issues in iTunes
    http://support.apple.com/kb/ts2529
    -Griff W.

  • HT1918 how  can i get the user manual  info back  which has  been  erased  from my  settings  icon  pafe  after  a restore from itunes

    how  can i   get  my user  manual info  back onto  my  settings   menu 
    this  heading  did  not  appear  on the settings  menu following  a  restore  necessitated  bt  a  freezing screen  glitch  thanks

    I'm not entirely sure what you are referring to, there isn't a user manual section in the iPad's Settings app. If you want an iPad then you can either download it from here : http://support.apple.com/manuals/ipad/
    Or if you download the iBooks app then there should be a copy in the ibookstore in it

  • How can I get the current user and the current page?

    Hi everyone
    Question..
    It is possible to get the current user (from the user's database on apex) and the current page? (I mean, if I'm in page 4 be able to query a variable / function or something which could give me the current displayed page)
    Thank you very much... I'd been researching without success :-S so I'll appreciate your help
    Regards,
    Fury

    Fury,
    If the user has authenticated, :APP_USER is the name that was used. The current page id is in :APP_PAGE_ID.
    Although I showed bind variable notation for those, & substitution format and v() notation are also available for referencing developer-defined items or built-in names. See the User's Guide for more details.
    Scott

  • Can't get the result if I use SUBSTR From the resultSet

    Hi,
    I have a request that make some changes on a String data.
    This modification is an extraction of a sub string with SUBSTR function of oracle.
    The problem is that I can to get the result on my java code
                   pst = connect.prepareStatement(GET_PATH);
                   rset = pst.executeQuery();
              while (rset.next()) {
                   String chemin = rset.getString("IMG_PATH"); // rset.getString(2);
                   system.out.println("Le chemin récuperé de la base est : " + chemin);
                   chemins.add(chemin);
              }this is the request :
    SELECT DISTINCT nl.img_id, SUBSTR(ni.img_chemin, 1, INSTR(ni.img_chemin, '\', -1)) IMG_CHEMIN from images nlThe oracle documentation say the SUBSTR function return a STRING type.
    Thnaks for your help. (And sorry for my little english)
    Technical Information :
    DB : ORACLE
    DRIVER VERSION : ojdbc14-10.2.0.3.0.jar (tested with version 9 same thing)
    Java 6 update 3
    Edited by: Aberghouss on 29 août 2008 17:11

    Aberghouss wrote:
    Hi,
    I change the INSTR(ni.img_chemin, '\', -1) by number 20 and the program get correctelly the value
    SELECT DISTINCT nl.img_id, SUBSTR(ni.img_chemin, 1, 20) IMG_CHEMIN from images nlNow have you any idea how can I resolve this problem with INSTRLittle confusing what you are actually doing.
    You need to post code that actually has the problem.
    Given that you are using names, rather than indexes, usually the problem is that the name doesn't match what is actually in the meta data. Try printing the meta data. And try using indexes just to verify that there is in fact a result (which would be another reason for not getting it.)

  • Can't get the current value of item.

    i user javascript to set a item value by a Partial Page Refresh .then i want to turn to another page by a button and Transfer the item's new value to the second page's item,but the value of the item is always teh old value but not de new value,how can i get the new value of the item first. thanks;

    Hi 蓝色理想_行者 ( Ideal _ blue Walker),
    >
    i user javascript to set a item value by a Partial Page Refresh .then i want to turn to another page by a button and Transfer the item's new value to the second page's item,but the value of the item is always teh old value but not de new value,how can i get the new value of the item first.
    >
    Values set using JavaScript are present only in HTML DOM, not in the session state. To set the value in session state you need to use PL/SQL.
    Exact implementation will depend on how you navigate to the second page, by doing a submit or something else.
    Cheers,

  • How can i get the current number of word in paragraph?

    I have cursor set on some word in Para. And i'd like to make italic all words before it. How can i get the number of current word in collection Words in mInd.Selection.Item(1)?

    Hi Dmitry1776,
    Try something like this:
    Set myInsertionPoint = myInDesign.Selection.Item(1)
    Set myStory = myInsertionPoint.ParentStory
    Set myStartCharacter = myStory.Characters.Item(myInsertionPoint.Paragraphs.Item(1).Index)
    Set myCharacter = myStory.Characters.Item(myInsertionPoint.Index)
    Set myEndCharacter = myStory.Characters.Item(myCharacter.Words.Item(1).Index - 1)
    Set myText = myInsertionPoint.ParentStory.Texts.ItemByRange(myStartCharacter, myEndCharacter).Item(1)
    ...at this point, myText is a range of text from the start of the paragraph to just before the text containing the insertion point.
    Thanks,
    Ole

  • How can I get the current time in Xcelsius?

    I'm reading in an XML feed containing dates/times, and I'd like to do a calculation to see how old it is -- but I can't seem to access the current time in Xcelsius (=now() doesn't work -- it only calculates once, when the model is loaded).
    I can get around that (a bit awkwardly) with a timer, but I'd also like to know what the user's current time zone is... Any ideas?

    Hi,
    Maybe you could use a web service to return the required information - you can feed the timezone to the web service.
    Have a look at this:
    http://www.earthtools.org/webservices.htm#timezone
    http://markitup.com/WebServices/TimeZones.asmx?op=CurrentDateTime
    Best regards,
    Jacob

  • How can i get the time capsule to use my mac's mac address

    on some wireless routers you can get the router to use the mac address of a client connected to it instead of it's own.
    Can i do that on the time capsule?

    Sorry, but no. You cannot change (spoof) the MAC address on any of the AirPort/Time Capsule routers.

  • How can I get the memory allocation info of a java thread?

    Now I am going to write a program to monitor the execution condition of the java threads. But it seems that the classes in standard edition of JDK does not provide facilities to get the information such as the memory allocation and CPU time of a running thread. How can I do with it? Can I use JNI or JVMDI to get them? If it could do, how?

    Thanks a lot. I just browsed the specification of jvmpi. It is interesting and it seems that I can get the information I need. However, if I want to get the information in my program, I mean, if I want to build a class which may use JNI method to invoke the function written with JVMPI, and then forward the data to other upper layer objects, can it be done?

  • How Can I Get The Table_Name Where I Used Dbms_Errlog?

    CREATE TABLE ERROR_LOG
    ORA_ERR_NUMBER$      NUMBER,
    ORA_ERR_MESG$           VARCHAR2(2000 CHAR),
    ORA_ERR_ROWID$      UROWID(4000),
    ORA_ERR_OPTYP$      VARCHAR2(2 CHAR),
    ORA_ERR_TAG$           VARCHAR2(2000 CHAR),
    ORA_ERR_TABLE_NAME      VARCHAR2(30),
    ORA_ERR_TIME           DATE     DEFAULT SYSDATE,
    ORA_ERR_AUTHOR     VARCHAR2(30)     DEFAULT USER     
    I create a single table for handling errors for all tables.
    I just want to Get the table name where I used dbms_errlog.
    I want to get table_name where I performed last DML Statemet?
    Edited by: Nilesh Hole on May 24, 2010 4:50 AM
    Edited by: Nilesh Hole on May 24, 2010 4:57 AM
    Edited by: Nilesh Hole on May 26, 2010 3:43 AM

    I should have written "you should not" rather than "can not." The advice holds.
    The point of using the package in its default mode is that you can fix the problems.
    Do it generically and all you learn is that an error occurred.
    SQL> select * from ERROR_LOG_SERVERS;
    ORA_ERR_NUMBER$ ORA_ERR_MESG$                                      ORA_ERR_ROWID$     OR ORA_ERR_TA
                  1 ORA-00001: unique constraint (UWCLASS.PK_SERVERS)                     I
                    violatednot much useful information.
    But I appreciate you posting the idea so I show on my website why doing this is a bad idea.

Maybe you are looking for

  • IPhoto Library

    I recently installed iLife '06. When I try to start iPhoto, a screen pops up and says the photo library needs to be upgraded. I click on upgrade and it tries to upgrade then says there is a problem accessing some of the files in the library and that

  • Database Adapter and SQL Server procedure issue

    Hello, I am using Jdev 11.1.1.7.0 and SQL Server 2005. In the Database Adapter configuration wizard, Specify Stored Procedure step, I choose the "GEACupax" schema and got the following error after a click on "Procedure Browse" button: com.microsoft.s

  • PHP MySQL connect error

    OK I get the following error when running my php pages on our new web server (Windows Server 2003): Fatal error: Call to undefined function mysql_pconnect() in c:\Inetpub\wwwroot\jionas_website\Connections\jonas_website.php on line 9 When I open the

  • MM not tally with FI

    when i print report MB5S to compare with FBL3N base on a clearing account, I found you both report not tally. This is become user may key in the vendor invoice directly to through FB60 without go thorugh the MM module. How to rectify this error so th

  • Error initiating travel expense form

    Dear Guru's, We have an issue displaying the Travel Expense form in ESS. We are not using the PDF forms but the HTML , no ADS has been set up and followed the exact steps mentioned in SAP Note 1032311. So we deleted the URL parameter in the URL param