Repository is archived
No commit activity in last 3 years
No release in over 3 years
Ruby gem for accessing the Kaltura API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 0
>= 1.5.1
 Project Readme

kaltura-ruby

A gem implementation of Kaltura's Ruby API client. The kaltura-ruby library suffers from poor namespacing, file separation, and a bug preventing multipart POST requests to the Kaltura API. This gem is a work in progress, and the interface may change between versions as this this library is one giant refactoring project.

Kaltura.org project page

Gem Documentation

Installation

$ gem install velir_kaltura-ruby

In a rails application:

# config/environment.rb
config.gem "velir_kaltura-ruby",:lib=>"kaltura"

Usage

require 'yaml'
require 'kaltura'

# These values may be retrieved from your KMC account
login_email = your_login_email
login_password = your_login_password
partner_id = your_partner_id
subpartner_id = your_subpartner_id
administrator_secret = your_administrator_secret
user_secret = your_user_secret

config = Kaltura::Configuration.new( partner_id )
client = Kaltura::Client.new( config )
session = client.session_service.start( admin_secret, '', Kaltura::Constants::SessionType::ADMIN )
client.ks = session

filter = Kaltura::Filter::BaseFilter.new
pager = Kaltura::FilterPager.new

media = client.media_service.list(filter, pager)
puts "\nmedia:"
puts media.to_yaml

#video = File.open("/home/papyromancer/ovb.ogv")
#client.media_service.upload(video)

Copyright

The original Ruby client library for Kaltura may be found at http://www.kaltura.org/project/kcl_ruby . This implementation of the library as a gem attempts to track the Kaltura svn as closely as possible while adding relevant documentation.

This library is released in compliance with the GNU Affero General Public License.

Copyright (c) 2006-2010 Kaltura Inc. See LICENSE for details.