[svn:osmf:] 13888: PARB feedback: Remove ContentElement and ContentLoader, refactor common image/SWF code into a non-public utility class.

Revision: 13888
Revision: 13888
Author:   [email protected]
Date:     2010-01-29 11:44:20 -0800 (Fri, 29 Jan 2010)
Log Message:
PARB feedback: Remove ContentElement and ContentLoader, refactor common image/SWF code into a non-public utility class.
Modified Paths:
    osmf/trunk/framework/OSMF/.flexLibProperties
    osmf/trunk/framework/OSMF/org/osmf/image/ImageElement.as
    osmf/trunk/framework/OSMF/org/osmf/image/ImageLoader.as
    osmf/trunk/framework/OSMF/org/osmf/plugin/DynamicPluginLoader.as
    osmf/trunk/framework/OSMF/org/osmf/swf/SWFElement.as
    osmf/trunk/framework/OSMF/org/osmf/swf/SWFLoader.as
    osmf/trunk/framework/OSMFIntegrationTest/org/osmf/image/TestImageElementIntegration.as
    osmf/trunk/framework/OSMFIntegrationTest/org/osmf/image/TestImageLoaderIntegration.as
    osmf/trunk/framework/OSMFIntegrationTest/org/osmf/swf/TestSWFElementIntegration.as
    osmf/trunk/framework/OSMFIntegrationTest/org/osmf/swf/TestSWFLoaderIntegration.as
    osmf/trunk/framework/OSMFTest/org/osmf/OSMFTests.as
Added Paths:
    osmf/trunk/framework/OSMF/org/osmf/swf/LoaderLoadTrait.as
    osmf/trunk/framework/OSMF/org/osmf/swf/LoaderLoadedContext.as
    osmf/trunk/framework/OSMF/org/osmf/swf/LoaderUtils.as
    osmf/trunk/framework/OSMFIntegrationTest/org/osmf/content/TestImageOrSWFElementIntegratio n.as
Removed Paths:
    osmf/trunk/framework/OSMF/org/osmf/content/
    osmf/trunk/framework/OSMFIntegrationTest/org/osmf/content/TestContentElementIntegration.a s
    osmf/trunk/framework/OSMFIntegrationTest/org/osmf/content/TestContentLoaderIntegration.as
    osmf/trunk/framework/OSMFTest/org/osmf/content/TestContentElement.as
    osmf/trunk/framework/OSMFTest/org/osmf/content/TestContentLoader.as

