My favorites | Sign in
Project Home Downloads Wiki Issues Source
Project Information
Members
Featured
Downloads

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

Download From here

Source Code

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");

/** Create blipPHP object. **/
$blipPHP = new blipPHP("username", "password");

/** Upload file **/
$respond = $blipPHP->upload("videos/blip_test_footage.mp4", "title", "description");
print_r($respond);

/** Delete **/
$respond = $blipPHP->delete(1234, "reason");
print_r($respond);

/** Getting information **/
$respond = $blipPHP->info(1234);
print_r($respond);
?>

Blip-PHP access you to upload, modify, delete and getting videos information from Blip.tv using PHP.

Powered by Google Project Hosting