Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/streamio/streamio-as3
Actionscript wrapper around the public Streamio api.
https://github.com/streamio/streamio-as3
Last synced: about 2 months ago
JSON representation
Actionscript wrapper around the public Streamio api.
- Host: GitHub
- URL: https://github.com/streamio/streamio-as3
- Owner: streamio
- License: mit
- Created: 2010-11-11T11:27:46.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2011-02-02T10:09:58.000Z (almost 14 years ago)
- Last Synced: 2024-08-04T05:04:53.600Z (5 months ago)
- Language: ActionScript
- Homepage:
- Size: 469 KB
- Stars: 4
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-actionscript-sorted - streamio-as3 - Actionscript wrapper around the public Streamio api. (API / Other API)
README
# Streamio Flash SDK
Easy to use library for integrating Streamio in your flash (actionscript 3.0) project.
## Prerequisites
* Flash CS4 / Flex 3 or higher
## Installation
Copy the contents of the source directory into the directory containing your fla file.
Or make sure you have a classpath to a directory containing the source.## Usage
import streamio.api.*
StreamioVideo.load("4cd3bbcc11581e1f4d000103", onVideoLoaded)
function onVideoLoaded(e:VideoEvent) {
var video:StreamioVideo = e.video
trace(video.title)
}