Similar Messages

  • [svn:osmf:] 13988: PARB feedback: change mediaWidth and mediaHeight properties on layout renderer related classes to measuredWidth , and measuredHeight.

    Revision: 13988
    Revision: 13988
    Author:   [email protected]
    Date:     2010-02-05 00:24:52 -0800 (Fri, 05 Feb 2010)
    Log Message:
    PARB feedback: change mediaWidth and mediaHeight properties on layout renderer related classes to measuredWidth, and measuredHeight.
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/composition/CompositeDisplayObjectTrait.as
        osmf/trunk/framework/OSMF/org/osmf/containers/MediaContainer.as
        osmf/trunk/framework/OSMF/org/osmf/display/MediaContainerGroup.as
        osmf/trunk/framework/OSMF/org/osmf/layout/DefaultLayoutRenderer.as
        osmf/trunk/framework/OSMF/org/osmf/layout/ILayoutTarget.as
        osmf/trunk/framework/OSMF/org/osmf/layout/LayoutRenderer.as
        osmf/trunk/framework/OSMF/org/osmf/layout/LayoutTargetSprite.as
        osmf/trunk/framework/OSMF/org/osmf/layout/MediaElementLayoutTarget.as
        osmf/trunk/framework/OSMFTest/org/osmf/display/TestMediaContainerGroup.as
        osmf/trunk/framework/OSMFTest/org/osmf/layout/TestDefaultLayoutRenderer.as
        osmf/trunk/framework/OSMFTest/org/osmf/layout/TestLayoutRenderer.as
        osmf/trunk/framework/OSMFTest/org/osmf/layout/TestMediaElementLayoutTarget.as
        osmf/trunk/framework/OSMFTest/org/osmf/layout/TesterLayoutTargetSprite.as

    Hi Lucas, 
    We don't recommend making layout renderers for each item that needs to be laid out.  In fact you shouldn't be creating layout renderers at all (they are created automatically by the MediaContainer).  The best way to layout Media is to add LayoutMetadata to the MediaElements.  If you want to integrate layout into your controls, which aren't MediaElements, I wouldn't suggest you place them manually on the stage, and do you yourself.  If you absolutely need to use the OSMF layout system, I would recommend creating a MediaElement to wrap your controls, and then give the wrapper the layout metadata you need.   The easiest approach though, is to look at the OSMFPlayer example, which has a skinnable player.  You can specify image for every button in the player, as well as background color, etc....
    We will be releasing a white paper on the subject of layout in the coming weeks.   I'll be sure to include a section on laying out your player controls.
    Ryan O'Connell
    OSMF Engineering

  • [svn:osmf:] 14178: PARB changes: Remove unload and query methods from PluginManager.

    Revision: 14178
    Revision: 14178
    Author:   [email protected]
    Date:     2010-02-15 21:35:12 -0800 (Mon, 15 Feb 2010)
    Log Message:
    PARB changes: Remove unload and query methods from PluginManager.  We lack compelling use cases for those methods, but can easily re-add them later if we come across some.
    Modified Paths:
        osmf/trunk/apps/samples/framework/DynamicStreamingSample/src/DynamicStreamingSample.mxml
        osmf/trunk/apps/samples/plugins/AkamaiPluginSample/src/AkamaiPluginSample.mxml
        osmf/trunk/apps/samples/plugins/CaptioningSample/src/CaptioningSample.mxml
        osmf/trunk/framework/OSMF/org/osmf/events/PluginManagerEvent.as
        osmf/trunk/framework/OSMF/org/osmf/plugin/PluginManager.as
        osmf/trunk/framework/OSMFIntegrationTest/org/osmf/plugin/TestPluginManagerIntegration.as
        osmf/trunk/framework/OSMFTest/org/osmf/plugin/TestPluginManager.as
        osmf/trunk/plugins/CaptioningPluginTest/src/CaptioningPluginTest.mxml

  • [svn:osmf:] 14372: PARB changes: Remove metadata from MediaContainer and LayoutTargetSprite constructors.

    Revision: 14372
    Revision: 14372
    Author:   [email protected]
    Date:     2010-02-23 15:17:18 -0800 (Tue, 23 Feb 2010)
    Log Message:
    PARB changes: Remove metadata from MediaContainer and LayoutTargetSprite constructors.  Instead, metadata is set on LayoutTargetSprite via a non-public setter used by the framework.  Update a bunch of ASDocs, make some enum classes final, remove elementIDs from sample apps (since they rely on metadata, and we want to keep samples focused on the public API).
    Modified Paths:
        osmf/trunk/apps/samples/framework/MediaContainerSample/MediaContainerSample.as
        osmf/trunk/apps/samples/framework/NestedMediaContainersSample/NestedMediaContainersSample .as
        osmf/trunk/apps/samples/framework/OSMFPlayer/src/OSMFPlayer.as
        osmf/trunk/framework/OSMF/org/osmf/containers/IMediaContainer.as
        osmf/trunk/framework/OSMF/org/osmf/containers/MediaContainer.as
        osmf/trunk/framework/OSMF/org/osmf/elements/compositeClasses/CompositeDisplayObjectTrait. as
        osmf/trunk/framework/OSMF/org/osmf/layout/HorizontalAlign.as
        osmf/trunk/framework/OSMF/org/osmf/layout/ILayoutTarget.as
        osmf/trunk/framework/OSMF/org/osmf/layout/LayoutMode.as
        osmf/trunk/framework/OSMF/org/osmf/layout/LayoutTargetSprite.as
        osmf/trunk/framework/OSMF/org/osmf/layout/VerticalAlign.as
        osmf/trunk/framework/OSMFTest/org/osmf/containers/TestMediaContainer.as
        osmf/trunk/framework/OSMFTest/org/osmf/layout/TestLayoutRenderer.as
        osmf/trunk/framework/OSMFTest/org/osmf/layout/TestMediaElementLayoutTarget.as

  • [svn:osmf:] 13401: PARB changes: removing nesting capabilities from MediaContainer, and introducing a separate MediaContainerGroup class ( that is not a MediaContainer) that now holds the functionality.

    Revision: 13401
    Revision: 13401
    Author:   [email protected]
    Date:     2010-01-09 07:37:48 -0800 (Sat, 09 Jan 2010)
    Log Message:
    PARB changes: removing nesting capabilities from MediaContainer, and introducing a separate MediaContainerGroup class (that is not a MediaContainer) that now holds the functionality.
    Modified Paths:
        osmf/trunk/apps/samples/framework/NestedMediaContainersSample/NestedMediaContainersSample .as
        osmf/trunk/framework/MediaFramework/.actionScriptProperties
        osmf/trunk/framework/MediaFramework/.flexLibProperties
        osmf/trunk/framework/MediaFramework/org/osmf/containers/HTMLMediaContainer.as
        osmf/trunk/framework/MediaFramework/org/osmf/containers/IMediaContainer.as
        osmf/trunk/framework/MediaFramework/org/osmf/containers/MediaContainer.as
        osmf/trunk/framework/MediaFramework/org/osmf/display/MediaPlayerSprite.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/MediaFrameworkTests.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/containers/TestMediaContainer.as
    Added Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/display/MediaContainerGroup.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/display/TestMediaContainerGroup.as

    Hi,
    these concepts are used and implemented in jGuard(www.jguard.net) which enable easy JAAS integration into j2ee webapps across application servers.
    cheers,
    Charles(jGuard team).

  • [svn:osmf:] 14505: PARB changes: removing MediaPlayer. playMode and related classes.

    Revision: 14505
    Revision: 14505
    Author:   [email protected]
    Date:     2010-03-02 02:02:19 -0800 (Tue, 02 Mar 2010)
    Log Message:
    PARB changes: removing MediaPlayer.playMode and related classes. Renaming livePosition to lastRecordedTime.
    Modified Paths:
        osmf/trunk/framework/OSMF/.flexLibProperties
        osmf/trunk/framework/OSMF/org/osmf/elements/compositeClasses/CompositeDVRTrait.as
        osmf/trunk/framework/OSMF/org/osmf/media/MediaPlayer.as
        osmf/trunk/framework/OSMF/org/osmf/net/dvr/DVRCastDVRTrait.as
        osmf/trunk/framework/OSMF/org/osmf/traits/DVRTrait.as
        osmf/trunk/framework/OSMFTest/org/osmf/net/dvr/TestDVRCastDVRTrait.as
        osmf/trunk/framework/OSMFTest/org/osmf/traits/TestDVRTrait.as
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/controlbar/widgets/LiveButton.as
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/controlbar/widgets/RecordButton.as
    Removed Paths:
        osmf/trunk/framework/OSMF/org/osmf/events/MediaPlayerPlayModeChangeEvent.as
        osmf/trunk/framework/OSMF/org/osmf/media/MediaPlayerPlayMode.as

  • [svn:osmf:] 11550: PARB feedback: Refactor our DynamicStreamingResource class (and hierarchy).

    Revision: 11550
    Author:   [email protected]
    Date:     2009-11-06 17:09:07 -0800 (Fri, 06 Nov 2009)
    Log Message:
    PARB feedback:  Refactor our DynamicStreamingResource class (and hierarchy).  Introduce  StreamingURLResource and StreamType to lay groundwork for live support.  Fix some bugs related to seek not working when a duration is unspecified (NaN).  Further refactor unit tests to make them toggleable between hitting the network and using mock objects (still a few tests that fail against the network).
    Modified Paths:
        osmf/trunk/apps/samples/framework/DynamicStreamingSample/src/DynamicStreamingSample.mxml
        osmf/trunk/apps/samples/framework/DynamicStreamingSample/src/org/osmf/parsers/SMILParser. as
        osmf/trunk/framework/MediaFramework/.flexLibProperties
        osmf/trunk/framework/MediaFramework/org/osmf/audio/AudioElement.as
        osmf/trunk/framework/MediaFramework/org/osmf/audio/AudioSeekableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/media/MediaPlayer.as
        osmf/trunk/framework/MediaFramework/org/osmf/media/URLResource.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetStreamPlayableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetStreamSeekableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetStreamTemporalTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/dynamicstreaming/DynamicNetStream.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/dynamicstreaming/DynamicStreamingNetLoad er.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/dynamicstreaming/DynamicStreamingResourc e.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/dynamicstreaming/InsufficientBandwidthRu le.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/dynamicstreaming/MetricsProvider.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/dynamicstreaming/NetStreamSwitchableTrai t.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/dynamicstreaming/SufficientBandwidthRule .as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/SeekableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/video/VideoElement.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/MediaFrameworkTests.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/composition/TestParallelSwitchableTr ait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/composition/TestSerialSwitchableTrai t.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/media/TestMediaPlayer.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/media/TestMediaPlayerWithDynamicStre amingVideoElement.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/TestNetStreamSeekableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/TestNetStreamTemporalTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/dynamicstreaming/MockNetStreamMe trics.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/dynamicstreaming/TestBandwidthRu le.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/dynamicstreaming/TestBufferRule. as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/dynamicstreaming/TestDynamicNetS tream.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/dynamicstreaming/TestDynamicStre amingNetLoader.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/dynamicstreaming/TestDynamicStre amingResource.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/dynamicstreaming/TestFrameDropRu le.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/dynamicstreaming/TestNetStreamSw itchableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/dynamicstreaming/TestSwitchUpRul e.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/utils/TestConstants.as
        osmf/trunk/libs/adobe/NetMocker/org/osmf/netmocker/MockDynamicNetStream.as
        osmf/trunk/libs/adobe/NetMocker/org/osmf/netmocker/MockNetStream.as
    Added Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetStreamUtils.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/StreamType.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/StreamingURLResource.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/TestNetStreamUtils.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/TestStreamingURLResource.as

  • [svn:osmf:] 11571: PARB feedback: Rename playhead to currentTime, bytesDownloaded to bytesLoaded.

    Revision: 11571
    Author:   [email protected]
    Date:     2009-11-09 10:16:21 -0800 (Mon, 09 Nov 2009)
    Log Message:
    PARB feedback: Rename playhead to currentTime, bytesDownloaded to bytesLoaded.  Affects traits, MediaPlayer, and events.  Updated dependent unit tests and sample apps.
    Modified Paths:
        osmf/trunk/apps/samples/framework/CuePointSample/src/CuePointSample.mxml
        osmf/trunk/apps/samples/framework/DynamicStreamingSample/src/DynamicStreamingSample.mxml
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/view/MainWindow.as
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/view/MainWindowLayout.mxml
        osmf/trunk/apps/samples/framework/PluginSample/src/PluginSample.mxml
        osmf/trunk/apps/samples/plugins/AkamaiPluginSample/src/AkamaiPluginSample.mxml
        osmf/trunk/framework/MediaFramework/.flexLibProperties
        osmf/trunk/framework/MediaFramework/org/osmf/audio/SoundDownloadableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/content/ContentDownloadableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/media/MediaPlayer.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetStreamDownloadableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/DownloadableTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/IDownloadable.as
        osmf/trunk/framework/MediaFramework/org/osmf/utils/MediaFrameworkStrings.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/audio/TestSoundDownloadableTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/media/TestMediaPlayer.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/TestNetStreamDownloadableTrait.a s
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestDownloadableTrait.as
        osmf/trunk/framework/MediaFrameworkIntegrationTest/org/osmf/content/TestContentElementInt egration.as
    Added Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/events/BytesLoadedChangeEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/CurrentTimeChangeEvent.as
    Removed Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/events/BytesDownloadedChangeEvent.as
        osmf/trunk/framework/MediaFramework/org/osmf/events/PlayheadChangeEvent.as

  • [svn:osmf:] 14062: PARB changes: Move DRMState and DRMAuthenticationMethod to org.osmf.traits package, since they're generic.

    Revision: 14062
    Revision: 14062
    Author:   [email protected]
    Date:     2010-02-09 10:32:13 -0800 (Tue, 09 Feb 2010)
    Log Message:
    PARB changes: Move DRMState and DRMAuthenticationMethod to org.osmf.traits package, since they're generic.  Move other DRM classes into org.osmf.net.drm package.
    Modified Paths:
        osmf/trunk/framework/OSMF/.flexLibProperties
        osmf/trunk/framework/OSMF/org/osmf/elements/VideoElement.as
        osmf/trunk/framework/OSMF/org/osmf/elements/compositeClasses/CompositeDRMTrait.as
        osmf/trunk/framework/OSMF/org/osmf/traits/DRMTrait.as
        osmf/trunk/framework/OSMFIntegrationTest/org/osmf/OSMFIntegrationTests.as
        osmf/trunk/framework/OSMFTest/org/osmf/elements/TestParallelElementWithDRMTrait.as
        osmf/trunk/framework/OSMFTest/org/osmf/elements/TestSerialElementWithDRMTrait.as
        osmf/trunk/framework/OSMFTest/org/osmf/traits/TestDRMTrait.as
        osmf/trunk/framework/OSMFTest/org/osmf/utils/DynamicDRMTrait.as
        osmf/trunk/framework/OSMFTest/org/osmf/utils/TestTraitEventDispatcher.as
    Added Paths:
        osmf/trunk/framework/OSMF/org/osmf/net/drm/
        osmf/trunk/framework/OSMF/org/osmf/net/drm/DRMServices.as
        osmf/trunk/framework/OSMF/org/osmf/net/drm/NetStreamDRMTrait.as
        osmf/trunk/framework/OSMF/org/osmf/traits/DRMAuthenticationMethod.as
        osmf/trunk/framework/OSMF/org/osmf/traits/DRMState.as
        osmf/trunk/framework/OSMFIntegrationTest/org/osmf/net/drm/
        osmf/trunk/framework/OSMFIntegrationTest/org/osmf/net/drm/TestDRMServices.as
        osmf/trunk/framework/OSMFIntegrationTest/org/osmf/net/drm/TestNetStreamDRMTrait.as
    Removed Paths:
        osmf/trunk/framework/OSMF/org/osmf/drm/
        osmf/trunk/framework/OSMF/org/osmf/net/NetStreamDRMTrait.as
        osmf/trunk/framework/OSMFIntegrationTest/org/osmf/drm/
        osmf/trunk/framework/OSMFIntegrationTest/org/osmf/net/TestNetStreamDRMTrait.as

  • [svn:osmf:] 14306: PARB changes: Merge seekBegin and seekEnd event types into a single seekingChange event type .

    Revision: 14306
    Revision: 14306
    Author:   [email protected]
    Date:     2010-02-21 10:48:21 -0800 (Sun, 21 Feb 2010)
    Log Message:
    PARB changes: Merge seekBegin and seekEnd event types into a single seekingChange event type.  Add seeking as a getter to the SeekEvent class.  Update test code and samples accordingly.
    Modified Paths:
        osmf/trunk/apps/samples/framework/CuePointSample/src/CuePointSample.mxml
        osmf/trunk/apps/samples/framework/DynamicStreamingSample/src/DynamicStreamingSample.mxml
        osmf/trunk/apps/samples/plugins/AkamaiPluginSample/src/AkamaiPluginSample.mxml
        osmf/trunk/apps/samples/plugins/CaptioningSample/src/CaptioningSample.mxml
        osmf/trunk/framework/OSMF/.flexLibProperties
        osmf/trunk/framework/OSMF/org/osmf/elements/DurationElement.as
        osmf/trunk/framework/OSMF/org/osmf/elements/ListenerProxyElement.as
        osmf/trunk/framework/OSMF/org/osmf/elements/compositeClasses/CompositeSeekTrait.as
        osmf/trunk/framework/OSMF/org/osmf/elements/compositeClasses/ParallelSeekTrait.as
        osmf/trunk/framework/OSMF/org/osmf/events/MediaErrorEvent.as
        osmf/trunk/framework/OSMF/org/osmf/events/SeekEvent.as
        osmf/trunk/framework/OSMF/org/osmf/media/MediaPlayer.as
        osmf/trunk/framework/OSMF/org/osmf/metadata/TemporalFacet.as
        osmf/trunk/framework/OSMF/org/osmf/traits/SeekTrait.as
        osmf/trunk/framework/OSMF/org/osmf/utils/TraitEventDispatcher.as
        osmf/trunk/framework/OSMFTest/org/osmf/elements/TestDurationElement.as
        osmf/trunk/framework/OSMFTest/org/osmf/elements/TestParallelElementWithSeekTrait.as
        osmf/trunk/framework/OSMFTest/org/osmf/elements/audioClasses/TestAudioSeekTrait.as
        osmf/trunk/framework/OSMFTest/org/osmf/media/TestMediaPlayer.as
        osmf/trunk/framework/OSMFTest/org/osmf/traits/TestSeekTrait.as
        osmf/trunk/framework/OSMFTest/org/osmf/utils/DynamicSeekTrait.as
        osmf/trunk/framework/OSMFTest/org/osmf/utils/TestTraitEventDispatcher.as
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/controlbar/widgets/RecordButton.as
        osmf/trunk/plugins/CaptioningPluginTest/src/CaptioningPluginTest.mxml
        osmf/trunk/plugins/MASTPlugin/org/osmf/mast/adapter/MASTAdapter.as
        osmf/trunk/plugins/MASTPlugin/org/osmf/mast/managers/MASTConditionManager.as

    ls -l /var/run/lighttpd/
    And how are you spawning the php instances? I don't see that in the daemons array anywhere.
    EDIT: It looks like the info in that page is no longer using pre-spawned instances, but lighttpd adaptive-spawn. The documentation has been made inconsistent it looks like.
    You will note that with pre-spawned information, the config looks different[1].
    You need to do one or the other, not both (eg. choose adaptive-spawn, or pre-spawn..not both).
    [1]: http://wiki.archlinux.org/index.php?tit … oldid=8051 "change"

  • [svn:osmf:] 14235: PARB changes: Remove targetBufferTime from the metrics provider, this value can' t be set in the absence of an understanding of the buffering strategy which is layered on top of NetStreamBufferTrait .

    Revision: 14235
    Revision: 14235
    Author:   [email protected]
    Date:     2010-02-17 19:27:33 -0800 (Wed, 17 Feb 2010)
    Log Message:
    PARB changes: Remove targetBufferTime from the metrics provider, this value can't be set in the absence of an understanding of the buffering strategy which is layered on top of NetStreamBufferTrait.  Adjust switching rules to work from the raw buffer data instead of this target.  Remove all bufferTime modifications from the MBR code, so that they won't impact any buffering strategies (addresses FM-436).
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-436
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/net/NetStreamMetricsBase.as
        osmf/trunk/framework/OSMF/org/osmf/net/NetStreamSwitchManager.as
        osmf/trunk/framework/OSMF/org/osmf/net/rtmpstreaming/InsufficientBufferRule.as
        osmf/trunk/framework/OSMF/org/osmf/net/rtmpstreaming/RTMPNetStreamMetrics.as
        osmf/trunk/framework/OSMF/org/osmf/net/rtmpstreaming/SufficientBandwidthRule.as
        osmf/trunk/libs/adobe/NetMocker/org/osmf/netmocker/MockNetStreamMetricsBase.as
        osmf/trunk/libs/adobe/NetMocker/org/osmf/netmocker/MockRTMPNetStreamMetrics.as

    Please do not duplicate posts. You have already started a thread on this subject.

  • [svn:osmf:] 11285: PARB feedback:  Consolidate/ rename MediaPlayerState enumeration:

    Revision: 11285
    Author:   [email protected]
    Date:     2009-10-29 16:49:52 -0700 (Thu, 29 Oct 2009)
    Log Message:
    PARB feedback:  Consolidate/rename MediaPlayerState enumeration:
    CONSTRUCTED -> UNINITIALIZED
    INITIALIZED -> READY
    SEEKING -> BUFFERING (since any delay caused by a seek is due to the need to buffer data)
    Modified Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/media/MediaPlayer.as
        osmf/trunk/framework/MediaFramework/org/osmf/media/MediaPlayerState.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/media/TestMediaPlayer.as

  • [svn:osmf:] 11263: PARB feedback: Change ScaleMode.CROP to ZOOM.

    Revision: 11263
    Author:   [email protected]
    Date:     2009-10-29 10:15:55 -0700 (Thu, 29 Oct 2009)
    Log Message:
    PARB feedback: Change ScaleMode.CROP to ZOOM.
    Modified Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/display/ScalableSprite.as
        osmf/trunk/framework/MediaFramework/org/osmf/display/ScaleMode.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/display/TestScalableSprite.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/layout/TestLayoutUtils.as

  • [svn:osmf:] 13225: PARB changes: Refactor DynamicStreamTrait.

    Revision: 13225
    Revision: 13225
    Author:   [email protected]
    Date:     2009-12-29 18:35:01 -0800 (Tue, 29 Dec 2009)
    Log Message:
    PARB changes: Refactor DynamicStreamTrait.  Rename SwitchEvent to DynamicStreamEvent.  Update unit tests and MBR sample app.
    Modified Paths:
        osmf/trunk/apps/samples/framework/DynamicStreamingSample/src/DynamicStreamingSample.mxml
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/examples/traceproxy/TraceListene rProxyElement.as
        osmf/trunk/framework/MediaFramework/.flexLibProperties
        osmf/trunk/framework/MediaFramework/org/osmf/audio/AudioSeekTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/ParallelSeekTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/composition/SerialSeekTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/media/MediaPlayer.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/NetStreamSeekTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/dynamicstreaming/DynamicNetStream.as
        osmf/trunk/framework/MediaFramework/org/osmf/net/dynamicstreaming/NetStreamDynamicStreamT rait.as
        osmf/trunk/framework/MediaFramework/org/osmf/proxies/ListenerProxyElement.as
        osmf/trunk/framework/MediaFramework/org/osmf/proxies/TemporalProxySeekTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/DynamicStreamTrait.as
        osmf/trunk/framework/MediaFramework/org/osmf/traits/SeekTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/MediaFrameworkTests.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/media/TestMediaPlayer.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/dynamicstreaming/TestDynamicNetS tream.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/net/dynamicstreaming/TestNetStreamDy namicStreamTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/proxies/TestListenerProxyElementAsSu bclass.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/traits/TestDynamicStreamTrait.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/utils/DynamicListenerProxyElement.as
        osmf/trunk/framework/MediaFrameworkFlexTest/org/osmf/utils/DynamicSeekTrait.as
    Added Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/events/DynamicStreamEvent.as
    Removed Paths:
        osmf/trunk/framework/MediaFramework/org/osmf/events/SwitchEvent.as

  • [svn:osmf:] 14487: PARB changes: Rename LayoutRendererProperties to LayouMetadata, base it off of the new metadata APIs.

    Revision: 14487
    Revision: 14487
    Author:   [email protected]
    Date:     2010-03-01 14:47:01 -0800 (Mon, 01 Mar 2010)
    Log Message:
    PARB changes: Rename LayoutRendererProperties to LayouMetadata, base it off of the new metadata APIs.  Adjust ILayoutTarget to expose a getter for a LayoutMetadata, and LayoutTargetSprite to accept one in its constructor.  Apply corresponding changes to unit tests and samples.
    Modified Paths:
        osmf/trunk/apps/samples/framework/ExamplePlayer/org/osmf/examples/AllExamples.as
        osmf/trunk/apps/samples/framework/LayoutSample/src/LayoutSample.as
        osmf/trunk/apps/samples/framework/LayoutSample/src/LayoutSample2.as
        osmf/trunk/apps/samples/framework/LayoutSample/src/LayoutSample3.as
        osmf/trunk/apps/samples/framework/MediaContainerSample/MediaContainerSample.as
        osmf/trunk/apps/samples/framework/NestedMediaContainersSample/NestedMediaContainersSample .as
        osmf/trunk/apps/samples/framework/OSMFPlayer/src/OSMFPlayer.as
        osmf/trunk/apps/samples/plugins/ControlBarPlugin/src/ControlBarElement.as
        osmf/trunk/apps/samples/plugins/ControlBarPluginSample/src/ControlBarPluginSample.as
        osmf/trunk/apps/samples/plugins/MASTSample/src/MASTSample.as
        osmf/trunk/framework/OSMF/.flexLibProperties
        osmf/trunk/framework/OSMF/org/osmf/display/MediaPlayerSprite.as
        osmf/trunk/framework/OSMF/org/osmf/elements/compositeClasses/CompositeDisplayObjectTrait. as
        osmf/trunk/framework/OSMF/org/osmf/layout/ILayoutTarget.as
        osmf/trunk/framework/OSMF/org/osmf/layout/LayoutRenderer.as
        osmf/trunk/framework/OSMF/org/osmf/layout/LayoutRendererBase.as
        osmf/trunk/framework/OSMF/org/osmf/layout/LayoutTargetSprite.as
        osmf/trunk/framework/OSMF/org/osmf/layout/MediaElementLayoutTarget.as
        osmf/trunk/framework/OSMF/org/osmf/media/MediaResourceBase.as
        osmf/trunk/framework/OSMFTest/org/osmf/OSMFTests.as
        osmf/trunk/framework/OSMFTest/org/osmf/containers/TestMediaContainer.as
        osmf/trunk/framework/OSMFTest/org/osmf/elements/TestParallelElementWithDisplayObjectTrait .as
        osmf/trunk/framework/OSMFTest/org/osmf/layout/TestLayoutRenderer.as
        osmf/trunk/framework/OSMFTest/org/osmf/layout/TestMediaElementLayoutTarget.as
        osmf/trunk/framework/OSMFTest/org/osmf/layout/TesterLayoutTargetSprite.as
        osmf/trunk/framework/OSMFTest/org/osmf/media/TestURLResource.as
        osmf/trunk/libs/ChromeLibrary/src/org/osmf/chrome/controlbar/ControlBarBase.as
        osmf/trunk/plugins/MASTPluginIntegrationTest/src/org/osmf/test/mast/managers/TestMASTCond itionManager.as
        osmf/trunk/plugins/MASTPluginIntegrationTest/src/org/osmf/test/mast/media/TestMASTProxyEl ement.as
    Added Paths:
        osmf/trunk/framework/OSMF/org/osmf/layout/LayoutMetadata.as
        osmf/trunk/framework/OSMFTest/org/osmf/layout/TestLayoutMetadata.as
    Removed Paths:
        osmf/trunk/framework/OSMF/org/osmf/layout/LayoutRendererProperties.as
        osmf/trunk/framework/OSMFTest/org/osmf/layout/TestLayoutRendererProperties.as

Maybe you are looking for

  • How do i save files in icloud

    how do i save XL files in icloud?

  • Can't receive email with large attachment​. why?

    A friend sends an email to me with a large attachment. It is rejected and he gets the following response. {edited for privacy}: 206.46.232.11 failed after I sent the message. Remote host said: 552 5.3.4 a message size of 20483 kilobytes exceeds the s

  • My iphone crashed during the update and now it wont recover.

    My iphone crashed during the update and now it wont recover. I keep getting a message say " an iphone has been found thats in recovery mode, please restore it and update." Every time that i try to restore it, is stops with a couple of minutes left an

  • What are the main differences between Parallels 7,8 and 9?

    Hello! I need to run a Windows only program on my computer for school and was wondering if it would be suitable to just get an old version of Parallels 7 or if I need the new software on the 9?  I have a brand new Macbook that I bought a month ago! T

  • Suggested XCode feature

    I had an astoundingly difficult time trying to get XCode to stop giving "No such file or directory" errors for things which quite obviously did exist. I eventually figured out what was wrong when I tried to copy/paste the Header Search Paths line to