Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

Awesome Lists containing this project

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)
}