npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ts.videoprovider

v1.0.1

Published

This module for the Appcelerator Titanium Alloy MVC framework could be used to easily retrieve streamable url (via http) from a given provider.

Downloads

3

Readme

VideoProvider Titanium Alloy License

This module for the Appcelerator Titanium Alloy MVC framework could be used to easily retrieve streamable url (via http) from a given provider. So far, only Youtube and Limelight are supported. Also, some Youtube's videos are protected via copyright and won't be displayed.

Quick Start

Get it gitTio

Download this repository and install it

  • In your application's tiapp.xml file, add the module to the modules section:
<modules>
    <module platform="commonjs">ts.videoprovider</module>
</modules>
  • Copy the ts.videoprovider-commonjs-x.x.x.zip bundle into your root app directory.

Or use your favorite package manager

  • gitTio: gittio install ts.videoprovider

Use it

var VideoProvider = require('ts.videoprovider');

// Assuming there is a VideoPlayer with the id 'videoPlayer' accessible

// ------ Youtube
VideoProvider
    .getVideoUrl('youtube', /* <media_id> */)
    .then(
        function onSuccess(url) { $.videoPlayer.setUrl(url); }, 
        function onError(e) { Ti.API.error(e); }
    );

// ------ Limelight
VideoProvider.configure({
    providers: [{
        name: 'limelight',
        secretKey: /* <secret_key> */, 
        accessKey: /* <access_key> */,
        organizationId: /* <organization_id> */
    }]
});

VideoProvider
    .getVideoUrl('limelight', /* <media_id> */)
    .then(
        function onSuccess(url) { $.videoPlayer.setUrl(url); }, 
        function onError(e) { Ti.API.error(e); }
    );

API

VideoProvider.getVideoUrl(provider, videoId) :: {Promise-like Object}

Get a streamable url for a given video

  • {String} provider The provider; only 'youtube' or 'limelight' so far.

  • {String} id The related video's id

  • return {Object} A lightweight promise-like object

    • {Function} then Function that actually executes the async request
      • {Function} then.success Success callback, take one parameter: the requested url.
      • {Function} then.error Error callback, take one parameter which is the error message.
VideoProvider.configure(options)

Configure the module; i.e supply providers keys

  • {Object} options
    • {Array} options.provider A list of providers configuration object

Provider's configuration objects:

  • limelight
    • {String} name The provider name
    • {String} secretKey
    • {String} accessKey
    • {String} organizationId

Remark: Youtube does not require any configuration.

Changelog

  • 1.0 First version

wearesmiths

Appcelerator, Appcelerator Titanium and associated marks and logos are trademarks of Appcelerator, Inc.
Titanium is Copyright (c) 2008-2015 by Appcelerator, Inc. All Rights Reserved.
Titanium is licensed under the Apache Public License (Version 2).