Projects tagged ‘flash’ and ‘videoplayer’


Jump to tag:

Projects tagged ‘flash’ and ‘videoplayer’

Filtered by Project Tags flash videoplayer

Refine results Project Tags as3 (5) video (4) flv (4) actionscript (4) xml (3) player (3) flex (3) skinable (2) flvplayer (2) adobe (1) motion (1) actionscript3 (1)

[7 total ]

1 Users

Created about 1 year ago.

0 Users

A lightweight flash video player for use with ultraloader video types (ULVideo). See a working example of ULVideoPlayer. Update: ULVideoPlayer 1.27 is now available for download. Changes: ... [More] Fixed a reskinning update bug. See the AsDoc API Reference for more details. Download just the source code and documentation Download a working example, sourcecode and documentation If this project saves you time and therefore money, please donate a fraction of those savings to this effort. [Less]
Created 5 months ago.

0 Users

ActionScript 3 video player, made with the use of a state design pattern. Loosely coupled which makes it easy to add more features like skinning. Customizable with XML.
Created 10 months ago.

0 Users

A flash video player with unique capabilities, including seamless playback of heterogeneous media, CoSolvent Flash Player was a proprietary property of iPOV.net inc.; the project is now moving into ... [More] open source. See http://cosolvent.biz for full details on the player's capabilities and configuration options. We will be providing how-to documents for building the project from source, as well as a road map for future development work. We welcome any contributors. For starters, we are interested in building on either the Open Video Player or the Open Source Media Framework (formerly Strobe) as a basis for for future development. [Less]
Created 2 months ago.

0 Users

iGroove is an open source Flash/XML based MP3 and Video player developed for IST 402 by Matt Trout and Mike DeLorenzo.
Created about 1 year ago.

0 Users

The National Film Broadcasting of Canada and Turbulent Media are proud to introduce the NFB video player to the web development community. Targeted for quick integration in html websites and ... [More] perfect for basic video integration, the NFB video player is based on the PYRO API, is readable by flash player 9 and up and is customizable through flashVars parameters. See the player live in action at http://nfb.ca . This is essentially the same player you'll see on the site, minus a few NFB business logic related features and views. For quick integration of a video file and preview image, use the following flashVars swf embed parameters fileURL -> The url to your video file previewImageURL -> The url to your preview image showPreviewImage -> true These 3 parameters will manage basic integration. I will soon upload a small list of possible values that can be manipulated with flashVars. Also included is the complete AS3 source code, FLA files and 1 integration example. Also included is the complete AS3 source code, fla files and 1 integration exemple. Cheers everyone. [Less]
Created 8 months ago.

0 Users

Apdev ActionScript 3.0 VideoPlayerEasy to use open-source ActionScript 3.0 VideoPlayer able to playback all flash-compatible video-formats like FLV (on2, sorenson) or even MOV (h.264) and can be ... [More] integrated in every flash project you're currently working on. The example videoplayer is only 11.5KB in size - compared to about 70-80KB if you'd be using the built-in FLVPlayback component. UpdatesVERSION 1.0.1: We added a wrapper for embedding the videoplayer into a HTML page - check out the example here: Embed Apdev VideoPlayer into HTML VERSION 1.0.2: there's now also a skinned version of the HTML-VideoPlayer. Take a look at the ApdevVideoPlayerDefaultStyle.as to get an overview over the customizable attributes of the Apdev VideoPlayer. You can set them in ActionScript or just pass them from HTML via flashvars. VERSION 1.0.3: implemented simple playlist support and a repeat parameter for the playlist. added a new function to the videoplayer API (resize(width, height)) which resizes the whole player - we're using this one for the full-browser videoplayer you can find here: Apdev VideoPlayer full-browser version Code documentationApdev VideoPlayer code documentation Screenshot of example playerStandard Apdev VideoPlayer normal colorset customized VideoPlayer with "apdev" colorset (could be any colors you want) Code example (ActionScript)// create videoplayer var video:ApdevVideoPlayer = new ApdevVideoPlayer(320, 240); // position videoplayer on stage video.x = 25; video.y = 25; // add videoplayer to stage addChild(video); // add eventlistener video.addEventListener(VideoControlsEvent.STATE_UPDATE, onStateUpdate, false, 0, true); // position the videoplayer's controls at the bottom of the video video.controlsOverVideo = false; // controls should not fade out (when not in fullscreen mode) video.controlsAutoHide = false; // load preview image video.videostill = "videostill.jpg"; // set video's autoplay to false video.autoPlay = false; // load video video.load("video01.mp4"); // ... /** * event listener - called when videoplayer's state changes. */ private function onStateUpdate(event:VideoControlsEvent):void { trace("onStateUpdate() >>> " + event.data); }Code example (HTML version - using SWFObject) // ... // // ... alternativ content // ... [Less]
Created 4 months ago.