qencode/api-client 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

qencode/api-client

最新稳定版本:v1.13

Composer 安装命令:

composer require qencode/api-client

包简介

PHP library for interacting with Qencode API

README 文档

README

PHP library for interacting with the Qencode API.

Installation

Get composer, run this in your project directory:

    curl -sS https://getcomposer.org/installer | php

Create composer.json under the root of your project with the following instructions:

    {
      "require": {
        "qencode/api-client": "1.13.*"
      }
    }

Run composer:

    php composer.phar install

Include vendor/autoload.php:

   require 'vendor/autoload.php';

If you don't use composer, use autoload.php located in the root of the repo:

   require_once __DIR__ . '/../autoload.php';

Usage

Instantiate Qencode API Client:

   $q = new QencodeApiClient($apiKey);

Create a new job:

   $task = $q->createTask(); 
   $task->start($transcodingProfileId, $video_url);

Query an existing job:

    $response = $task->getStatus();

Copyright

Copyright 2018 Qencode, Inc.

统计信息

  • 总下载量: 219.77k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 8
  • 点击次数: 1
  • 依赖项目数: 2
  • 推荐数: 0

GitHub 信息

  • Stars: 8
  • Watchers: 2
  • Forks: 3
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2019-01-09