Difference between revisions of "ActiveX"

From VideoLAN Wiki
Jump to navigation Jump to search
Line 14: Line 14:
 
|-
 
|-
 
|Length
 
|Length
|
+
|Integer
 
|get
 
|get
 
|Returns length of the current clip.
 
|Returns length of the current clip.
Line 25: Line 25:
 
|playlistIndex
 
|playlistIndex
 
|
 
|
|get <!-- may be settable too, unsure -->
+
|get<!-- may be settable too, unsure -->
 
|Returns the index of the current item in the playlist.   
 
|Returns the index of the current item in the playlist.   
 
|-
 
|-
Line 35: Line 35:
 
|AutoPlay
 
|AutoPlay
 
|Boolean
 
|Boolean
|both
+
|get/set
 
|Determines if the player should start playing a new file/playlist immediately upon being loaded.   
 
|Determines if the player should start playing a new file/playlist immediately upon being loaded.   
 
|-
 
|-
 
|Volume
 
|Volume
 
|Integer
 
|Integer
|both
+
|get/set
 
|Presumably sets and gets the volume of VLC's waveout.
 
|Presumably sets and gets the volume of VLC's waveout.
 
|-
 
|-
Line 49: Line 49:
 
|-
 
|-
 
|Time
 
|Time
|
+
|Integer
|
+
|get/set
|Unknown
+
|Time elapsed in seconds playing current MRL, 0 for live feed
 
|-
 
|-
 
|object
 
|object
Line 59: Line 59:
 
|-
 
|-
 
|showdisplay
 
|showdisplay
|set/get
 
 
|Boolean
 
|Boolean
|show/hide control viewport <!-- from readme -->
+
|get/set
 +
|show/hide control viewport<!-- from readme -->
 +
|-
 +
|Playing
 +
|Boolean
 +
|get
 +
|Returns whether some MRL is playing<!-- from readme -->
 +
|-
 +
|
 
|}
 
|}
  

Revision as of 06:56, 18 January 2006

The Windows build of VLC includes an (optionaly installed) ActiveX control. The ActiveX control enables VLC to be embedded in web browsers and third-party applications.

Properties

The ActiveX control includes the following properties:

name type get or set description
Length Integer get Returns length of the current clip.
playlistCount get Returns the count of items in the playlist
playlistIndex get Returns the index of the current item in the playlist.
AutoLoop Boolean both Determines if the player should automatically loop when it finishes the current playlist.
AutoPlay Boolean get/set Determines if the player should start playing a new file/playlist immediately upon being loaded.
Volume Integer get/set Presumably sets and gets the volume of VLC's waveout.
MRL String get Presumably returns the MRL of the currently loaded file.
Time Integer get/set Time elapsed in seconds playing current MRL, 0 for live feed
object Unknown, possibly a way to access objects and then use getVariable/setVariable on them?
showdisplay Boolean get/set show/hide control viewport
Playing Boolean get Returns whether some MRL is playing

Methods

The ActiveX control includes the following methods (functions):

name type description syntax (VB)
Position property (get and set) Return or set the playback position on the current clip.
setVariable method Assigns a value to a variable that is defined in libvlc.c controlname.setVariable name as String, value
getVariable method Returns the contents of a variable that is defined in libvlc.c x = controlname.getVariable(name as String)
pause method Pauses the currently playing clip controlname.pause
play method Plays as in the normal player, if a clip is not loaded, does nothing. controlname.play
playFaster method Makes the currently playing clip play faster. controlname.playFaster
playSlower method Makes the currently playing clip play slower. controlname.playSlower
stop method Makes the currently playing clip stop. controlname.stop
shuttle method Presumably moves the playback position a specified number of seconds in either direction. controlname.shuttle(seconds as Long)
playlistClear method Clears the playlist controlname.playlistClear
playlistNext method Goes to next item in the playlist controlname.playlistNext
playlistPrev method Goes to previous item in the playlist controlname.playlistPrev
addTarget method Adds a uri to the current playlist or replaces the current playlist with the uri. controlname.addTarget(uri as String, options, mode as VLCPlaylistMode, Position as Long)
toggleMute method Presumably toggles between the muted/unmuted state of the embedded player. controlname.toggleMute
fullscreen method Presumably toggles between fullscreen and non-fullscreen modes. controlname.fullscreen

Installing

The ActiveX control can be installed as an option when using the Windows installer, it is also included in the Windows zip file. Also note that the ActiveX control can be automatically installed using the http://downloads.videolan.org/pub/videolan/vlc/latest/win32/axvlc.cab file. This can be useful if you want to embed the ActiveX control in a web page.