Spaces:
Running
Running
Upload TMIDIX.py
Browse files
TMIDIX.py
CHANGED
@@ -9762,7 +9762,6 @@ def escore_notes_to_text_description(escore_notes,
|
|
9762 |
|
9763 |
description += 'This ' + mood + ' melody has '
|
9764 |
|
9765 |
-
|
9766 |
else:
|
9767 |
description += 'TThis drum track has '
|
9768 |
|
@@ -9776,19 +9775,17 @@ def escore_notes_to_text_description(escore_notes,
|
|
9776 |
if instruments:
|
9777 |
|
9778 |
if comp_type not in ['monophonic melody', 'drum track']:
|
|
|
9779 |
description += 'The song '
|
9780 |
|
9781 |
-
|
9782 |
-
description += 'The melody '
|
9783 |
-
|
9784 |
-
if len(instruments) == 1:
|
9785 |
-
description += 'is played on a solo ' + instruments[0] + '.'
|
9786 |
|
9787 |
-
|
9788 |
-
|
9789 |
-
|
9790 |
-
|
9791 |
-
|
|
|
9792 |
|
9793 |
description += '\n'
|
9794 |
|
@@ -11095,4 +11092,4 @@ def escore_notes_pitches_range(escore_notes,
|
|
11095 |
#
|
11096 |
# This is the end of the TMIDI X Python module
|
11097 |
#
|
11098 |
-
###################################################################################
|
|
|
9762 |
|
9763 |
description += 'This ' + mood + ' melody has '
|
9764 |
|
|
|
9765 |
else:
|
9766 |
description += 'TThis drum track has '
|
9767 |
|
|
|
9775 |
if instruments:
|
9776 |
|
9777 |
if comp_type not in ['monophonic melody', 'drum track']:
|
9778 |
+
|
9779 |
description += 'The song '
|
9780 |
|
9781 |
+
if len(instruments) > 1:
|
|
|
|
|
|
|
|
|
9782 |
|
9783 |
+
description += 'features ' + NUMERALS[max(0, min(15, len(instruments)-1))] + ' instruments: '
|
9784 |
+
description += ', '.join(instruments[:-1]) + ' and ' + instruments[-1] + '.'
|
9785 |
+
|
9786 |
+
else:
|
9787 |
+
description += 'features one instrument: ' + instrument[0] + '.'
|
9788 |
+
|
9789 |
|
9790 |
description += '\n'
|
9791 |
|
|
|
11092 |
#
|
11093 |
# This is the end of the TMIDI X Python module
|
11094 |
#
|
11095 |
+
###################################################################################
|