Pakket | org.osmf.elements |
Klasse | public class AudioElement |
Overerving | AudioElement LoadableElementBase MediaElement EventDispatcher Object |
Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 1.0 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
AudioElement can load and present any MP3 or AAC file. It supports MP3 files over HTTP, as well as audio-only streams from Flash Media Server.
The basic steps for creating and using an AudioElement are:
- Create a new URLResource pointing to the URL of the audio stream or file containing the sound to be loaded.
- Create the new AudioElement, passing the URLResource as a parameter.
- Create a new MediaPlayer.
- Assign the AudioElement to the MediaPlayer's
media
property. - Control the media using the MediaPlayer's methods, properties, and events.
- When done with the AudioElement, set the MediaPlayer's
media
property to null. This will unload the AudioElement.
Verwante API-elementen
Openbare eigenschappen
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
constructor : Object
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | Object | ||
container : IMediaContainer [alleen-lezen]
The media container that this element uses. | MediaElement | ||
defaultDuration : Number
Defines the duration that the element's TimeTrait will expose until the
element's content is loaded. | AudioElement | ||
metadataNamespaceURLs : Vector.<String> [alleen-lezen]
A Vector containing the namespace URLs for all Metadata
objects stored within this MediaElement. | MediaElement | ||
resource : MediaResourceBase
The media resource that this media element operates on. | MediaElement | ||
traitTypes : Vector.<String> [alleen-lezen]
A Vector of MediaTraitType values representing the trait types on this
media element. | MediaElement |
Beschermde eigenschappen
Openbare methoden
Methode | Gedefinieerd door | ||
---|---|---|---|
Constructor. | AudioElement | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registreert een gebeurtenislistenerobject bij een object EventDispatcher, zodat de listener een melding van een gebeurtenis ontvangt. | EventDispatcher | ||
Adds a Metadata object to this MediaElement under the specified namespace URL. | MediaElement | ||
Verzendt een gebeurtenis naar de gebeurtenisstroom. | EventDispatcher | ||
Returns the Metadata object that is stored under this MediaElement with
the specified namespace URL. | MediaElement | ||
Returns the media trait of the specified type. | MediaElement | ||
Controleert of het object EventDispatcher listeners heeft geregistreerd voor een specifiek type gebeurtenis. | EventDispatcher | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Determines whether this media element has a media trait of the
specified type. | MediaElement | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
Verwijdert een listener uit het object EventDispatcher. | EventDispatcher | ||
Removes the Metadata object that was stored under this MediaElement with
the specified namespace URL. | MediaElement | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Retourneert een tekenreeksrepresentatie van het opgegeven object. | Object | ||
Retourneert de primitieve waarde van het opgegeven object. | Object | ||
Controleert of een gebeurtenislistener is geregistreerd bij dit object EventDispatcher of een van de voorouders voor het opgegeven type gebeurtenis. | EventDispatcher |
Beschermde methoden
Gebeurtenissen
Eigenschapdetails
defaultDuration | eigenschap |
defaultDuration:Number
Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 1.0 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Defines the duration that the element's TimeTrait will expose until the element's content is loaded. Setting this property to a positive value results in the element becoming temporal. Any other value will remove the element's TimeTrait, unless the loaded content is exposing a duration.
Implementatie
public function get defaultDuration():Number
public function set defaultDuration(value:Number):void
Constructordetails
AudioElement | () | Constructor |
public function AudioElement(resource:URLResource = null, loader:LoaderBase = null)
Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 1.0 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
Constructor.
Parametersresource:URLResource (default = null ) — URLResource that points to the audio source that the AudioElement
will use.
| |
loader:LoaderBase (default = null ) — Loader used to load the sound. This must be either a
NetLoader (for streaming audio) or a SoundLoader (for progressive audio).
If null, the appropriate Loader will be created based on the type of the
resource.
|
Gegenereerde uitzondering
ArgumentError — If loader is neither a NetLoader nor a SoundLoader.
|
Verwante API-elementen
Voorbeelden Hoe dit voorbeeld te gebruiken
AudioElementExample.as
package { import flash.display.Sprite; import org.osmf.elements.AudioElement; import org.osmf.media.MediaPlayer; import org.osmf.media.URLResource; public class AudioElementExample extends Sprite { public function AudioElementExample() { super(); var mediaPlayer:MediaPlayer = new MediaPlayer(); var audioElement:AudioElement = new AudioElement(); audioElement.resource = new URLResource("http://mediapm.edgesuite.net/osmf/content/test/train_1500.mp3"); mediaPlayer.media = audioElement; } } }
Wed Jun 13 2018, 11:42 AM Z