OS4 DepotLogo by Nickman 
(anonymous IP: 18.219.140.227,2193) 
 HomeRecentStatsSearchSubmitUploadsMirrorsContactInfoDisclaimerConfigAdmin
 Menu

 Features
   Crashlogs
   Bug tracker
   Locale browser
 

 Categories

   o Audio (343)
   o Datatype (51)
   o Demo (203)
   o Development (596)
   o Document (22)
   o Driver (97)
   o Emulation (147)
   o Game (1004)
   o Graphics (497)
   o Library (115)
   o Network (232)
   o Office (66)
   o Utility (923)
   o Video (69)

Total files: 4365

Full index file
Recent index file

 Links

  Amigans.net
  OpenAmiga
  Aminet
  IntuitionBase


Support the site


 Readme for:  Audio » Misc » playmate.lha

Playmate

Description: General purpose instrument tuner & metronome
Download: playmate.lha       (TIPS: Use the right click menu if your browser takes you back here all the time)
Size: 190kb
Version: 0.2
Date: 25 Jul 2018
Author: Juha Niemimäki
Submitter: JN
Homepage: http://capehill.kapsi.fi
Category: audio/misc
Replaces: audio/misc/playmate.lha
License: Freeware
Distribute: yes
Min OS Version: 4.0
FileID: 10663
 
Snapshots:
 
Comments: 2
Snapshots: 1
Videos: 0
Downloads: 172  (Current version)
416  (Accumulated)
Votes: 0 (0/0)  (30 days/7 days)

Show comments Show snapshots Show videos Show content Show crashlogs Replace file 
PlayMate 0.2

- A general purpose instrument tuner and metronome for AmigaOS -

Recent changes:

- Updated Lua version
- Added ukulele tunings
- Replaced deprecated function calls
- Fixed other warnings
- Did some code refactoring

Requirements:

- AmigaOS 4
- MUI
- AHI

Main features:

- Configurable tuner profiles, note range A0 - C8 (27.5 Hz ... 4186.01 Hz)
- Profiles for guitar, bass, violin, ukulele...
- Adjustable beats per minute (30-360) and beats per measure values (1-9)
- Lua 5.3 powered configuration support


Adding new tuning profiles

1) open file "scripts/profiles.lua" in text editor
2) study the given example profiles
3) a profile consists of name and strings
4) an example:

{
    name = "Middle-C",
    strings =
    {
    	"C4"
    }
}

would create a new 1-string profile called "Middle-C". Note markings such as
sharp "#" and flat "b" are supported. Note name must be in big case ("C").

After editing, you must restart the application to enable modifications.

--

Lua 5.3 license

/******************************************************************************
* Copyright (C) 1994-2018 Lua.org, PUC-Rio.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
******************************************************************************/


Copyright © 2004-2024 by Björn Hagström All Rights Reserved