Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/andchir/jquery-video-extend

HTML5 Video Extend
https://github.com/andchir/jquery-video-extend

Last synced: 6 days ago
JSON representation

HTML5 Video Extend

Awesome Lists containing this project

README

        

# jQuery Video Extend
HTML5 Video Extend

* Adding a logo.
* Adding markers with labels.
* Playing YouTube video.
* Playing FLV video (basic support).
* Simply make responsive.

![](http://andchir.github.io/jquery-video-extend/img/screenshot.png)

[Wiki](https://github.com/andchir/jquery-video-extend/wiki)

[Demo](http://andchir.github.io/jquery-video-extend/)

``` html

```

``` html

$(document).bind('ready',function(){

$('#video1').videoExtend({
logo: 'img/example_logo.png',
logoLink: 'http://example.com/',
logoSize: [ 60, 40 ],
markers: [
{
time: 39.32,// seconds
text: 'Chapter 1'
},
{
time: 350.23,
text: 'Chapter 2'
},
{
time: 470.88,
text: 'Chapter 3'
},
{
time: 677.82,
text: 'Chapter 4'
}
]
});

});

```

``` html

```

### Another way:

``` html

```
Any parameters can be specified by a prefix "data-". The array must be JSON string.