TubeGripClient - Play Any Movie on YouTube in AS3 with your own player!

Hi Everyone,
as some of you might have noticed, KeepVid went downhill. I don't know exactly when, however I found an alternative: http://www.tubegrip.com. It works pretty well...
Here is a sample use of this library:
PLAIN TEXT
Actionscript:

public function startTest():void

{

    _client = TubeGripClient.getInstance();

 

    // this takes a url from YouTube they call Watch Urls.. basically, the url [...]

Tutorial - Consuming REST web services in ActionScript 3 - Part 4

Hi Everyone,
this is a follow-up to the following posts:

Part 1
Part 2
Part 3

In this post, I will add code to identify each request uniquely, give you a class called "AbstractClient" that will handle most of the mechanics and is easily extended. The idea is to give you a base on which to build. Essentially, for [...]

Tutorial - Playing FLV video in plain AS3 - Part 4 - Sample Usage

Hi Everyone..
This is the fourth (and most probably the last) installment of this series on playing FLV (and H.264 MP4) video in Flash from scratch.
Full source code for the library is here.
The related posts are:

Part 1
Part 2
Part 3

For many of you, this might be the only post you are interested in. It will [...]

Tutorial - Playing Video with SubTitles in AS3 - Part 1

Hi Everyone,
The series on Playing FLV files in AS3 was probably the most popular post on this blog. So I thought I would take it one step further: show SubTitles from an .SRT file over the FLV while it is playing.
First, you need to read this post by Jankees van Woezik. He did a great [...]

SWF TextField Factory — Dynamically Loading Fonts in AS3 using Flex SDK 3.4

Hi Everyone,
it has been a long while since I wrote! Been busy. Now I have some time and the first thing I did is to get away from the Flash IDE completely. I had been waiting to be able to debug directly in FlashDevelop for a while, tried some extension that didn't work, then [...]

AS3 - LineArt Filter - Experiments

Hi Everyone,
live from Bangkok!! lol. It's songkram here, if you don't want to get wet stay inside and write on your blog.
So I have to detect the location of an item on images for one of my project, I thought of using the LineArt filter to detect high contrast areas, enabling me to pinpoint the [...]

Tutorial - Playing FLV video in plain AS3 - Part 3 (Updated)

Hi Everyone,
it's been a while.. a long while. I have been selling my time to Adobe, doing Flex work with a great team in NYC; we are working on the MediaStore for Verizon Wireless since July 21st? I forget.. NYC is nice, but not for me. I'm a nature lover!
A few people posted comments on [...]

Tutorial - Consuming REST web services in ActionScript 3 - Part 2

Hi Everyone,
the first part of this tutorial can be found here: Tutorial - Consuming REST web services in ActionScript 3 - Part 1.
Today I will continue on the exploration of consuming REST web services in ActionScript 3. We will cover possible errors first, then create a versatile web service client object which is easily adaptable [...]

YouTube Data API - new rollout

Hi Everyone,
YouTube released a few days ago a new version of their data API. You can now interact with the system; you are no longer limited to simply retreiving publicly available information. You can now

Add, Remove and Modify Favorites
Create, Modify and Delete Playlists
Add To, Remove From and Reorder Playlists
Upload, Delete and Update Videos
Rate and Comment [...]

Tutorial - Consuming REST web services in ActionScript 3 - Part 1

Hello Everyone,
today I will discuss the method I have developed to consume RESTfull web services using AS3. This method was developped over time, I have written many different web service clients since last summer, about 20 of them; for different web services. Some of them require no parameters at all, some of them require GET [...]