Project

mmplayer

0.0
No commit activity in last 3 years
No release in over 3 years
Control MPlayer with MIDI
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 5.5.0, ~> 5.5
>= 1.1.0, ~> 1.1
>= 10.4.2, ~> 10.4
>= 1.2.1, ~> 1.2

Runtime

>= 0.3, ~> 0
>= 0.3.9, ~> 0.3
>= 0.4.1, ~> 0.4
>= 0.2.0, ~> 0.2
>= 0.4.3, ~> 0.4
 Project Readme

mmplayer

image

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