├── .idea ├── GrooveToolbox.iml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── Groove.py ├── Grooves ├── Glam Get Down.bfd3pal ├── Soul Blues.bfd3pal ├── Stanton Moore JB.bfd3pal └── Trash Metal.bfd3pal ├── LoadGrooveFromAudio.py ├── LoadGrooveFromBFDPalette.py ├── LoadGrooveFromMIDI.py ├── PlotGrooveData.py ├── README.md ├── SimilarityMetrics.py ├── example.py ├── fx ├── __init__.py ├── __init__.pyc ├── __pycache__ │ └── __init__.cpython-35.pyc ├── bfd │ ├── Project │ │ └── shared_bfd.pyproj │ ├── __init__.py │ ├── __init__.pyc │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── groove.cpython-35.pyc │ │ ├── info.cpython-35.pyc │ │ └── kit.cpython-35.pyc │ ├── bfd2.py │ ├── groove.py │ ├── groove.pyc │ ├── info.py │ ├── info.pyc │ ├── kit.py │ ├── kit.pyc │ ├── kitpiece.py │ └── sendLuaCodeToBFD.py └── common │ ├── Project │ └── shared_common.pyproj │ ├── __init__.py │ ├── __init__.pyc │ ├── __pycache__ │ ├── __init__.cpython-35.pyc │ ├── filesystem.cpython-35.pyc │ └── fxxml.cpython-35.pyc │ ├── counters.py │ ├── filesystem.py │ ├── filesystem.pyc │ ├── fxxml.py │ ├── fxxml.pyc │ └── misc.py └── test_script.py /.idea/GrooveToolbox.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/.idea/GrooveToolbox.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /Groove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/Groove.py -------------------------------------------------------------------------------- /Grooves/Glam Get Down.bfd3pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/Grooves/Glam Get Down.bfd3pal -------------------------------------------------------------------------------- /Grooves/Soul Blues.bfd3pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/Grooves/Soul Blues.bfd3pal -------------------------------------------------------------------------------- /Grooves/Stanton Moore JB.bfd3pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/Grooves/Stanton Moore JB.bfd3pal -------------------------------------------------------------------------------- /Grooves/Trash Metal.bfd3pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/Grooves/Trash Metal.bfd3pal -------------------------------------------------------------------------------- /LoadGrooveFromAudio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/LoadGrooveFromAudio.py -------------------------------------------------------------------------------- /LoadGrooveFromBFDPalette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/LoadGrooveFromBFDPalette.py -------------------------------------------------------------------------------- /LoadGrooveFromMIDI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/LoadGrooveFromMIDI.py -------------------------------------------------------------------------------- /PlotGrooveData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/PlotGrooveData.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/README.md -------------------------------------------------------------------------------- /SimilarityMetrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/SimilarityMetrics.py -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/example.py -------------------------------------------------------------------------------- /fx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fx/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/__init__.pyc -------------------------------------------------------------------------------- /fx/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /fx/bfd/Project/shared_bfd.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/bfd/Project/shared_bfd.pyproj -------------------------------------------------------------------------------- /fx/bfd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fx/bfd/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/bfd/__init__.pyc -------------------------------------------------------------------------------- /fx/bfd/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/bfd/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /fx/bfd/__pycache__/groove.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/bfd/__pycache__/groove.cpython-35.pyc -------------------------------------------------------------------------------- /fx/bfd/__pycache__/info.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/bfd/__pycache__/info.cpython-35.pyc -------------------------------------------------------------------------------- /fx/bfd/__pycache__/kit.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/bfd/__pycache__/kit.cpython-35.pyc -------------------------------------------------------------------------------- /fx/bfd/bfd2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/bfd/bfd2.py -------------------------------------------------------------------------------- /fx/bfd/groove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/bfd/groove.py -------------------------------------------------------------------------------- /fx/bfd/groove.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/bfd/groove.pyc -------------------------------------------------------------------------------- /fx/bfd/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/bfd/info.py -------------------------------------------------------------------------------- /fx/bfd/info.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/bfd/info.pyc -------------------------------------------------------------------------------- /fx/bfd/kit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/bfd/kit.py -------------------------------------------------------------------------------- /fx/bfd/kit.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/bfd/kit.pyc -------------------------------------------------------------------------------- /fx/bfd/kitpiece.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/bfd/kitpiece.py -------------------------------------------------------------------------------- /fx/bfd/sendLuaCodeToBFD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/bfd/sendLuaCodeToBFD.py -------------------------------------------------------------------------------- /fx/common/Project/shared_common.pyproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/common/Project/shared_common.pyproj -------------------------------------------------------------------------------- /fx/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fx/common/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/common/__init__.pyc -------------------------------------------------------------------------------- /fx/common/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/common/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /fx/common/__pycache__/filesystem.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/common/__pycache__/filesystem.cpython-35.pyc -------------------------------------------------------------------------------- /fx/common/__pycache__/fxxml.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/common/__pycache__/fxxml.cpython-35.pyc -------------------------------------------------------------------------------- /fx/common/counters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/common/counters.py -------------------------------------------------------------------------------- /fx/common/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/common/filesystem.py -------------------------------------------------------------------------------- /fx/common/filesystem.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/common/filesystem.pyc -------------------------------------------------------------------------------- /fx/common/fxxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/common/fxxml.py -------------------------------------------------------------------------------- /fx/common/fxxml.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/common/fxxml.pyc -------------------------------------------------------------------------------- /fx/common/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredbru/GrooveToolbox/HEAD/fx/common/misc.py -------------------------------------------------------------------------------- /test_script.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------