Uses of Interface
com.tagtraum.audiokern.key.Key
-
Packages that use Key Package Description com.tagtraum.audiokern Core audio classes for decoding, playing and analyzing audio data.com.tagtraum.audiokern.key Classes dealing with tonality, keys etc.com.tagtraum.beatunes Application for analyzing songs and sorting them based on how they match each other.com.tagtraum.beatunes.keyrenderer Implementations forKeyTextRenderer.com.tagtraum.beatunes.library Classes that load and manage the library.com.tagtraum.beatunes.library.filesystem Implementation of a file system based music library.com.tagtraum.beatunes.library.itunes Implementation of an iTunes-based music library.com.tagtraum.beatunes.library.type Special Hibernate types for color, mood etc.com.tagtraum.beatunes.onlinedb Classes for accessing the online database.com.tagtraum.beatunes.songinfo Song info/edit pane.com.tagtraum.beatunes.songtable.renderer Table cell renderers.com.tagtraum.ubermusic.acousticbrainz Web service implementing theUberMusicinterface to download high level data from the AcousticBrainz.com.tagtraum.ubermusic.amazon Offers access to Amazon and basic caching infrastructure.com.tagtraum.ubermusic.beatport com.tagtraum.ubermusic.coverartarchive Web service implementing theUberMusicinterface to download artwork from the Cover Art Archive.com.tagtraum.ubermusic.discogs com.tagtraum.ubermusic.lastfm Last.FM webservice.com.tagtraum.ubermusic.wikidata -
-
Uses of Key in com.tagtraum.audiokern
Methods in com.tagtraum.audiokern that return Key Modifier and Type Method Description KeyAudioMetaData. getKey()KeyAudioSong. getKey()Return the tonal key of this song.KeyURLAudioSong. getKey()default KeyAudioSong. getSyncTempoKey(com.tagtraum.audiokern.bpm.Tempo syncTempo)Returns the key this song would sound like, if the tempo was adjusted to the givensyncTempowithout key lock.Methods in com.tagtraum.audiokern with parameters of type Key Modifier and Type Method Description voidAudioMetaData. setKey(Key key)voidAudioSong. setKey(Key key)Sets the tonal key.voidReadOnlyAudioSong. setKey(Key key)voidURLAudioSong. setKey(Key key) -
Uses of Key in com.tagtraum.audiokern.key
Classes in com.tagtraum.audiokern.key that implement Key Modifier and Type Class Description classMajorKeyMajor keys.classMinorKeyMinor keys.Fields in com.tagtraum.audiokern.key declared as Key Modifier and Type Field Description static KeyKeys. A_FLAT_MAJORAb major.static KeyKeys. A_FLAT_MINORAb minor.static KeyKeys. A_MAJORA major.static KeyKeys. A_MINORA minor.static KeyKeys. B_FLAT_MAJORBb major.static KeyKeys. B_FLAT_MINORBb minor.static KeyKeys. B_MAJORB major.static KeyKeys. B_MINORB minor.static KeyKeys. C_MAJORC major.static KeyKeys. C_MINORC minor.static KeyKeys. D_FLAT_MAJORDb major.static KeyKeys. D_FLAT_MINORDb minor.static KeyKeys. D_MAJORD major.static KeyKeys. D_MINORD minor.static KeyKeys. E_FLAT_MAJOREb major.static KeyKeys. E_FLAT_MINOREb minor.static KeyKeys. E_MAJORE major.static KeyKeys. E_MINORE minor.static KeyKeys. F_MAJORF major.static KeyKeys. F_MINORF minor.static KeyKeys. F_SHARP_MAJORF# major.static KeyKeys. F_SHARP_MINORF# minor.static KeyKeys. G_MAJORG major.static KeyKeys. G_MINORG minor.Methods in com.tagtraum.audiokern.key that return Key Modifier and Type Method Description static KeyKeyFactory. get(Tone tone, Mode mode)Same astone.getKey(mode).KeyKeyProfile. getCorrelatingKey(float[] chromagram, Tone baseTone)Computes the key with the highest correlation to the given chromagram using the given profile.KeyKey. getDiagonal()If major, this returns thegetTonicParallel()of thegetDominant().KeyMajorKey. getDiagonal()KeyMinorKey. getDiagonal()KeyKey. getDominant()Dominant.KeyMajorKey. getDominant()KeyMinorKey. getDominant()KeyKeyProfile.KeyCorrelation. getKey()KeyTone. getKey(Mode mode)Gets the key with the given mode which has this tone as a tonic.KeyTone. getMajorKey()Gets the major key which has this tone as a tonic.KeyTone. getMinorKey()Gets the minor key which has this tone as a tonic.KeyKey. getSubdominant()Subdominant.KeyMajorKey. getSubdominant()KeyMinorKey. getSubdominant()KeyKey. getTonicParallel()Tonic parallel, i.e.KeyMajorKey. getTonicParallel()KeyMinorKey. getTonicParallel()static KeyKeyFactory. guessFromTag(String tag)Guess the key by interpreting the given textual tag.static KeyKeyFactory. guessFromTags(AudioSong song)Guess the key by interpreting other textual metadata like album, work and track name.KeyKey. inc(int fifths)Increase key by the given number of fifths.KeyMajorKey. inc(int fifths)KeyMinorKey. inc(int fifths)KeyKey. incBySemitones(int semitones)Return the key that would result in shifting all tones in this key by' the given number of semitones.KeyMajorKey. incBySemitones(int semitones)KeyMinorKey. incBySemitones(int semitones)static KeyKeyFactory. keyForAccidentals(boolean major, int accidentals)Convert the number of accidentals to a key.static KeyKeyFactory. parse(MidiMessage message)ParseMidiMessageand return the corresponding key, if possible.static KeyKeyFactory. parseKeyCode(String keyCode)Parses a key code.static KeyKeyFactory. parseTKEY(String id3TkeyTag)TKEYstatic Key[]Keys. values()Methods in com.tagtraum.audiokern.key that return types with arguments of type Key Modifier and Type Method Description SignalProcessor<AudioBuffer,Key>PitchProfileKey2. createBeaTunes35Pipeline()SignalProcessor<AudioBuffer,Key>ForestBasedKey. createPipeline(AudioFileFormat audioFileFormat)abstract SignalProcessor<AudioBuffer,Key>KeyAlgorithm. createPipeline(AudioFileFormat audioFileFormat)SignalProcessor<AudioBuffer,Key>PitchProfileKey2. createPipeline(int maxPeaksPerWindow, int windowLength, float meanFactor)SignalProcessor<AudioBuffer,Key>PitchProfileKey2. createPipeline(AudioFileFormat audioFileFormat)Methods in com.tagtraum.audiokern.key with parameters of type Key Modifier and Type Method Description booleanKey. isCompatible(Key key)Indicates whether the given key is compatible to this key in the sense that one is either the sub/dominant or tonic parallel of the other.booleanMajorKey. isCompatible(Key key)booleanMinorKey. isCompatible(Key key)intKey. negativeDistance(Key nextKey)Negative distance in semitones from this key to the given, next key.intMajorKey. negativeDistance(Key nextKey)intMinorKey. negativeDistance(Key nextKey)intKey. positiveDistance(Key nextKey)Positive distance in semitones from this key to the given, next key.intMajorKey. positiveDistance(Key nextKey)intMinorKey. positiveDistance(Key nextKey)abstract StringKeyFormat. toString(Key key)Constructors in com.tagtraum.audiokern.key with parameters of type Key Constructor Description KeyCorrelation(Key key, float correlation) -
Uses of Key in com.tagtraum.beatunes
Fields in com.tagtraum.beatunes with type parameters of type Key Modifier and Type Field Description static Property<Key>Property. KEY_PROPERTYMethods in com.tagtraum.beatunes that return Key Modifier and Type Method Description static Key[]KeyComboBox. values()Methods in com.tagtraum.beatunes with parameters of type Key Modifier and Type Method Description StringKeyTextRenderer. toKeyString(Key key)Create a textual representation for aKeyobject.static StringKeyListCellRenderer. toString(BeaTunes application, Key key)StringKeyTextRenderer. toToolTip(Key key)Create a tooltip representation for aKeyobject. -
Uses of Key in com.tagtraum.beatunes.keyrenderer
Methods in com.tagtraum.beatunes.keyrenderer with parameters of type Key Modifier and Type Method Description StringDefaultKeyTextRenderer. toKeyString(Key key)StringId3KeyTextRenderer. toKeyString(Key key)StringMusicalKeyTextRenderer. toKeyString(Key key)StringOpenKeyNotationTextRenderer. toKeyString(Key key)StringWallClockKeyNotationTextRenderer. toKeyString(Key key)StringDefaultKeyTextRenderer. toToolTip(Key key)StringId3KeyTextRenderer. toToolTip(Key key)StringMusicalKeyTextRenderer. toToolTip(Key key)StringOpenKeyNotationTextRenderer. toToolTip(Key key)StringWallClockKeyNotationTextRenderer. toToolTip(Key key) -
Uses of Key in com.tagtraum.beatunes.library
Methods in com.tagtraum.beatunes.library that return Key Modifier and Type Method Description KeyAudioSongFacade. getKey()KeySong. getKey()KeySongAnnotation. getKey()Methods in com.tagtraum.beatunes.library with parameters of type Key Modifier and Type Method Description voidSong. setKey(Key value)voidSongAnnotation. setKey(Key key) -
Uses of Key in com.tagtraum.beatunes.library.filesystem
Methods in com.tagtraum.beatunes.library.filesystem with parameters of type Key Modifier and Type Method Description voidFileSystemAudioSong. setKey(Key value) -
Uses of Key in com.tagtraum.beatunes.library.itunes
Methods in com.tagtraum.beatunes.library.itunes with parameters of type Key Modifier and Type Method Description voidITunesAudioSong. setKey(Key value) -
Uses of Key in com.tagtraum.beatunes.library.type
Methods in com.tagtraum.beatunes.library.type that return Key Modifier and Type Method Description static KeyHibernateKeyType. shortToKey(short code)Methods in com.tagtraum.beatunes.library.type with parameters of type Key Modifier and Type Method Description static shortHibernateKeyType. keyToShort(Key key) -
Uses of Key in com.tagtraum.beatunes.onlinedb
Methods in com.tagtraum.beatunes.onlinedb that return Key Modifier and Type Method Description KeyReferenceSong. getKey()KeyReferenceSong. getKeyProperty(String key) -
Uses of Key in com.tagtraum.beatunes.songinfo
Methods in com.tagtraum.beatunes.songinfo that return Key Modifier and Type Method Description KeyAutoInfo. getKey() -
Uses of Key in com.tagtraum.beatunes.songtable.renderer
Methods in com.tagtraum.beatunes.songtable.renderer with parameters of type Key Modifier and Type Method Description protected ObjectKeyTableCellRenderer. formatProperty(Key key)static IconKeyTableCellRenderer. getIcon(Key key)static IconKeyTableCellRenderer. getSelectedIcon(Key key)Constructor parameters in com.tagtraum.beatunes.songtable.renderer with type arguments of type Key Constructor Description KeyTableCellRenderer(Property<? extends Key> property) -
Uses of Key in com.tagtraum.ubermusic.acousticbrainz
Methods in com.tagtraum.ubermusic.acousticbrainz that return Key Modifier and Type Method Description KeyAcousticBrainzSong. getKey() -
Uses of Key in com.tagtraum.ubermusic.amazon
Methods in com.tagtraum.ubermusic.amazon that return Key Modifier and Type Method Description KeyAmazonTrack. getKey() -
Uses of Key in com.tagtraum.ubermusic.beatport
Methods in com.tagtraum.ubermusic.beatport that return Key Modifier and Type Method Description KeyBeatportTrack. getKey() -
Uses of Key in com.tagtraum.ubermusic.coverartarchive
Methods in com.tagtraum.ubermusic.coverartarchive that return Key Modifier and Type Method Description KeyCoverartSong. getKey() -
Uses of Key in com.tagtraum.ubermusic.discogs
Methods in com.tagtraum.ubermusic.discogs that return Key Modifier and Type Method Description KeyDiscogsTrack. getKey() -
Uses of Key in com.tagtraum.ubermusic.lastfm
Methods in com.tagtraum.ubermusic.lastfm that return Key Modifier and Type Method Description KeyLastFMTrack. getKey() -
Uses of Key in com.tagtraum.ubermusic.wikidata
Methods in com.tagtraum.ubermusic.wikidata that return Key Modifier and Type Method Description KeyWikidataSong. getKey()
-