Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/revolunet/VLCcontrols
jQuery based VLC plugin
https://github.com/revolunet/VLCcontrols
Last synced: 3 months ago
JSON representation
jQuery based VLC plugin
- Host: GitHub
- URL: https://github.com/revolunet/VLCcontrols
- Owner: revolunet
- License: other
- Created: 2009-09-09T14:26:14.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2012-09-20T08:29:02.000Z (about 12 years ago)
- Last Synced: 2024-06-22T22:05:12.185Z (6 months ago)
- Language: JavaScript
- Homepage: http://revolunet.github.com/VLCcontrols/
- Size: 180 KB
- Stars: 29
- Watchers: 7
- Forks: 12
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
VLC plugin javascript wrapper
-----------------------------VLCcontrols is a Jquery class that embeds and controls VLC in your webpage.
**NB: DEPRECATED, LAST UPDATE : OCT, 2010**
Detection and embedding is based on [swfobject][3]
recent VLC >= 1.0 new security restrictions disable lots of plugin functionnality (output). now need some serious rewrite so moved to github !
28/06/2010 : just dropped a new jQuery class that works better and with new VLC versions. see jquery.html
**Examples :**
- The example are on GitHub pages : [http://revolunet.github.com/VLCcontrols][4]
**API :**
// create a player in div '#vlc1'
var player = VLCobject.embedPlayer('vlc1', 400, 300, true);
player.play('http://download.blender.org/peach/bigbuckbunny_movies/big_buck_bunny_480p_surround-fix.avi');
// set a [VLC option][2]
player.options.set("start-time", 50);
// reset all VLC options
player.options.clear();
// start playing uri
player.play(uri);
// stop playing
player.stop();
**INSTALLATION**You can directly use our hosting and google jQuery CDN for js+images+css :
[1]: http://www.revolunet.com/labo/code/VLCcontrols
[2]: http://wiki.videolan.org/VLC_command-line_help
[3]: http://blog.deconcept.com/swfobject/
[4]: http://revolunet.github.com/VLCcontrols