README.TXT
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:10k
源码类别:

midi

开发平台:

Unix_Linux

  1. == ACTIVEX Control for VLC ==
  2. The VLC ActiveX Control has been primary designed to work with Internet Explorer.
  3. however it may also work with Visual Basic and/or .NET
  4. Please note, that this code does not rely upon Microsoft MFC/ATL code,
  5. hence good compatibility is not guaranteed. 
  6. I. Compiling
  7. The ActiveX Control should compile without any glitches as long as you have the latest
  8. version of mingw gcc and headers. However, In order to script the ActiveX Control
  9. on Internet Explorer, a type library is required.
  10. This type library is usually generated from an IDL file using Microsoft MIDL compiler.
  11. Therefore, for convenience I have checked in the output of the MIDL compiler in the
  12. repository so that you will only need the MIDL compiler if you change axvlc.idl.
  13. the generated files are as follow:
  14. axvlc_idl.c
  15. axvlc_idl.h
  16. axvlc.tlb
  17. To use the MIDL compiler on cygwin, you will need to set some environment variables
  18. before configuring vlc. If you have a copy of 'Microsoft Visual C++ 6.0' installed,
  19. the following settings are correct:
  20. export PATH=$PATH:"/cygdrive/c/Program Files/Microsoft Visual Studio/COMMON/MSDev98/Bin":"/cygdrive/c/Program Files/Microsoft Visual Studio/VC98/Bin"
  21. export INCLUDE='C:Program FilesMicrosoft Visual StudioVC98Include'
  22. export MIDL="midl"
  23. If you are cross-compiling on Linux, you can use 'widl' which is part of
  24. the WINE project (http://www.winehq.com). At leat wine-dev-0.9.57 works,
  25. the comand line to compile IDL should looks like the following :
  26. widl -I/usr/include/wine/windows/ 
  27.      -h -H axvlc_idl.h -t -T axvlc.tlb -u -U axvlc_idl.c 
  28.      axvlc.idl
  29. NOTE: widl breaks compatibility with Visual Basic. If that is important to you then use midl.
  30. II. Debugging
  31. the ActiveX control is compiled with verbose output by default. However you will
  32. need to launch Internet Explorer from a Cygwin shell to see the output.
  33. Alternatively, the plugin will also use the VLC preferences, hence if you enable
  34. the file logging interface through the player and save the preferences, the
  35. control will automatically log its verbose output into the designated file.
  36. Debugging the ActiveX control DLL with GNU GDB can be difficult. Fortunately,
  37. the ActiveX control can also be compiled as an executable rather than a DLL.
  38. In ActiveX terms, this is called a local server.
  39. The advantage of a local server is that it will never crash its client,
  40. i.e Internet Explorer, if itself is crashing.
  41. The build system does not currently allow to create an executable version of
  42. the ActiveX control, you will need to manually define the BUILD_LOCALSERVER
  43. pre-processor variable and modify the Makefile to exclude the '-shared' option
  44. at the linking stage. Once this is done, you just need to launch axvlc.exe to
  45. have a working Activex control. Please note, that executable version of the
  46. ActiveX control will override any settings required for the DLL version, which
  47. will no longer work until you (re)register it as shown in the following section
  48. III. Local Install
  49. The VLC NSIS installer will install the ActiveX Control without requiring any
  50. further manual intervention, but for people who like to live on the edge, here
  51. are the steps you need to perform once you have built the ActiveX Control.
  52. The ActiveX control DLL file may be copied anywhere on the target machine,
  53. but before you can use the control, you will need to register it with Windows
  54. by using the REGSVR32 command, as per following example:
  55. REGSVR32 C:WINDOWSAXVLC.DLL
  56. If the control needs to use external VLC plugins (i.e other than built-in ones),
  57. make sure that the plugin path is set in the registry as per following example:
  58. [HKEY_LOCAL_MACHINESoftwareVideoLANVLC]
  59. InstallDir="C:Program FilesVideoLANVLC"
  60. The InstallDir must be the parent directory of the 'plugins' directory.
  61. WARNING: Both control and plugins must come from the same build source tree.
  62. Otherwise, at best, the control will not play any content, at worse
  63. it may crash Internet Explorer while attempting to load incompatible plugins.
  64. IV. Internet Install
  65. The activex control may be installed from a remote through Internet Installer if
  66. it is packaged up in a CAB file. The following link explains how to achieve this
  67. http://msdn.microsoft.com/workshop/components/activex/packaging.asp
  68. For convenience, I have provided a sample axvlc.INF file, which assumes that the VLC
  69. NSIS Installer has been packaged up a CAB file called AXVLC.CAB.
  70. The ActiveX Control DLL file can also be distributed by itself if it has been
  71. compiled with built-in VLC plugins; check developer information for more
  72. information on built-in plugins.
  73. V. Controlling the plugin
  74. 1) Properties
  75. the following public properties can be used to control the plugin from HTML,
  76. the property panel of Visual Basic and most ActiveX aware applications.
  77. +==========+=========+===================================+===============+
  78. | Name:    | Type:   |   Description:                    | Alias:        |
  79. +==========+=========+===================================+===============+
  80. | autoplay | boolean | play when control is activated    | autostart     |
  81. +----------+---------+-----------------------------------+---------------+
  82. | autoloop | boolean | loop the playlist                 | loop          |
  83. +----------+---------+-----------------------------------+---------------+
  84. | mrl      | string  | initial MRL in playlist           | src, filename |
  85. +----------+---------+-----------------------------------+---------------+
  86. | mute     | boolean | mute audio volume                 |               |
  87. +----------+---------+-----------------------------------+---------------+
  88. | visible  | boolean | show/hide control viewport        | showdisplay   |
  89. +----------+---------+-----------------------------------+---------------+
  90. | volume   | integer | set/get audio volume              |               |
  91. +----------+---------+-----------------------------------+---------------+
  92. | toolbar  | boolean | set/get visibility of the toolbar |               |
  93. +----------+---------+-----------------------------------+---------------+
  94. the alias column allows to specify an alternative <PARAM name> for the
  95. property in internet explorer, which is useful to maintain compatibility
  96. with HTML pages already leveraging Windows Media Player
  97. 2) Programming APIs
  98. the MRL, Autoplay and Autoloop properties are only used to configure the initial
  99. state of the ActiveX control,i.e before its activation; they are ignored afterward.
  100. Therefore, if some runtime control is required, the following APIs should be used
  101. within your programming environment:
  102. Variables:
  103. +==========+=========+=========+=======================================+
  104. | Name:    | Type:   | Access: | Description:                          |
  105. +==========+=========+=========+=======================================+
  106. | Playing  | boolean |   RO    | Returns whether some MRL is playing   |
  107. +----------+---------+---------+---------------------------------------+
  108. | Time     | integer |   RW    | Time elapsed in seconds playing       |
  109. |          |         |         | current MRL                           |
  110. |          |         |         | NOTE: live feeds returns 0            |
  111. +----------+---------+---------+---------------------------------------+
  112. | Position | real    |   RW    | Playback position within current MRL  |
  113. |          |         |         | in a scale from 0.0 to 1.0            |
  114. |          |         |         | NOTE: live feeds returns 0.0          |
  115. +----------+---------+---------+---------------------------------------+
  116. | Length   | integer |   RO    | Total length in seconds of current MRL|
  117. |          |         |         | NOTE: live feeds returns 0            |
  118. +----------+---------+---------+---------------------------------------+
  119. | Volume   | integer |   RW    | Current volume from 0 to 100          |
  120. +----------+---------+---------+---------------------------------------+
  121. | Visible  | boolean |   RW    | Indicates whether control is visible  |
  122. +----------+---------+---------+---------------------------------------+
  123. Methods:
  124.   *** current interface (0.8.6+) ***
  125. UUID : 9BE31822-FDAD-461B-AD51-BE1D1C159921
  126. defined in axvlc.idl as "coclass VLCPlugin2", "interface IVLCControl2"
  127. This interface organize API with several object (like .audio.mute)
  128. It is currently documented on videolan wiki (may change) at
  129. http://wiki.videolan.org/Documentation:Play_HowTo/Advanced_Use_of_VLC
  130.   ***  old interface (deprecated)  ***
  131. UUID : E23FE9C6-778E-49D4-B537-38FCDE4887D8
  132. defined in axvlc.idl as "coclass VLCPlugin", "interface IVLCControl"
  133. play()
  134.     Play current item the playlist
  135. pause()
  136.     Pause current item in the playlist
  137. stop()
  138.     Stop playing current item in playlist
  139. shuttle(Seconds as integer)
  140.     Advance/backtrack playback by specified amount (which is negative for
  141.     backtracking). This is also called relative seeking.
  142.     This method does not work for live streams.
  143. fullscreen()
  144.     Switch between normal and full screen video
  145. playFaster()
  146.     Increase play back speed by 2X, 4X, 8X
  147. playSlower()
  148.     Decrease play back speed by 2X, 4X, 8X
  149. toggleMute()
  150.     mute/unmute sound output
  151. addTarget(MRL As String, Options as array of strings, Mode as enumeration, Position as integer)
  152.     Add MRL into the default playlist, you can also specify a list of playlist Options to attach
  153.     to this MRL or Null for no options. mode indicates the action taken by the playlist on MRL
  154.     which is one the following:
  155.         VLCPlayListInsert       =  1 (Insert MRL into playlist at Position)
  156.         VLCPlayListInsertAndGo  =  9 (Insert MRL into playlist at Position and play it immediately)
  157.         VLCPlayListReplace      =  2 (Replace MRL in playlist at Position)
  158.         VLCPlayListReplaceAndGo = 10 (Replace MRL in playlist at Position and play it immediately)
  159.         VLCPlayListAppend       =  4 (Append MRL in playlist after Position)
  160.         VLCPlayListAppendAndGo  = 12 (Append MRL in playlist after Position and play it immediately)
  161.         VLCPlayListCheckInsert  = 16 (Verify if MRL is in playlist) 
  162.     Position can take the value of -666 as wildcard for the last element in playlist
  163. setVariable(Name as string, Value as object);
  164.     Set a value into a VLC variables
  165. getVariable( Name as string) as object
  166.     Retrieve the value of a VLC variable.
  167. Regards,
  168.     Damien Fouilleul <Damien dot Fouilleul at laposte dot net>