项目作者: mguinada

项目描述 :
vlc-client allows to control VLC media player over TCP
高级语言: Ruby
项目地址: git://github.com/mguinada/vlc-client.git
创建时间: 2012-10-11T00:52:56Z
项目社区:https://github.com/mguinada/vlc-client

开源协议:MIT License

下载


vlc-client Build Status

vlc-client manages a VLC media player instance through its RC interface.

Installation

Add this line to your application’s Gemfile:

  1. gem 'vlc-client'

And then execute:

  1. $ bundle

Or install it yourself as:

  1. $ gem install vlc-client

Usage

Create a client and connect to a running VLC media player instance.
  1. vlc = VLC::Client.new('192.168.1.10', 9999) #Expects a VLC media player running on `192.168.1.10:9999`, e.g. `vlc --extraintf rc --rc-host 192.168.1.10:9999`
  2. vlc.connect # connect to server
  3. # => true
  4. vlc.play('http://example.org/media.mp3') # play media
  5. # => true
  6. vlc.playing?
  7. # => true
  8. vlc.fullscreen
  9. # => true
  10. #...
Create a self managed client/server system.

If you need a local client/server VLC media player system

  1. vlc = VLC::System.new # A client/server system over a local managed VLC instance
  2. vlc.connected? # auto connect
  3. # => true
  4. vlc.play('http://example.org/media.mp3')
  5. # => true
  6. vlc.progress
  7. # => 1 #%
  8. #...
  9. # Technically this is the same as
  10. vlc = VLC::Client.new(VLC::Server.new('localhost', 9595, false))

Playlist management

  1. vlc = VLC::System.new
  2. vlc.add_to_playlist('track1.mp3')
  3. vlc.add_to_playlist('track2.mp3')
  4. vlc.play
  5. vlc.playlist
  6. #=> [{:number=>1, :title=>"Track #1 title", :length=>"00:03:10", :times_played=>1}, {:number=>2, :title=>"Track #2 title", :length=>"00:03:30", :times_played=>0}]

Reference

reference

Notice

vlc-client has been tested on linux but it should work on any VLC installation as long as the command line is responsive for vlc and cvlc calls. On Mac OS X these are not available by default. They can be created with:

  1. echo "alias vlc='/Applications/VLC.app/Contents/MacOS/VLC'" >> ~/.bash_profile
  2. echo "alias cvlc='/Applications/VLC.app/Contents/MacOS/VLC'" >> ~/.bash_profile

Contributing

  1. Fork it
  2. Create your topic branch (git checkout -b my-topic-branch)
  3. Add/change specs for your unimplemented feature or bug fix
  4. Hack it
  5. Make sure specs pass (bundle exec rake spec)
  6. Edit the documentation in coherence with your feature or fixes. Run bundle exec rake yard to review
  7. Commit changes (git commit -am 'Add some feature/fix') and push to the branch (git push origin my-topic-branch)
  8. Submit a pull request

Copyright (c) 2012 Miguel Guinada
LICENSE for details.