|
|
|
|
|
|
|
|
|
|
|
|
|
|
DOMINO MULTIMEDIA
Media management the Domino way
By Jeffrey R. Burrows
Once upon a time, people found clip-art handy for the occasional flyer or to brighten up a presentation. Web sites have changed all that, and Web masters must discipline mounds of media of all types -- images, sounds, Java applets, movies and soon perhaps smells.
Notes has revolutionized the way many companies pass and organize their information, and it can be put to work similarly for managing media. This article will demonstrate some of the possibilities and benefits, and point you to a ready-made example, free and with all source code included, ready for use. (If you're the impatient sort, you can download and play around with Domino Media Library -- R4.6 & R5 compatible -- now. Grab it from http://www.rhizomatics.demon.co.uk/software/dommedia.zip)
Basic Notes features If you store multimedia files in Notes documents, all the basic features such as replication and workflow can be leveraged for Web site management. Replication allows standard media libraries to be centrally managed across multiple servers and even easily used on your laptop. Workflow allows you to put the same approval process for images in place that you would for documents, so that image-conscious executives can personally approve the Web site's new look. More fundamentally, the document, which contains the media file, can also have various Notes fields incorporated to allow commenting and classification.
Binary file access Part of LotusScript's overlooked legacy from traditional BASIC interpreters is a set of file handling commands, almost identical to that of Bill Gates's old GW-Basic, which can be used to manipulate both text and binary files. Therefore, there's no type of file which can't be read, analyzed, and even written to from LotusScript; the only obstacle being an understanding of the mystical world of binary file formats. A good starting point for deciphering most binary file formats can be found at http://www.wotsit.org.
If you know the binary file formats for a .GIF or .WAV file, it's perfectly possible for Notes to act as a media library with a little more intelligence than simply being a file store. For example, the image width and height, number of colors, stereo channels of .WAV files, which are usually stored in the first few bytes of a binary file, could all be extracted and stored as Notes fields.
While all of this can be accomplished by writing custom LotusScript routines to analyze binary files and extract the relevant files, the Domino Media Library which accompanies this article implements a technology called Binary Field Exchange. This is accomplished entirely in LotusScript, supplied in a script library included with the database, together with all the source code, to be freely reused and modified as you wish.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
-- Advertisement --
PDF Conversion for Lotus Notes
Convert Lotus Notes documents to PDF for sharing, archiving or web printing.
- 1-step PDF: As easy as clicking a Lotus Notes toolbar icon
- Archive email folders or views as a self-contained PDF
- Convert any document collection into a PDF file
- Produce print-quality output from Web applications
- Client side or Server side conversion
- Doesn't require any DLL files
- LotusScript API for developers
Ready to learn more? |
-- Advertisement --
Easy Domino Access: Remove Passwords, End Login Prompts, Reduce Password Management
PistolStar's Password Power provides browser-based single sign-on to Lotus Domino, Sametime and Quickr with the enhanced security of the Kerberos or NTLM authentication protocol.
- Full support available for NTLM authentication protocol in non-Active Directory environments
- Seamlessly integrate Microsoft Active Directory and the Kerberos authentication protocol
- Leverage Active Directory password policies to unify Lotus applications
Learn more about Password Power's powerful, advanced functionality. |
|
|
|
|
|
|
|
|
|
|