Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Libviface | 30 | 2 years ago | 2 | C++ | ||||||
C++ bindings for Linux tun/tap and netdevice interface | ||||||||||
Multigestureview | 20 | 2 years ago | 1 | mit | C# | |||||
A container View for Xamarin.Forms that supports event binding for gestures like Long Press, Tap and Right Click. | ||||||||||
Ocaml Tuntap | 19 | 4 days ago | 4 | isc | OCaml | |||||
Bindings to UNIX tuntap facilities | ||||||||||
Clearbit Go | 12 | 1 | a year ago | 3 | November 12, 2021 | 6 | mit | Go | ||
Go bindings for Clearbit | ||||||||||
React Touchable | 10 | 9 years ago | mit | JavaScript | ||||||
Touch bindings in react | ||||||||||
Parquet Cascalog | 7 | 4 years ago | 1 | October 05, 2015 | Java | |||||
Cascading sink tap for parquet files, with some minimal clojure bindings | ||||||||||
Taps | 5 | 13 years ago | ||||||||
Easy CMDB Integration | ||||||||||
Ofa Ruby | 5 | 10 years ago | 4 | March 03, 2013 | Ruby | |||||
Ruby binding to libofa | ||||||||||
Swiftuimenu | 4 | 3 years ago | mit | Swift | ||||||
Homebrew Py | 4 | 11 years ago | 1 | Ruby | ||||||
Python-related additional packages for Homebrew |
This Ruby gem wraps the OFA library (libofa) that is an open-source audio fingerprint created and provided by MusicIP (now called AmpliFIND Music Services).
gem install ofa -- --with-ofa-include=<libofa-dir>/include --with-ofa-lib=<libofa-dir>/lib
or if you're using Bundler:
bundle config build.ofa --with-ofa-include=<libofa-dir>/include --with-ofa-lib=<libofa-dir>/lib
If you're using OSX and Homebrew you can install libofa by using my tap:
brew tap tanob/custom
brew install libofa
require 'ofa'
sample_rate = 44100
stereo = true
data = File.read('music.wav')
puts "Using libofa version: #{Ofa::version.join('.')}"
puts 'Calculated PUID:', Ofa::create_fingerprint(data, data.size/2, sample_rate, stereo)