Package | spark.components.mediaClasses |
Classe | public class DynamicStreamingVideoItem |
Héritage | DynamicStreamingVideoItem Object |
Version du langage: | ActionScript 3.0 |
Version du produit: | Flex 4 |
Versions du moteur d’exécution: | Flash Player 10, AIR 1.5 |
streamItems
de la classe DynamicStreamingVideoSource. La classe DynamicStreamingVideoSource représente une source vidéo en flux continu et peut être utilisée pour diffuser en continu un flux vidéo préenregistré ou un flux vidéo en direct.
Syntaxe MXMLMasquer la syntaxe MXMLThe <s:DynamicStreamingVideoItem>
tag inherits all of the tag
attributes of its superclass and adds the following tag attributes:
<s:DynamicStreamingVideoItem Properties bitrate="0" streamName="" />
Eléments de l’API associés
spark.components.VideoPlayer
spark.components.VideoDisplay
spark.components.mediaClasses.DynamicStreamingVideoSource
spark.components.VideoDisplay
spark.components.mediaClasses.DynamicStreamingVideoSource
Propriétés publiques
Propriété | Défini par | ||
---|---|---|---|
bitrate : Number
Débit du flux vidéo. | DynamicStreamingVideoItem | ||
constructor : Object
Référence à l’objet de classe ou à la fonction constructeur d’une occurrence donnée d’un objet. | Object | ||
streamName : String
Nom du flux sur le serveur. | DynamicStreamingVideoItem |
Méthodes publiques
Méthode | Défini par | ||
---|---|---|---|
Constructeur. | DynamicStreamingVideoItem | ||
Indique si la propriété spécifiée d’un objet est définie. | Object | ||
Indique si une occurrence de la classe Object figure dans la chaîne de prototype de l’objet spécifié en tant que paramètre. | Object | ||
Indique si la propriété spécifiée existe et est énumérable. | Object | ||
Définit la disponibilité d’une propriété dynamique pour les opérations en boucle. | Object | ||
Renvoie la représentation de chaîne de cet objet, formatée selon les paramètres régionaux en vigueur. | Object | ||
Renvoie la représentation sous forme de chaîne de l’objet spécifié. | Object | ||
Renvoie la valeur primitive de l’objet spécifié. | Object |
Détails de la propriété
bitrate | propriété |
streamName | propriété |
streamName:String
Version du langage: | ActionScript 3.0 |
Version du produit: | Flex 4 |
Versions du moteur d’exécution: | Flash Player 10, AIR 1.5 |
Nom du flux sur le serveur. Utilisez la propriété host
de la classe DynamicStreamingVideoSource pour spécifier l’URI du serveur.
Implémentation
public function get streamName():String
public function set streamName(value:String):void
Eléments de l’API associés
Détails du constructeur
DynamicStreamingVideoItem | () | Constructeur |
public function DynamicStreamingVideoItem()
Version du langage: | ActionScript 3.0 |
Version du produit: | Flex 4 |
Versions du moteur d’exécution: | Flash Player 10, AIR 1.5 |
Constructeur.
Exemples Comment utiliser cet exemple
DynamicStreamingVideoSourceExample.mxml
<?xml version="1.0"?> <!-- Simple example to demonstrate the Spark DynamicStreamingVideoSource control --> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/halo"> <s:Panel title="Spark DynamicStreamingVideoSource Example" width="75%" height="75%" horizontalCenter="0" verticalCenter="0"> <s:VGroup left="10" right="10" top="10" bottom="10"> <s:Label text="The DynamicStreamingVideoSource object contains multiple stream items. Flash Player automatically play the stream with the highest bit rate." color="blue" width="75%"/> <s:VideoPlayer id="myPlayer" width="75%" height="75%" autoPlay="false"> <s:source> <s:DynamicStreamingVideoSource id="mySVS" host="rtmp://fmsexamples.adobe.com/vod/"> <s:DynamicStreamingVideoItem id="dreamgirl150" streamName="MP4:_PS_dreamgirl_150.f4v" bitrate="150" /> <s:DynamicStreamingVideoItem id="dreamgirl500" streamName="MP4:_PS_dreamgirl_500.f4v" bitrate="500" /> <s:DynamicStreamingVideoItem id="dreamgirl1000" streamName="MP4:_PS_dreamgirl_1000.f4v" bitrate="1000" /> </s:DynamicStreamingVideoSource> </s:source> </s:VideoPlayer> </s:VGroup> </s:Panel> </s:Application>
Tue Jun 12 2018, 09:30 AM Z