Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xutl/yii2-videojs-widget
适用于Yii2 的视频播放器
https://github.com/xutl/yii2-videojs-widget
Last synced: 11 days ago
JSON representation
适用于Yii2 的视频播放器
- Host: GitHub
- URL: https://github.com/xutl/yii2-videojs-widget
- Owner: xutl
- Created: 2016-12-23T06:53:00.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-09T08:27:36.000Z (almost 8 years ago)
- Last Synced: 2024-10-11T05:21:20.162Z (about 1 month ago)
- Language: JavaScript
- Size: 328 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
yii2-videojs-widget
===================[![Latest Version](https://img.shields.io/github/release/xutl/yii2-videojs-widget.svg?style=flat-square)](https://github.com/xutl/yii2-videojs-widget/releases)
[![Software License](http://img.shields.io/badge/license-BSD3-brightgreen.svg?style=flat-square)](LICENSE.md)
[![Total Downloads](https://img.shields.io/packagist/dt/xutl/yii2-videojs-widget.svg?style=flat-square)](https://packagist.org/packages/xutl/yii2-videojs-widget)The yii2-videojs-widget is a Yii 2 wrapper for the [video.js](http://www.videojs.com/).
A JavaScript and CSS library that makes it easier to work with and build on HTML5 video. This is also known as an HTML5 Video Player.Installation
------------The preferred way to install this extension is through [composer](http://getcomposer.org/download/).
Either run
```
php composer.phar require --prefer-dist xutl/yii2-videojs-widget "~1.0"
```or add
```
"xutl/yii2-videojs-widget": "~1.0"
```to the require section of your `composer.json` file.
How to use
----------Example 1 - HTML5
```php
[
'class' => 'video-js vjs-default-skin vjs-big-play-centered',
'poster' => "http://www.videojs.com/img/poster.jpg",
'controls' => true,
'preload' => 'auto',
'width' => '970',
'height' => '400',
],
'tags' => [
'source' => [
['src' => 'http://vjs.zencdn.net/v/oceans.mp4', 'type' => 'video/mp4'],
['src' => 'http://vjs.zencdn.net/v/oceans.webm', 'type' => 'video/webm']
],
'track' => [
['kind' => 'captions', 'src' => 'http://vjs.zencdn.net/vtt/captions.vtt', 'srclang' => 'en', 'label' => 'English']
]
]
]);
?>```
Example 2 - Real Time Messaging Protocol (RTMP)
```php
[
'class' => 'video-js vjs-default-skin vjs-big-play-centered',
'controls' => true,
'preload' => 'auto',
'width' => '420',
'height' => '315',
'data' => [
'setup' => [
'autoplay' => true,
'techOrder' =>['flash', 'html5']
],
],
],
'tags' => [
'source' => [
['src' => 'rtmp://live.ao.com/video/spacealonehd_sounas_640_300.mp4', 'type' => 'rtmp/mp4']
]
]
]);
?>```