Version | 1.67 |
---|---|
Datum | 1408.0305.20112013 |
Author | Christopher Wirtz |
Versionshistorie
Version | Author | Datum | Bemerkungen |
---|---|---|---|
0.1 | 23.05.2005 | Christopher Wirtz | initial |
0.5 | 26.05.2005 | Christopher Wirtz | Changes |
1.0 | 02.06.2005 | Christopher Wirtz | Release |
1.1 | 12.03.2007 | Christopher Wirtz | Flash added |
1.2 | 06.07.2009 | Christopher Wirtz | Review/Changes |
1.3 | 14.07.2009 | Christopher Wirtz | Added Example to set the „duration“ manually in ActionScript |
1.4 | 29.06.2010 | Christopher Wirtz | Unload delay |
1.5 | 02.11.2010 | Frank Kammann | Add Example using a NetStreamAdapter, streaming segments and parallel streams |
1.6 | 14.03.2011 | Frank Kammann | Description of the general operation (API) and information on the security settings for Flash |
1.7 | 08.05.2013 | Frank Kammann | Add documentation for the default HTML5 Adapter. |
Inhaltsverzeichnis
Table of Contents |
---|
...
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
sensors.track(wmplayer, {}, sensors.WMStreamAdapter);
|
Neben der ID des zu messenden Objektes können beschreibende Informationen zu diesem Objekt in Form eines Javascript-Objektes angegeben werden:
...
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
var description = { "stream": "videos/teststream" "desc": "some additional description" }; sensors.track(wmplayervideo5, description); |
Es ist möglich, mehrere zusätzliche Attribute zu der Beschreibung hinzuzufügen. Erwartet wird mindestens die Angabe von stream
mit dem Namen/der Hierarchie des Streams.
...