Skip to content

Commit 36c12c7

Browse files
committed
* updated Media interface with its own implementation for play() and pause() generics
* created video plugin implementations for Flash Video, QuickTime and Windows Media PLayer types (including sample videos) git-svn-id: svn://svn.ajax.org/platform/source/trunk@74 3c3c2983-eddd-4584-88e6-321645f70290
1 parent ad1a0db commit 36c12c7

16 files changed

+2051
-8
lines changed

NOTICE

+8
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,14 @@ The js-graph-it library is open source software from Luca Zenti
3232
The Date Format library is open source software from Steven Levithan
3333
(http://stevenlevithan.com/) and is licensed under the MIT license.
3434

35+
Quicktime is a registered trademark of Apple Inc.
36+
The AC_Quicktime library, version 1.2, is open source software from Apple Inc.,
37+
copyright © 2006-2007 Apple Computer, Inc., All Rights Reserved.
38+
39+
The FAVideo library, version 1.7, is open source software from Adobe Systems,
40+
copyright (c) 2007. Adobe Systems Incorporated, and licensed under the BSD
41+
license.
42+
3543
Other libraries used in this product require their respective headers with
3644
copyright and license notices to remain unchanged in the file(s) containing the
3745
source code.

components/slider.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@
3636
* @version %I%, %G%
3737
* @since 0.9
3838
*/
39-
jpf.range = jpf.slider = function(pHtmlNode, tagName){
39+
jpf.range =
40+
jpf.slider = function(pHtmlNode, tagName){
4041
jpf.register(this, tagName || "slider", GUI_NODE);/** @inherits jpf.Class */
4142
this.pHtmlNode = pHtmlNode || document.body;
4243
this.pHtmlDoc = this.pHtmlNode.ownerDocument;

components/video/ClearOverAll.swf

5.08 KB
Binary file not shown.

components/video/FAVideo.fla

846 KB
Binary file not shown.

components/video/FAVideo.swf

14.9 KB
Binary file not shown.

components/video/demo_video.flv

1.87 MB
Binary file not shown.

components/video/demo_video.mov

3.13 MB
Binary file not shown.

components/video/demo_video.wmv

519 KB
Binary file not shown.

0 commit comments

Comments
 (0)