blip-php
blip-php is a tiny PHP library meant to make accessing blip.tv's REST API easier.
It was conceived by Almog Baku and is maintained in part by Kelly Sutton.
Get It
To grab the code, just enter
svn checkout http://blip-php.googlecode.com/svn/trunk/ blip-php-read-only
in your favorite shell.
Example
<?php
include_once("blipPHP.php");
$blipPHP = new blipPHP("username", "password");
$respond = $blipPHP->info(1234);
print_r($respond);
?>Upload, modify, delete and getting information using php.