|
Project Information
Featured
Downloads
|
Blip-PHPBlip-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 ItSource CodeTo 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. |