├── C3notes.py ├── C3toolbox.py ├── CARV ├── RBNCheck.py ├── debug │ └── debug_file.txt ├── output │ ├── .gitignore │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap.min.css │ │ ├── carv.css │ │ └── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ └── js │ │ ├── bootstrap.min.js │ │ └── jquery.js └── rbn_config.ini ├── CAT.py ├── add_slides.py ├── add_vocalsoverdrive.py ├── auto_animations.py ├── auto_cleanup.py ├── banner.gif ├── capitalize_first.py ├── cat.ini ├── check_capitalization.py ├── cleanup_notes.py ├── cleanup_phrases.py ├── compact_harmonies.py ├── compound_phrases.py ├── copy_od_solo.py ├── count_chords.py ├── create_animation_markers.py ├── create_beattrack.py ├── create_keys_animations.py ├── create_phrase_markers.py ├── create_singalong.py ├── create_triplets.py ├── drums_animations.py ├── edit_by_mbt.py ├── export_lyrics.py ├── fhp.py ├── filter_notes.py ├── fix_sustains.py ├── fix_textevents.py ├── flip_discobeat.py ├── halve_beattrack.py ├── halveselected_beattrack.py ├── hide_lyrics.py ├── logo.gif ├── pg_copy_od_solo.py ├── pgrootnotes.py ├── pitch.py ├── polish_notes.py ├── reduce_5lane.py ├── reduce_by_pattern.py ├── reduce_chords.py ├── reduce_singlenotes.py ├── remove_invalid_chars.py ├── remove_kick.py ├── remove_notes.py ├── remove_notes_pg.py ├── remove_notes_prokeys.py ├── show_lyrics.py ├── simplify_roll.py ├── single_pedal.py ├── single_snare.py ├── trim_phrase_markers.py ├── tubes_space.py ├── unflip_discobeat.py ├── unpitch.py └── vocals_cleanup.py /C3notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/C3notes.py -------------------------------------------------------------------------------- /C3toolbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/C3toolbox.py -------------------------------------------------------------------------------- /CARV/RBNCheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/CARV/RBNCheck.py -------------------------------------------------------------------------------- /CARV/debug/debug_file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CARV/output/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /CARV/output/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/CARV/output/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /CARV/output/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/CARV/output/css/bootstrap.min.css -------------------------------------------------------------------------------- /CARV/output/css/carv.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/CARV/output/css/carv.css -------------------------------------------------------------------------------- /CARV/output/css/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/CARV/output/css/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /CARV/output/css/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/CARV/output/css/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /CARV/output/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/CARV/output/js/bootstrap.min.js -------------------------------------------------------------------------------- /CARV/output/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/CARV/output/js/jquery.js -------------------------------------------------------------------------------- /CARV/rbn_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/CARV/rbn_config.ini -------------------------------------------------------------------------------- /CAT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/CAT.py -------------------------------------------------------------------------------- /add_slides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/add_slides.py -------------------------------------------------------------------------------- /add_vocalsoverdrive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/add_vocalsoverdrive.py -------------------------------------------------------------------------------- /auto_animations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/auto_animations.py -------------------------------------------------------------------------------- /auto_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/auto_cleanup.py -------------------------------------------------------------------------------- /banner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/banner.gif -------------------------------------------------------------------------------- /capitalize_first.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/capitalize_first.py -------------------------------------------------------------------------------- /cat.ini: -------------------------------------------------------------------------------- 1 | debug=0 2 | safemode=abc -------------------------------------------------------------------------------- /check_capitalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/check_capitalization.py -------------------------------------------------------------------------------- /cleanup_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/cleanup_notes.py -------------------------------------------------------------------------------- /cleanup_phrases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/cleanup_phrases.py -------------------------------------------------------------------------------- /compact_harmonies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/compact_harmonies.py -------------------------------------------------------------------------------- /compound_phrases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/compound_phrases.py -------------------------------------------------------------------------------- /copy_od_solo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/copy_od_solo.py -------------------------------------------------------------------------------- /count_chords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/count_chords.py -------------------------------------------------------------------------------- /create_animation_markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/create_animation_markers.py -------------------------------------------------------------------------------- /create_beattrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/create_beattrack.py -------------------------------------------------------------------------------- /create_keys_animations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/create_keys_animations.py -------------------------------------------------------------------------------- /create_phrase_markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/create_phrase_markers.py -------------------------------------------------------------------------------- /create_singalong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/create_singalong.py -------------------------------------------------------------------------------- /create_triplets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/create_triplets.py -------------------------------------------------------------------------------- /drums_animations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/drums_animations.py -------------------------------------------------------------------------------- /edit_by_mbt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/edit_by_mbt.py -------------------------------------------------------------------------------- /export_lyrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/export_lyrics.py -------------------------------------------------------------------------------- /fhp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/fhp.py -------------------------------------------------------------------------------- /filter_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/filter_notes.py -------------------------------------------------------------------------------- /fix_sustains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/fix_sustains.py -------------------------------------------------------------------------------- /fix_textevents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/fix_textevents.py -------------------------------------------------------------------------------- /flip_discobeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/flip_discobeat.py -------------------------------------------------------------------------------- /halve_beattrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/halve_beattrack.py -------------------------------------------------------------------------------- /halveselected_beattrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/halveselected_beattrack.py -------------------------------------------------------------------------------- /hide_lyrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/hide_lyrics.py -------------------------------------------------------------------------------- /logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/logo.gif -------------------------------------------------------------------------------- /pg_copy_od_solo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/pg_copy_od_solo.py -------------------------------------------------------------------------------- /pgrootnotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/pgrootnotes.py -------------------------------------------------------------------------------- /pitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/pitch.py -------------------------------------------------------------------------------- /polish_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/polish_notes.py -------------------------------------------------------------------------------- /reduce_5lane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/reduce_5lane.py -------------------------------------------------------------------------------- /reduce_by_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/reduce_by_pattern.py -------------------------------------------------------------------------------- /reduce_chords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/reduce_chords.py -------------------------------------------------------------------------------- /reduce_singlenotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/reduce_singlenotes.py -------------------------------------------------------------------------------- /remove_invalid_chars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/remove_invalid_chars.py -------------------------------------------------------------------------------- /remove_kick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/remove_kick.py -------------------------------------------------------------------------------- /remove_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/remove_notes.py -------------------------------------------------------------------------------- /remove_notes_pg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/remove_notes_pg.py -------------------------------------------------------------------------------- /remove_notes_prokeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/remove_notes_prokeys.py -------------------------------------------------------------------------------- /show_lyrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/show_lyrics.py -------------------------------------------------------------------------------- /simplify_roll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/simplify_roll.py -------------------------------------------------------------------------------- /single_pedal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/single_pedal.py -------------------------------------------------------------------------------- /single_snare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/single_snare.py -------------------------------------------------------------------------------- /trim_phrase_markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/trim_phrase_markers.py -------------------------------------------------------------------------------- /tubes_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/tubes_space.py -------------------------------------------------------------------------------- /unflip_discobeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/unflip_discobeat.py -------------------------------------------------------------------------------- /unpitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/unpitch.py -------------------------------------------------------------------------------- /vocals_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abefacciazzi/CAT/HEAD/vocals_cleanup.py --------------------------------------------------------------------------------