mmplayer
Control MPlayer with MIDI
MPlayer is a free, cross-platform, command-line driven, highly configurable, (often) GUI-less open-source media player.
Enabling MPlayer to be controlled by MIDI opens up a host of possibilities for live video performance, media automation and more
This project provides a Ruby DSL to define realtime interactions between MIDI input and MPlayer
Install
You'll need to install MPlayer before using this. That can usually be accomplished with a package manager eg brew install mplayer
depending on what OS you're using.
This project itself can be installed as a Ruby Gem using
gem install mmplayer
Or if you're using Bundler, add this to your Gemfile
gem "mmplayer"
Usage
require "mmplayer"
@input = UniMIDI::Input.gets
@player = MMPlayer.new(@input, :mplayer_flags => "-fs") do
rx_channel 0
system(:start) { play("1.mov") }
note(1) { play("2.mov") }
note("C2") { play("3.mov") }
cc(1) { |value| volume(:set, value) }
cc(20) { |value| seek(to_percent(value), :percent) }
eof { puts "finished" }
end
@player.start
An annotated breakdown of this example can be found here
The MPlayer Man Page has a full list of MPlayer startup flags
All MPlayer runtime commands enabled by the mplayer-ruby project are available here too. (eg seek
and volume
in the example above). The RDOC for mplayer-ruby has a full list of runtime commands
License
Apache 2.0, See LICENSE file
Copyright (c) 2015-2017 Ari Russo