[svn:osmf:] 17480: 1. Add comments to the fixes in CompositeTimeTrait. as and FMSURL.as

Revision: 17480
Revision: 17480
Author:   [email protected]
Date:     2010-08-25 10:56:31 -0700 (Wed, 25 Aug 2010)
Log Message:
1. Add comments to the fixes in CompositeTimeTrait.as and FMSURL.as
2. Remove unnecessary code from FMSURL.as
3. Add checks for additional streamName prefix, mp3 and id3 for FMSURL.as
4. Add unit tests for FMSURL.as fixes.
Modified Paths:
    osmf/trunk/framework/OSMF/org/osmf/elements/compositeClasses/CompositeTimeTrait.as
    osmf/trunk/framework/OSMF/org/osmf/net/FMSURL.as
    osmf/trunk/framework/OSMFTest/org/osmf/net/TestFMSURL.as

Meta X works great for editing the metadata.
-> http://www.kerstetter.net/index.php/projects/software/metax
I'm putting together a bunch of home videos for my parents
How are you giving them these videos? As a regular, playable DVD (such as burned with iDVD)?
If so, tags are not needed as they are not written to the playable DVD.
However, it is good to add the metadata so you have the info in the file on your computer.

Similar Messages

  • If I buy an iPhone5 in Canada and add Applecare in the US, can I use and get my phone serviced in the US?

    If I buy an iPhone5 in Canada and add Applecare in the US, can I use and get my phone serviced in the US?

    Thanks for the response.  Called the Perimeter Mall store yesterday morning with fingers crossed frist thing in the morning.  They had one.  Zipped up there and now I have it: White 32gig i5 rocing a TMobile SIM and an Seidio Active case. 

  • Why does the "fix" for firefox copying and pasting not work?

    I did the fix a few times and restarted firefox, with no success. Also, I installed the latest version of firefox and it is slower now. I have to use firefox for school, otherwise I would just find another way.

    In what way is Firefox slow?
    Is this all the time or only with loading web pages?
    What kind of fix do you mean with: ''Why does the "fix" for firefox copying and pasting not work'' ?

  • Tried the fix from last contact and still does not look right.

    I tried the fix that you recommended and that had no effect. The colors on some web sites are off to the point that I can not read the material since the colors are so dark or even one site came up with an all black background that I never had that before on that site. Some sites are scrambled so much that it shows the site as an outline looks when writing a paper. On Monzilla, when you click on; i.e., 'cut' the bar highlights but the writing on the bar becomes so faint that you can not make it out. I never had this problem until I allowed the latest version to load. I also shut down the computer but that had no effect. If I look for something and use Yahoo it comes up with writing over writing on some lines. So why did this occur?

    That's consistent with trouble with the Segoe UI fonts on your system.
    If you're using Windows XP or Windows Vista, try Vortical's technique from the following post:
    Re: iTunes 10.1 Missing Text
    But if you're using Windows 7, try itunesTRK's suggestion from the following post:
    menu bar invisible

  • Add Comment in the very start of every Custom Program Automatically

    Hi, Friends,
    I have more than one thousand custom program and I have a requirement to add 4 to 5 lines of  comment in the very start of every program, means if code of the program is starting from the 1st line than this line must go to number 5 if I enter the 4 line comments. Because of large number of program it is very difficult to open every program and than add comments line and save it to request I want to save all these program to one request.
    I have searched but not found such requirement from any one before.
    Is it possible through any FM or if some one have sample Code Please Guide me.
    Thanks and Kind Regards,
    Faisal

    Hmm,
    Thanks for your reply i am doing the following way but it directly insert the lines in the source code.
    DATA: pro_line(255),
          it_pro LIKE TABLE OF pro_line.
    READ REPORT 'ZFSL_TEST' INTO it_pro.
    pro_line = '*&H*********************************************************************'.
    INSERT pro_line INTO it_pro INDEX 1.
    pro_line = '*&H        Requested By : Sales and Distribution Department            *'.
    INSERT pro_line INTO it_pro INDEX 2.
    pro_line = '*&H         Approved By : GM(S&M) and PM(SAP)                          *'.
    INSERT pro_line INTO it_pro INDEX 3.
    pro_line = '*&H         Tables Used : kna1, pa0001, zsdotr, zsdo, zsdo_ded         *'.
    INSERT pro_line INTO it_pro INDEX 4.
    pro_line = '*&H Program Description : Fix Sampling Report For Standard Pack        *'.
    INSERT pro_line INTO it_pro INDEX 5.
    pro_line = '*&H*********************************************************************'.
    INSERT pro_line INTO it_pro INDEX 6.
    INSERT REPORT 'ZFSL_TEST' FROM it_pro.
    its ok for now but my Requirement was to insert the lines and also save to the Given request as a active copy with the inserted lines.
    Thanks and Kind Regards,
    Faisal

  • [svn:osmf:] 11200: Adding readme.txt for the CuePointSample app.

    Revision: 11200
    Author:   [email protected]
    Date:     2009-10-27 14:11:04 -0700 (Tue, 27 Oct 2009)
    Log Message:
    Adding readme.txt for the CuePointSample app.
    Added Paths:
        osmf/trunk/apps/samples/framework/CuePointSample/readme.txt

    Thanks to some help from another forum...here is the (simplified) code in case anyone needs it
    // create a container and add it to the Display List
    container = new MediaContainer  ;
    addChild(container);
    // create a video element and add it to the container
    mediaElement = new VideoElement(new URLResource(url)); // url --> your h.264 video
    container.addMediaElement(mediaElement);
    // create a player and add the video to it
    player = new MediaPlayer;
    // create timelinemetadata, pass the media element to it
    dynamicTimelineMetadata = new TimelineMetadata(mediaElement);
    // create a new cuepoint
    var cuePoint:CuePoint = new CuePoint(CuePointType.ACTIONSCRIPT, 1, "good point", null); // time = 1, name = "good point"
    // add the cuepoint to the timeline by using "add marker"
    dynamicTimelineMetadata.addMarker(cuePoint);
    // listen for when the cue point is reached
    dynamicTimelineMetadata.addEventListener(TimelineMetadataEvent.MARKER_TIME_REACHED, onCuePoint);
    function onCuePoint(event:TimelineMetadataEvent):void
    var cuePoint:CuePoint = event.marker as CuePoint;
    trace("Cue Point at " + cuePoint.time);

  • [svn:fx-trunk] 11191: add mxmlc_ja to the mxmlc classpath so Japanese messages will be displayed in builder .

    Revision: 11191
    Author:   [email protected]
    Date:     2009-10-27 12:51:40 -0700 (Tue, 27 Oct 2009)
    Log Message:
    add mxmlc_ja to the mxmlc classpath so Japanese messages will be displayed in builder.
    QE notes: loc team to make sure ja msgs appear
    Doc notes:
    Bugs: sdk-22806
    Reviewer:
    Tests run: checkintests
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/sdk-22806
    Modified Paths:
        flex/sdk/trunk/modules/compiler/build.xml

    sorry i forgot that... i use php5 so i guessed at the module name... upon looking closer at the conf its mod_php4.c
    <pre>
    <IfModule mod_php4.c>
    AddType application/x-httpd-php .php
    </IfModule>
    </pre>

  • [svn:osmf:] 10104: Integrate VAST code into the new VAST library project.

    Revision: 10104
    Author:   [email protected]
    Date:     2009-09-09 16:55:16 -0700 (Wed, 09 Sep 2009)
    Log Message:
    Integrate VAST code into the new VAST library project.
    Modified Paths:
        osmf/branches/briggs-prototype/libs/VAST/.flexLibProperties
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/media/VASTMediaGenerato r.as
        osmf/branches/briggs-prototype/plugins/MASTPlugin/org/openvideoplayer/mast/dom/MASTDocume ntProcessor.as
        osmf/branches/briggs-prototype/plugins/MASTPlugin/org/openvideoplayer/mast/media/MASTLoad er.as
    Added Paths:
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/loader/
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/loader/VASTLoadedContex t.as
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/loader/VASTLoader.as
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/media/DefaultVASTMediaF ileResolver.as
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/media/IVASTMediaFileRes olver.as
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/model/VASTAd.as
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/model/VASTAdBase.as
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/model/VASTAdInline.as
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/model/VASTAdWrapper.as
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/model/VASTCompanionAd.a s
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/model/VASTMediaFile.as
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/model/VASTNonLinearAd.a s
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/model/VASTTrackingEvent .as
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/model/VASTUrl.as
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/model/VASTVideo.as
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/model/VASTVideoClick.as
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/parser/
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/parser/VASTParser.as

    bringrags wrote:
    We do indeed recommend replacing the osmf.swc from a Flex 4 project if you're going to use OSMF in Flex 4, but you may (will?) run into issues if you attempt to use Flex's VideoPlayer within that project.  Note also that you'll need to replace osmf.swc for each individual project (or edit your flex-config.xml file to point to the updated SWC).
    In terms of future plans, we are working closely with the Flex team to ensure that their next release ships with the latest OSMF version.  No ETA on that though.
    I have followed the recommendations and removed the old version of swc and replaced it with the release version. And so far the video and audio players work fine without errors.
    But looking at the flex-config.xml I see that it still points to the old version.
    <!-- OSMF SWC -->
        <runtime-shared-library-path>
    <path-element>libs/osmf.swc</path-element>
    <rsl-url>http://fpdownload.adobe.com/pub/swz/flex/4.0.0.14159/osmf_flex.4.0.0.13495.swz</rsl-url>
    <policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
    <rsl-url>osmf_flex.4.0.0.13495.swz</rsl-url>
    <policy-file-url></policy-file-url>
    </runtime-shared-library-path>
    Could you elaborate a little bit more on editing this part of flex-config.xml?
    Thanks,
    FTQuest

  • [svn:bz-trunk] 18299: Add new qe webtier compiler to qa-regress and qa-manual.

    Revision: 18299
    Revision: 18299
    Author:   [email protected]
    Date:     2010-10-25 08:58:49 -0700 (Mon, 25 Oct 2010)
    Log Message:
    Add new qe webtier compiler to qa-regress and qa-manual.   I couldn't remove the old webtier jar files yet since there is a Java class (HttpServiceTest.java) which is still depending on it.    It is not clear which test is using that and further research is needed to figure it out and clean the jars.
    Checkin tests passed.
    Modified Paths:
        blazeds/trunk/qa/apps/qa-manual/build.xml
        blazeds/trunk/qa/apps/qa-regress/build.xml
    Added Paths:
        blazeds/trunk/qa/lib/ant-launcher.jar
        blazeds/trunk/qa/lib/ant.jar
        blazeds/trunk/qa/resources/webtier/qa/
        blazeds/trunk/qa/resources/webtier/qa/compileMXML.xml
        blazeds/trunk/qa/resources/webtier/qa/src/
        blazeds/trunk/qa/resources/webtier/qa/src/qa/
        blazeds/trunk/qa/resources/webtier/qa/src/qa/utils/
        blazeds/trunk/qa/resources/webtier/qa/src/qa/utils/mxml/
        blazeds/trunk/qa/resources/webtier/qa/src/qa/utils/mxml/MXMLCServlet.java
        blazeds/trunk/qa/resources/webtier/qa/web.xml

  • I have an iPhone 4S and I cannot get the iMessage feature to work.  I've done the fix that was online and it still won't work.

    I need help getting the iMessage feature to work.  I've done the fix that is shown online several times and still cannot get it to work.  Are there any other suggestions out there to fix this problem?

    HI,
    What was "the Fix" ?
    Where was it On Line ?
    So your iPhone is on a Wifi network ?
    You have gone to Settings > Messages and Enabled Messages.
    You cannot then send iMessages  from your iPhone Number ?
    You should be able to sent to other iOS devices that are using other iPhone Numbers or Apple IDs or to Macs that are running Messages with the iMessages account enabled and those may also be using iPhone Numbers or Apple IDs depending how they were set up.
    On the iPhone in Settings > Messages you can then add an Apple ID
    You can then chose to Send from the Apple ID or iPhone number as the Start from option.
    Adding the Apple ID links the Apple ID and iPhone Number and if you have a Mac, and are running Messages with the same ID, they will sync (Display on all Devices) all the subsequent iMessages you receive.
    9:27 pm      Thursday; December 26, 2013
      iMac 2.5Ghz 5i 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • Can you add comments to the XML reports other than one Block Comment and one Test Comment?

    I know how to use Block Comments and Test Comments but if I need to add more comments to my XML report in a test other than one Test comment, is there a way to do this?  In other words, I would like to be able to add say 5 comment lines for a single test.  Also, can a Test Comment or Block comment be more than one line in length?  If so, how do you do that?

    What version of TS do you have?  If you have 4.1 or better (might be possible in 4.0 I can't remember) you can just use the additional results.  So in the step properties you will see Additional Results.  Then just add as many as you want. 
    Then you will see it show up in the report like you want.  I couldn't get multiple lines to work in one comment.  I tried \n but that didn't seem to be supported here.
    Hope this helps,
    jigg
    CTA, CLA
    teststandhelp.com
    ~Will work for kudos and/or BBQ~
    Attachments:
    StepComments.JPG ‏38 KB

  • [svn:osmf:] 13113: Changing to not use an embedded font by default, and adding instructions on how to use the free 'type writer' bitmap font.

    Revision: 13113
    Revision: 13113
    Author:   [email protected]
    Date:     2009-12-21 01:08:10 -0800 (Mon, 21 Dec 2009)
    Log Message:
    Changing to not use an embedded font by default, and adding instructions on how to use the free 'type writer' bitmap font.
    Modified Paths:
        osmf/trunk/libs/ChromeLibrary/.flexLibProperties
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/controlbar/widgets/ScrubBar.as
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/controlbar/widgets/URLInput.as
    Added Paths:
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/fonts/
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/fonts/Fonts.as
    Removed Paths:
        osmf/trunk/libs/ChromeLibrary/assets/images/stop_up.png_1

    Your site was built using tables, whose sizes are defined in your site.
    If we look at your first table definition, we can see:
    <table width="861" height="1449" border="3" cellpadding="0" cellspacing="0" bordercolor="#868787">
    Your table has a width of 861 pixels and an overall height of 1449 pixels. Anything you put into that overall box must fit those dimensions, else
    it won't be visible. Anything you add above it will push everything down. You can redefine your sizing to let you edit more inside of the table elements.
    This is why, when you type in more text, things act weird. If you are in Dreamweaver, you must find the right cell to put your text into and then enter
    text there. Unfortunately, this is going to push things around, which were all lined up using tables. And this gets everything offset with respect to
    everything else in your website.
    And that is why everyone is saying, "Start Over!"
    I just inherited a website that has been put together using tables. I'm going to have to expend considerable effort in rewriting the entire design of the
    website because of that. because everything I intend to add to the pages on the site is going to need to be deconstructed in order to get it to work
    properly if I'm adding text and pictures that need to line up with each other.
    You need something done quick and dirty and the only way I can recommend you do that is to use Dreamweaver to show you the tables you have
    and put what you need in a new table that is defined above or below the tables you all ready have defined. Do that and then get back to someone here
    who knows how to make a website correctly to clean up your entire website and make it editable -- which will cost you some money, but it will be
    money well-spent.
    I like to quote this maxim: Good, Fast, Cheap. Pick any two. This works for website design. You can get it fast and cheap, but it won't be good. I
    think you may have chosen that route.

  • [svn:osmf:] 10711: Adding missing reference to the VAST library.

    Revision: 10711
    Author:   [email protected]
    Date:     2009-09-29 21:38:56 -0700 (Tue, 29 Sep 2009)
    Log Message:
    Adding missing reference to the VAST library.
    Modified Paths:
        osmf/trunk/framework/MediaFrameworkAirTest/.actionScriptProperties

    Hi Marius,
    I think this problem could be linked to the changes in the layout API and the order of the loading of the video elements.
    Please try to add layoutmetadata with index property to parallel videos so they render in the correct order, something like:
                var layout1:LayoutMetadata = new LayoutMetadata();
                layout1.index= 10 ;
                videoElement.addMetadata(LayoutMetadata.LAYOUT_NAMESPACE, layout1);
                var layout2:LayoutMetadata = new LayoutMetadata();
                 layout2.index= 20 ;
                 vpaidNonLinear.addMetadata(LayoutMetadata.LAYOUT_NAMESPACE, layout2);
    Tell me if that worked,
    S.

  • [svn:osmf:] 14024: 1. add multiple BootstrapInfo support

    Revision: 14024
    Revision: 14024
    Author:   [email protected]
    Date:     2010-02-07 14:53:33 -0800 (Sun, 07 Feb 2010)
    Log Message:
    1. add multiple BootstrapInfo support
    2. add fragment discontinuity support
    3. modify unit tests accordingly
    Modified Paths:
        osmf/trunk/framework/OSMF/.flexLibProperties
        osmf/trunk/framework/OSMF/org/osmf/manifest/BootstrapInfo.as
        osmf/trunk/framework/OSMF/org/osmf/manifest/ManifestParser.as
        osmf/trunk/framework/OSMF/org/osmf/manifest/Media.as
        osmf/trunk/framework/OSMF/org/osmf/metadata/MetadataNamespaces.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/HTTPStreamingUtils.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/f4f/AdobeFragmentRunTable.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/f4f/HTTPStreamingF4FIndexHandler.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/f4f/HTTPStreamingF4FIndexInfo.as
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/f4f/HTTPStreamingF4FStreamInfo.as
        osmf/trunk/framework/OSMFTest/org/osmf/manifest/TestManifestParser.as
        osmf/trunk/framework/OSMFTest/org/osmf/net/httpstreaming/f4f/TestAdobeFragmentRunTable.as
        osmf/trunk/framework/OSMFTest/org/osmf/net/httpstreaming/flv/FLVTestHelper.as
    Added Paths:
        osmf/trunk/framework/OSMF/org/osmf/net/httpstreaming/f4f/FragmentAccessInformation.as

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • [svn:osmf:] 10164: Prototype: Add support for retrieving VAST wrapper elements.

    Revision: 10164
    Author:   [email protected]
    Date:     2009-09-11 12:11:59 -0700 (Fri, 11 Sep 2009)
    Log Message:
    Prototype: Add support for retrieving VAST wrapper elements.  Introduce HTTPLoader for retrieving data from URLs.  Minor changes to VAST object model and parser (just the minimum to get wrapper parsing to work), probably needs a formal pass.
    Modified Paths:
        osmf/branches/briggs-prototype/libs/VAST/.flexLibProperties
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/loader/VASTLoadedContex t.as
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/loader/VASTLoader.as
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/media/VASTMediaGenerato r.as
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/model/VASTAdInline.as
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/model/VASTAdWrapper.as
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/parser/VASTParser.as
        osmf/branches/briggs-prototype/plugins/MASTPlugin/org/openvideoplayer/mast/dom/MASTDocume ntProcessor.as
        osmf/branches/briggs-prototype/plugins/MASTPlugin/org/openvideoplayer/mast/media/MASTLoad er.as
    Added Paths:
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/http/
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/http/HTTPLoadedContext.as
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/http/HTTPLoader.as
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/loader/VASTDocumentProc essedEvent.as
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/loader/VASTDocumentProc essor.as
        osmf/branches/briggs-prototype/libs/VAST/org/openvideoplayer/vast/model/VASTAdInfoBase.as

Maybe you are looking for

  • Not displaying the data in the ALV Microsoft Excel (Ctrl+Shift+F7)..

    Hi All, I can able to display the data through the FM REUSE_ALV_GRID_DISPLAY in the out put screen.When I click on the Microsoft Excel (CtrlShiftF7) at the ALV toolbar to view the same data in excel sheet it does open the excel sheet WITHOUT ANY DATA

  • Had BB 8350 for a year, but now it has network issues??

    I use a data plan on my BB and also use it to tether to my laptop (using VZAccess). Recently, I've been getting the message on my BB "Insufficient network coverage..." when attempting to use the browser.My service will flop between 1X-3G service. Eve

  • Why I can't open iPhoto at all?

    I don't know why but suddenly the iPhoto icon disappeared and trying to open the software a box says: You can't open the application "iPhoto.app" cause it may be damaged or incomplete (or something like this, I've just translated from the italian mes

  • Is there a risk of overcharging?

    It say 4 hours to charge but my iPod charges in about 2. If I keep charging for the 4 hours is there a risk or overcharging and damaging the battery?

  • Dynamic ALV: but with globally available dynamic table type

    Hello, I would like to create a dynamic node for a ALV and dynamic table types to fill and the ALV. The ALV data can be changed so I need to read it again. I have read all the threads about dynamic node create and i have no problem with it. I can cre