Projects tagged ‘actionscript’ and ‘videoplayer’


Jump to tag:

Projects tagged ‘actionscript’ and ‘videoplayer’

Filtered by Project Tags actionscript videoplayer

Refine results Project Tags as3 (4) flash (4) video (3) flvplayer (2) flv (2) flex (2) player (2) pyro (1) f4v (1) display (1) h264 (1) open-source (1)

[4 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

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.

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.