Projects tagged ‘flex’ and ‘videoplayer’


[7 total ]

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 about 1 month ago.

0 Users

This is a flex multi-video player with sort and an XML backend. It plays FLVs. The sort categories are hardcoded, but the FLV address and video info are pulled in using an XML file. Since so many ... [More] people wanted this, we decided to release it open source. The code was created by Mike Lively and Alissa Gilley at Northern Kentucky University. The full flex code is provided as a zip file under the downloads tab. A video on its usage can be found at YouTube Video Tutorial [Less]
Created 12 months 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 4 months ago.

0 Users

Grabs an XML playlist, and rotates the videos while displaying their respective info (title, description, length, ...)
Created 3 months ago.

0 Users

Players Video and MP3 for ActionScript 3
Created 12 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. 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 3 months ago.

0 Users

Just another media player with the ability to search audio,video anywhere in the net, and can also select files from your local computer. An experimental project to explore Adobe flex features.
Created 12 months ago.