maialib 1.7.2__pp38-pypy38_pp73-win_amd64.whl → 1.8.1__pp38-pypy38_pp73-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of maialib might be problematic. Click here for more details.
- maialib/maiacore/Release/maiacore.pyi +12 -10
- maialib/maiacore/Release/maiacore.pypy38-pp73-win_amd64.pyd +0 -0
- {maialib-1.7.2.dist-info → maialib-1.8.1.dist-info}/METADATA +1 -1
- {maialib-1.7.2.dist-info → maialib-1.8.1.dist-info}/RECORD +7 -7
- {maialib-1.7.2.dist-info → maialib-1.8.1.dist-info}/LICENSE.txt +0 -0
- {maialib-1.7.2.dist-info → maialib-1.8.1.dist-info}/WHEEL +0 -0
- {maialib-1.7.2.dist-info → maialib-1.8.1.dist-info}/top_level.txt +0 -0
|
@@ -99,8 +99,6 @@ class Chord:
|
|
|
99
99
|
...
|
|
100
100
|
def getIntervalsFromOriginalSortedNotes(self) -> list[Interval]:
|
|
101
101
|
...
|
|
102
|
-
def getMIDIIntervals(self, firstNoteAsReference: bool = False) -> list[int]:
|
|
103
|
-
...
|
|
104
102
|
def getMeanFrequency(self) -> float:
|
|
105
103
|
...
|
|
106
104
|
def getMeanMidiValue(self) -> int:
|
|
@@ -113,6 +111,8 @@ class Chord:
|
|
|
113
111
|
...
|
|
114
112
|
def getMeanPitch(self, accType: str = '') -> str:
|
|
115
113
|
...
|
|
114
|
+
def getMidiIntervals(self, firstNoteAsReference: bool = False) -> list[int]:
|
|
115
|
+
...
|
|
116
116
|
def getMidiValueStd(self) -> float:
|
|
117
117
|
...
|
|
118
118
|
def getName(self) -> str:
|
|
@@ -279,8 +279,6 @@ class Chord:
|
|
|
279
279
|
...
|
|
280
280
|
def insertNote(self, insertNote: Note, positionNote: int = 0) -> None:
|
|
281
281
|
...
|
|
282
|
-
def inversion(self, inversionNumber: int) -> None:
|
|
283
|
-
...
|
|
284
282
|
def isAugmentedChord(self) -> bool:
|
|
285
283
|
...
|
|
286
284
|
def isDiminishedChord(self) -> bool:
|
|
@@ -323,6 +321,8 @@ class Chord:
|
|
|
323
321
|
...
|
|
324
322
|
def toCents(self) -> list[int]:
|
|
325
323
|
...
|
|
324
|
+
def toInversion(self, inversionNumber: int) -> None:
|
|
325
|
+
...
|
|
326
326
|
def transpose(self, semiTonesNumber: int) -> None:
|
|
327
327
|
...
|
|
328
328
|
def transposeStackOnly(self, semiTonesNumber: int) -> None:
|
|
@@ -941,7 +941,7 @@ class Note:
|
|
|
941
941
|
...
|
|
942
942
|
def getLongType(self) -> str:
|
|
943
943
|
...
|
|
944
|
-
def
|
|
944
|
+
def getMidiNumber(self) -> int:
|
|
945
945
|
...
|
|
946
946
|
@typing.overload
|
|
947
947
|
def getNumDots(self) -> int:
|
|
@@ -1253,8 +1253,6 @@ class Score:
|
|
|
1253
1253
|
...
|
|
1254
1254
|
def clear(self) -> None:
|
|
1255
1255
|
...
|
|
1256
|
-
def findAnyMelodyPatternDataFrame(self, patternNumNotes: int = 5, intervalSimilarityThreshold: float = 1.0, rhythmSimilarityThreshold: float = 1.0, intervalsSimilarityCallback: typing.Callable[[list[Note], list[Note]], list[float]] = None, rhythmSimilarityCallback: typing.Callable[[list[Note], list[Note]], list[float]] = None, totalIntervalSimilarityCallback: typing.Callable[[list[float]], float] = None, totalRhythmSimilarityCallback: typing.Callable[[list[float]], float] = None, totalSimilarityCallback: typing.Callable[[float, float], float] = None) -> typing.Any:
|
|
1257
|
-
...
|
|
1258
1256
|
@typing.overload
|
|
1259
1257
|
def findMelodyPatternDataFrame(self, melodyPattern: list[Note], totalIntervalsSimilarityThreshold: float = 0.5, totalRhythmSimilarityThreshold: float = 0.5, intervalsSimilarityCallback: typing.Callable[[list[Note], list[Note]], list[float]] = None, rhythmSimilarityCallback: typing.Callable[[list[Note], list[Note]], list[float]] = None, totalIntervalSimilarityCallback: typing.Callable[[list[float]], float] = None, totalRhythmSimilarityCallback: typing.Callable[[list[float]], float] = None, totalSimilarityCallback: typing.Callable[[float, float], float] = None) -> typing.Any:
|
|
1260
1258
|
...
|
|
@@ -1297,8 +1295,6 @@ class Score:
|
|
|
1297
1295
|
...
|
|
1298
1296
|
def info(self) -> None:
|
|
1299
1297
|
...
|
|
1300
|
-
def instrumentFragmentation(self, config: json = None) -> json:
|
|
1301
|
-
...
|
|
1302
1298
|
def isValid(self) -> bool:
|
|
1303
1299
|
...
|
|
1304
1300
|
def removeMeasure(self, measureStart: int, measureEnd: int) -> None:
|
|
@@ -1360,6 +1356,12 @@ class ScoreCollection:
|
|
|
1360
1356
|
...
|
|
1361
1357
|
def clear(self) -> None:
|
|
1362
1358
|
...
|
|
1359
|
+
@typing.overload
|
|
1360
|
+
def findMelodyPattern(self, melodyPattern: list[Note], totalIntervalsSimilarityThreshold: float = 0.5, totalRhythmSimilarityThreshold: float = 0.5, intervalsSimilarityCallback: typing.Callable[[list[Note], list[Note]], list[float]] = None, rhythmSimilarityCallback: typing.Callable[[list[Note], list[Note]], list[float]] = None, totalIntervalSimilarityCallback: typing.Callable[[list[float]], float] = None, totalRhythmSimilarityCallback: typing.Callable[[list[float]], float] = None, totalSimilarityCallback: typing.Callable[[float, float], float] = None) -> typing.Any:
|
|
1361
|
+
...
|
|
1362
|
+
@typing.overload
|
|
1363
|
+
def findMelodyPattern(self, melodyPatterns: list[list[Note]], totalIntervalsSimilarityThreshold: float = 0.5, totalRhythmSimilarityThreshold: float = 0.5, intervalsSimilarityCallback: typing.Callable[[list[Note], list[Note]], list[float]] = None, rhythmSimilarityCallback: typing.Callable[[list[Note], list[Note]], list[float]] = None, totalIntervalSimilarityCallback: typing.Callable[[list[float]], float] = None, totalRhythmSimilarityCallback: typing.Callable[[list[float]], float] = None, totalSimilarityCallback: typing.Callable[[float, float], float] = None) -> typing.Any:
|
|
1364
|
+
...
|
|
1363
1365
|
def getDirectoriesPaths(self) -> list[str]:
|
|
1364
1366
|
...
|
|
1365
1367
|
def getNumDirectories(self) -> int:
|
|
@@ -1400,4 +1402,4 @@ C: ClefSign # value = <ClefSign.C: 2>
|
|
|
1400
1402
|
F: ClefSign # value = <ClefSign.F: 1>
|
|
1401
1403
|
G: ClefSign # value = <ClefSign.G: 0>
|
|
1402
1404
|
P: ClefSign # value = <ClefSign.P: 3>
|
|
1403
|
-
__version__: str = '"1.
|
|
1405
|
+
__version__: str = '"1.8.1"'
|
|
Binary file
|
|
@@ -3,8 +3,8 @@ maialib/setup.py,sha256=SRFKCV1MVKftVrdnbrjQkL-ee4nR6pzlaURgwSJgqXU,2221
|
|
|
3
3
|
maialib/maiacore/__init__.py,sha256=0sK4fUTlwdUaieWSoGvL11TBkw6BebR2cd-MpYpJn1o,81
|
|
4
4
|
maialib/maiacore/__init__.pyi,sha256=68w5bv3qhq6lEK0JNHSWER9zuyQN8mxJV-y3JayNxNA,1472
|
|
5
5
|
maialib/maiacore/Release/__init__.pyi,sha256=ncPiCbsaSZXZUykVnOw-yqVPbE-I285Kj5moTnKTNCU,84
|
|
6
|
-
maialib/maiacore/Release/maiacore.pyi,sha256=
|
|
7
|
-
maialib/maiacore/Release/maiacore.pypy38-pp73-win_amd64.pyd,sha256=
|
|
6
|
+
maialib/maiacore/Release/maiacore.pyi,sha256=JI0XnWf2Ems8agM8zH35hZbx-czcL6LxS_Alrvz3VzE,49472
|
|
7
|
+
maialib/maiacore/Release/maiacore.pypy38-pp73-win_amd64.pyd,sha256=cVzWlR-tzUm-aXJhcv2hCYdRZKrIQsCbOUvZGmGvv-k,4486144
|
|
8
8
|
maialib/maiapy/__init__.py,sha256=Kd9D0GBofeJYa6ampk8C47otrr20uwoTYlJlPyMu6fU,80
|
|
9
9
|
maialib/maiapy/__init__.pyi,sha256=Kd9D0GBofeJYa6ampk8C47otrr20uwoTYlJlPyMu6fU,80
|
|
10
10
|
maialib/maiapy/other.py,sha256=Gcxbxp5zWsbYWi8Zd9ikBJPDOAVqm53tj5_KdzAURh4,4484
|
|
@@ -20,8 +20,8 @@ maialib/xml-scores-examples/Dvorak_Symphony_9_mov_4.mxl,sha256=s7FGUEmFmgcIdmkZ-
|
|
|
20
20
|
maialib/xml-scores-examples/Mahler_Symphony_8_Finale.mxl,sha256=F2-QBKNYjBv_sWT-z4LWi1rX84-P3msxtl-g6joA2FQ,229034
|
|
21
21
|
maialib/xml-scores-examples/Mozart_Requiem_Introitus.mxl,sha256=_wc4hMaPhtgocUoL94uVzfVN3TGb08z8Xa2BL4SHfgA,91112
|
|
22
22
|
maialib/xml-scores-examples/Strauss_Also_Sprach_Zarathustra.mxl,sha256=nOQra05RHHDe_dXFs5WBJG2l9R1KQk64urV7lWYC2vw,18863
|
|
23
|
-
maialib-1.
|
|
24
|
-
maialib-1.
|
|
25
|
-
maialib-1.
|
|
26
|
-
maialib-1.
|
|
27
|
-
maialib-1.
|
|
23
|
+
maialib-1.8.1.dist-info/LICENSE.txt,sha256=gcuuhKKc5-dwvyvHsXjlC9oM6N5gZ6umYbC8ewW1Yvg,35821
|
|
24
|
+
maialib-1.8.1.dist-info/METADATA,sha256=MD_6T8DOjots3BcqF5zQ4LKegBQcstfSYOY09o4D8Gw,7115
|
|
25
|
+
maialib-1.8.1.dist-info/WHEEL,sha256=aCppcPYVJzaY1J3cZ4xS5OVgvcUOltjpJSbIkIKus7Y,106
|
|
26
|
+
maialib-1.8.1.dist-info/top_level.txt,sha256=sZWQaa-Up2ba00WpAxBhOLKM6qQYTpUKJMXgSE0Nc48,17
|
|
27
|
+
maialib-1.8.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|