home *** CD-ROM | disk | FTP | other *** search
- AVI LiveConnect Example
- 5/13/96
-
- This code is an example of an AVI plugin using Live Connect.
- This is 32-bit only at this time.
-
- In this example, a Java class implements several functions in the
- the AVI player like stop, play, seek etc.
-
- The HTML directory contains a couple of very simple examples which use
- the plugin. One of those uses JavaScript to access the plugin. The other
- one uses a Java applet.
-
- Npshell.cpp and npwin.c are the two main files in the interaction between
- plugin and Navigator. You should not need to edit npwin.cpp, and only your
- initialization code should go in npshell.cpp. Plgwnd.h and plgwnd.cpp are
- the implementation of the "plugin" object. This is the object keeping state
- information about a specific instance of a plugin. The HWND coming from
- the Navigator is kept here. Cavi.h and cavi.cpp hae the AVI implementation.
- This is done through MCI.
-
- Using the makefile will make some other files. Those files are the stubs,
- they will go in the _stubs directory and are a c/c++ representation of the
- Java/plugin class. They are your 'native' functions in your java class
- (viz. stop, play, etc.). Those files have extern fuctions which in turn are
- implemented in the avijava.cpp file. Avijava.cpp is the glue from your Java
- class and your AVI plugin implementation
-
- To use LiveConnect, you must *zip* up your class files (the ones in the classes
- directory) in a zip file with *NO* compression. Put your zip file in the same
- directory where your plugin is (which can now be any subdirectory of the plugins
- directory).
-
- You will need to find an AVI video to test this plugin.
-
- Good Luck!