pyobjc-framework-PHASE 10.3.2__py3-none-any.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.
PHASE/__init__.py ADDED
@@ -0,0 +1,137 @@
1
+ """
2
+ Python mapping for the PHASE framework.
3
+
4
+ This module does not contain docstrings for the wrapped code, check Apple's
5
+ documentation for details on how to use these functions and classes.
6
+ """
7
+
8
+
9
+ def _setup():
10
+ import sys
11
+
12
+ import AVFoundation
13
+ import objc
14
+ from . import _metadata
15
+
16
+ dir_func, getattr_func = objc.createFrameworkDirAndGetattr(
17
+ name="PHASE",
18
+ frameworkIdentifier="com.apple.audio.PHASE",
19
+ frameworkPath=objc.pathForFramework(
20
+ "/System/Library/Frameworks/PHASE.framework"
21
+ ),
22
+ globals_dict=globals(),
23
+ inline_list=None,
24
+ parents=(AVFoundation,),
25
+ metadict=_metadata.__dict__,
26
+ )
27
+
28
+ globals()["__dir__"] = dir_func
29
+ globals()["__getattr__"] = getattr_func
30
+
31
+ for cls, sel in (
32
+ ("PHASESource", b"init"),
33
+ ("PHASESource", b"new"),
34
+ ("PHASEDistanceModelFadeOutParameters", b"init"),
35
+ ("PHASEDistanceModelFadeOutParameters", b"new"),
36
+ ("PHASEDistanceModelParameters", b"init"),
37
+ ("PHASEDistanceModelParameters", b"new"),
38
+ ("PHASEEnvelopeDistanceModelParameters", b"init"),
39
+ ("PHASEEnvelopeDistanceModelParameters", b"new"),
40
+ ("PHASEMetaParameterDefinition", b"init"),
41
+ ("PHASEMetaParameterDefinition", b"new"),
42
+ ("PHASENumberMetaParameterDefinition", b"init"),
43
+ ("PHASENumberMetaParameterDefinition", b"new"),
44
+ ("PHASEStringMetaParameterDefinition", b"init"),
45
+ ("PHASEStringMetaParameterDefinition", b"new"),
46
+ ("PHASEMappedMetaParameterDefinition", b"init"),
47
+ ("PHASEMappedMetaParameterDefinition", b"new"),
48
+ ("PHASEMappedMetaParameterDefinition", b"initWithValue:identifier:"),
49
+ ("PHASEMappedMetaParameterDefinition", b"initWithValue:"),
50
+ (
51
+ "PHASEMappedMetaParameterDefinition",
52
+ b"initWithValue:minimum:maximum:identifier:",
53
+ ),
54
+ ("PHASEMappedMetaParameterDefinition", b"initWithValue:minimum:maximum:"),
55
+ ("PHASEMappedMetaParameterDefinition", b"minimum"),
56
+ ("PHASEMappedMetaParameterDefinition", b"maximum"),
57
+ ("PHASEMetaParameter", b"init"),
58
+ ("PHASEMetaParameter", b"new"),
59
+ ("PHASENumberMetaParameter", b"init"),
60
+ ("PHASENumberMetaParameter", b"new"),
61
+ ("PHASEStringMetaParameter", b"init"),
62
+ ("PHASEStringMetaParameter", b"new"),
63
+ ("PHASEEnvelope", b"init"),
64
+ ("PHASEEnvelope", b"new"),
65
+ ("PHASEMedium", b"init"),
66
+ ("PHASEMedium", b"new"),
67
+ ("PHASEEngine", b"init"),
68
+ ("PHASEEngine", b"new"),
69
+ ("PHASEShapeElement", b"init"),
70
+ ("PHASEShapeElement", b"new"),
71
+ ("PHASEShape", b"init"),
72
+ ("PHASEShape", b"new"),
73
+ ("PHASEOccluder", b"init"),
74
+ ("PHASEOccluder", b"initWithEngine:"),
75
+ ("PHASEOccluder", b"new"),
76
+ ("PHASEGroupPresetSetting", b"init"),
77
+ ("PHASEGroupPresetSetting", b"new"),
78
+ ("PHASEGroupPreset", b"init"),
79
+ ("PHASEGroupPreset", b"new"),
80
+ ("PHASEMixerDefinition", b"init"),
81
+ ("PHASEMixerDefinition", b"new"),
82
+ ("PHASESpatialMixerDefinition", b"init"),
83
+ ("PHASESpatialMixerDefinition", b"new"),
84
+ ("PHASEAmbientMixerDefinition", b"init"),
85
+ ("PHASEAmbientMixerDefinition", b"new"),
86
+ ("PHASEChannelMixerDefinition", b"init"),
87
+ ("PHASEChannelMixerDefinition", b"new"),
88
+ ("PHASEMixer", b"init"),
89
+ ("PHASEMixer", b"new"),
90
+ ("PHASEMaterial", b"init"),
91
+ ("PHASEMaterial", b"new"),
92
+ ("PHASEDirectivityModelParameters", b"init"),
93
+ ("PHASEDirectivityModelParameters", b"new"),
94
+ ("PHASEGroup", b"init"),
95
+ ("PHASEGroup", b"new"),
96
+ ("PHASEListener", b"init"),
97
+ ("PHASEListener", b"new"),
98
+ ("PHASEDefinition", b"init"),
99
+ ("PHASEDefinition", b"new"),
100
+ ("PHASEDucker", b"init"),
101
+ ("PHASEDucker", b"new"),
102
+ ("PHASESpatialPipeline", b"init"),
103
+ ("PHASESpatialPipeline", b"new"),
104
+ ("PHASESoundEventNodeDefinition", b"init"),
105
+ ("PHASESoundEventNodeDefinition", b"new"),
106
+ ("PHASEGeneratorNodeDefinition", b"init"),
107
+ ("PHASEGeneratorNodeDefinition", b"new"),
108
+ ("PHASESamplerNodeDefinition", b"init"),
109
+ ("PHASESamplerNodeDefinition", b"new"),
110
+ ("PHASEBlendNodeDefinition", b"init"),
111
+ ("PHASEBlendNodeDefinition", b"new"),
112
+ ("PHASESwitchNodeDefinition", b"init"),
113
+ ("PHASESwitchNodeDefinition", b"new"),
114
+ ("PHASEPushStreamNodeDefinition", b"init"),
115
+ ("PHASEPushStreamNodeDefinition", b"new"),
116
+ ("PHASEPushStreamNode", b"init"),
117
+ ("PHASEPushStreamNode", b"new"),
118
+ ("PHASEObject", b"init"),
119
+ ("PHASEObject", b"new"),
120
+ ("PHASEAsset", b"init"),
121
+ ("PHASEAsset", b"new"),
122
+ ("PHASESoundAsset", b"init"),
123
+ ("PHASESoundAsset", b"new"),
124
+ ("PHASESoundEventNodeAsset", b"init"),
125
+ ("PHASESoundEventNodeAsset", b"new"),
126
+ ("PHASEGlobalMetaParameterAsset", b"init"),
127
+ ("PHASEGlobalMetaParameterAsset", b"new"),
128
+ ("PHASEAssetRegistry", b"init"),
129
+ ("PHASEAssetRegistry", b"new"),
130
+ ("PHASESoundEvent", b"init"),
131
+ ("PHASESoundEvent", b"new"),
132
+ ):
133
+ objc.registerUnavailableMethod(cls, sel)
134
+ del sys.modules["PHASE._metadata"]
135
+
136
+
137
+ globals().pop("_setup")()
PHASE/_metadata.py ADDED
@@ -0,0 +1,447 @@
1
+ # This file is generated by objective.metadata
2
+ #
3
+ # Last update: Sat May 18 09:33:48 2024
4
+ #
5
+ # flake8: noqa
6
+
7
+ import objc, sys
8
+ from typing import NewType
9
+
10
+ if sys.maxsize > 2**32:
11
+
12
+ def sel32or64(a, b):
13
+ return b
14
+
15
+ else:
16
+
17
+ def sel32or64(a, b):
18
+ return a
19
+
20
+
21
+ if objc.arch == "arm64":
22
+
23
+ def selAorI(a, b):
24
+ return a
25
+
26
+ else:
27
+
28
+ def selAorI(a, b):
29
+ return b
30
+
31
+
32
+ misc = {}
33
+ constants = """$PHASEAssetErrorDomain$PHASEErrorDomain$PHASESoundEventErrorDomain$PHASESpatialCategoryDirectPathTransmission$PHASESpatialCategoryEarlyReflections$PHASESpatialCategoryLateReverb$"""
34
+ enums = """$PHASEAssetErrorAlreadyExists@1346920804$PHASEAssetErrorBadParameters@1346920803$PHASEAssetErrorFailedToLoad@1346920801$PHASEAssetErrorGeneralError@1346920805$PHASEAssetErrorInvalidEngineInstance@1346920802$PHASEAssetErrorMemoryAllocation@1346920806$PHASEAssetTypeResident@0$PHASEAssetTypeStreamed@1$PHASECalibrationModeAbsoluteSpl@2$PHASECalibrationModeNone@0$PHASECalibrationModeRelativeSpl@1$PHASECullOptionDoNotCull@4$PHASECullOptionSleepWakeAtRandomOffset@2$PHASECullOptionSleepWakeAtRealtimeOffset@3$PHASECullOptionSleepWakeAtZero@1$PHASECullOptionTerminate@0$PHASECurveTypeCubed@1668432757$PHASECurveTypeHoldStartValue@1668434003$PHASECurveTypeInverseCubed@1668434243$PHASECurveTypeInverseSigmoid@1668434247$PHASECurveTypeInverseSine@1668434259$PHASECurveTypeInverseSquared@1668434257$PHASECurveTypeJumpToEndValue@1668434501$PHASECurveTypeLinear@1668435054$PHASECurveTypeSigmoid@1668436839$PHASECurveTypeSine@1668436846$PHASECurveTypeSquared@1668436849$PHASEErrorInitializeFailed@1346913633$PHASEErrorInvalidObject@1346913634$PHASEMaterialPresetBrick@1833071211$PHASEMaterialPresetCardboard@1833136740$PHASEMaterialPresetConcrete@1833132914$PHASEMaterialPresetDrywall@1833202295$PHASEMaterialPresetGlass@1833397363$PHASEMaterialPresetWood@1834448228$PHASEMediumPresetAir@1835286898$PHASENormalizationModeDynamic@1$PHASENormalizationModeNone@0$PHASEPlaybackModeLooping@1$PHASEPlaybackModeOneShot@0$PHASEPushStreamBufferDefault@1$PHASEPushStreamBufferInterrupts@4$PHASEPushStreamBufferInterruptsAtLoop@8$PHASEPushStreamBufferLoops@2$PHASEPushStreamCompletionDataRendered@0$PHASERenderingStatePaused@2$PHASERenderingStateStarted@1$PHASERenderingStateStopped@0$PHASEReverbPresetCathedral@1917023336$PHASEReverbPresetLargeChamber@1917600616$PHASEReverbPresetLargeHall@1917601841$PHASEReverbPresetLargeHall2@1917601842$PHASEReverbPresetLargeRoom@1917604401$PHASEReverbPresetLargeRoom2@1917604402$PHASEReverbPresetMediumChamber@1917666152$PHASEReverbPresetMediumHall@1917667377$PHASEReverbPresetMediumHall2@1917667378$PHASEReverbPresetMediumHall3@1917667379$PHASEReverbPresetMediumRoom@1917669997$PHASEReverbPresetNone@1917742958$PHASEReverbPresetSmallRoom@1918063213$PHASESoundEventErrorAPIMisuse@1346925668$PHASESoundEventErrorBadData@1346925666$PHASESoundEventErrorInvalidInstance@1346925667$PHASESoundEventErrorNotFound@1346925665$PHASESoundEventErrorOutOfMemory@1346925670$PHASESoundEventErrorSystemNotInitialized@1346925669$PHASESoundEventPrepareHandlerReasonFailure@0$PHASESoundEventPrepareHandlerReasonPrepared@1$PHASESoundEventPrepareHandlerReasonTerminated@2$PHASESoundEventPrepareStatePrepareInProgress@1$PHASESoundEventPrepareStatePrepareNotStarted@0$PHASESoundEventPrepareStatePrepared@2$PHASESoundEventSeekHandlerReasonFailure@0$PHASESoundEventSeekHandlerReasonFailureSeekAlreadyInProgress@1$PHASESoundEventSeekHandlerReasonSeekSuccessful@2$PHASESoundEventStartHandlerReasonFailure@0$PHASESoundEventStartHandlerReasonFinishedPlaying@1$PHASESoundEventStartHandlerReasonTerminated@2$PHASESpatialPipelineFlagDirectPathTransmission@1$PHASESpatialPipelineFlagEarlyReflections@2$PHASESpatialPipelineFlagLateReverb@4$PHASESpatializationModeAlwaysUseBinaural@1$PHASESpatializationModeAlwaysUseChannelBased@2$PHASESpatializationModeAutomatic@0$PHASEUpdateModeAutomatic@0$PHASEUpdateModeManual@1$"""
35
+ misc.update(
36
+ {
37
+ "PHASESpatialPipelineFlags": NewType("PHASESpatialPipelineFlags", int),
38
+ "PHASESoundEventPrepareState": NewType("PHASESoundEventPrepareState", int),
39
+ "PHASEPushStreamBufferOptions": NewType("PHASEPushStreamBufferOptions", int),
40
+ "PHASERenderingState": NewType("PHASERenderingState", int),
41
+ "PHASEAssetType": NewType("PHASEAssetType", int),
42
+ "PHASECullOption": NewType("PHASECullOption", int),
43
+ "PHASECalibrationMode": NewType("PHASECalibrationMode", int),
44
+ "PHASESoundEventStartHandlerReason": NewType(
45
+ "PHASESoundEventStartHandlerReason", int
46
+ ),
47
+ "PHASEMediumPreset": NewType("PHASEMediumPreset", int),
48
+ "PHASEUpdateMode": NewType("PHASEUpdateMode", int),
49
+ "PHASEPlaybackMode": NewType("PHASEPlaybackMode", int),
50
+ "PHASEAssetError": NewType("PHASEAssetError", int),
51
+ "PHASEMaterialPreset": NewType("PHASEMaterialPreset", int),
52
+ "PHASESoundEventPrepareHandlerReason": NewType(
53
+ "PHASESoundEventPrepareHandlerReason", int
54
+ ),
55
+ "PHASESoundEventSeekHandlerReason": NewType(
56
+ "PHASESoundEventSeekHandlerReason", int
57
+ ),
58
+ "PHASESpatializationMode": NewType("PHASESpatializationMode", int),
59
+ "PHASECurveType": NewType("PHASECurveType", int),
60
+ "PHASENormalizationMode": NewType("PHASENormalizationMode", int),
61
+ "PHASESoundEventError": NewType("PHASESoundEventError", int),
62
+ "PHASEError": NewType("PHASEError", int),
63
+ "PHASEReverbPreset": NewType("PHASEReverbPreset", int),
64
+ "PHASEPushStreamCompletionCallbackCondition": NewType(
65
+ "PHASEPushStreamCompletionCallbackCondition", int
66
+ ),
67
+ }
68
+ )
69
+ misc.update({"PHASESpatialCategory": NewType("PHASESpatialCategory", str)})
70
+ misc.update({})
71
+ r = objc.registerMetaDataForSelector
72
+ objc._updatingMetadata(True)
73
+ try:
74
+ r(
75
+ b"PHASEAmbientMixerDefinition",
76
+ b"initWithChannelLayout:orientation:",
77
+ {
78
+ "full_signature": b"@@:@{simd_quatf=<4f>}",
79
+ "arguments": {3: {"type": b"{simd_quatf=<4f>}"}},
80
+ },
81
+ )
82
+ r(
83
+ b"PHASEAmbientMixerDefinition",
84
+ b"initWithChannelLayout:orientation:identifier:",
85
+ {
86
+ "full_signature": b"@@:@{simd_quatf=<4f>}@",
87
+ "arguments": {3: {"type": b"{simd_quatf=<4f>}"}},
88
+ },
89
+ )
90
+ r(
91
+ b"PHASEAmbientMixerDefinition",
92
+ b"orientation",
93
+ {
94
+ "full_signature": b"{simd_quatf=<4f>}@:",
95
+ "retval": {"type": b"{simd_quatf=<4f>}"},
96
+ },
97
+ )
98
+ r(
99
+ b"PHASEAssetRegistry",
100
+ b"registerGlobalMetaParameter:error:",
101
+ {"arguments": {3: {"type_modifier": b"o"}}},
102
+ )
103
+ r(
104
+ b"PHASEAssetRegistry",
105
+ b"registerSoundAssetAtURL:identifier:assetType:channelLayout:normalizationMode:error:",
106
+ {"arguments": {7: {"type_modifier": b"o"}}},
107
+ )
108
+ r(
109
+ b"PHASEAssetRegistry",
110
+ b"registerSoundAssetWithData:identifier:format:normalizationMode:error:",
111
+ {"arguments": {6: {"type_modifier": b"o"}}},
112
+ )
113
+ r(
114
+ b"PHASEAssetRegistry",
115
+ b"registerSoundEventAssetWithRootNode:identifier:error:",
116
+ {"arguments": {4: {"type_modifier": b"o"}}},
117
+ )
118
+ r(
119
+ b"PHASEAssetRegistry",
120
+ b"unregisterAssetWithIdentifier:completion:",
121
+ {
122
+ "arguments": {
123
+ 3: {
124
+ "callable": {
125
+ "retval": {"type": b"v"},
126
+ "arguments": {0: {"type": b"^v"}, 1: {"type": b"B"}},
127
+ }
128
+ }
129
+ }
130
+ },
131
+ )
132
+ r(b"PHASEDucker", b"isActive", {"retval": {"type": b"Z"}})
133
+ r(
134
+ b"PHASEEngine",
135
+ b"startAndReturnError:",
136
+ {"retval": {"type": b"Z"}, "arguments": {2: {"type_modifier": b"o"}}},
137
+ )
138
+ r(
139
+ b"PHASEEnvelope",
140
+ b"initWithStartPoint:segments:",
141
+ {"full_signature": b"@@:<2d>@", "arguments": {2: {"type": b"<2d>"}}},
142
+ )
143
+ r(
144
+ b"PHASEEnvelope",
145
+ b"startPoint",
146
+ {"full_signature": b"<2d>@:", "retval": {"type": b"<2d>"}},
147
+ )
148
+ r(
149
+ b"PHASEEnvelopeSegment",
150
+ b"endPoint",
151
+ {"full_signature": b"<2d>@:", "retval": {"type": b"<2d>"}},
152
+ )
153
+ r(
154
+ b"PHASEEnvelopeSegment",
155
+ b"initWithEndPoint:curveType:",
156
+ {"full_signature": b"@@:<2d>q", "arguments": {2: {"type": b"<2d>"}}},
157
+ )
158
+ r(
159
+ b"PHASEEnvelopeSegment",
160
+ b"setEndPoint:",
161
+ {"full_signature": b"v@:<2d>", "arguments": {2: {"type": b"<2d>"}}},
162
+ )
163
+ r(b"PHASEGroup", b"isMuted", {"retval": {"type": b"Z"}})
164
+ r(b"PHASEGroup", b"isSoloed", {"retval": {"type": b"Z"}})
165
+ r(
166
+ b"PHASEObject",
167
+ b"addChild:error:",
168
+ {"retval": {"type": b"Z"}, "arguments": {3: {"type_modifier": b"o"}}},
169
+ )
170
+ r(
171
+ b"PHASEObject",
172
+ b"forward",
173
+ {"full_signature": b"<3f>@:", "retval": {"type": b"<3f>"}},
174
+ )
175
+ r(
176
+ b"PHASEObject",
177
+ b"right",
178
+ {"full_signature": b"<3f>@:", "retval": {"type": b"<3f>"}},
179
+ )
180
+ r(
181
+ b"PHASEObject",
182
+ b"setTransform:",
183
+ {
184
+ "full_signature": b"v@:{simd_float4x4=[4<4f>]}",
185
+ "arguments": {2: {"type": b"{simd_float4x4=[4<4f>]}"}},
186
+ },
187
+ )
188
+ r(
189
+ b"PHASEObject",
190
+ b"setWorldTransform:",
191
+ {
192
+ "full_signature": b"v@:{simd_float4x4=[4<4f>]}",
193
+ "arguments": {2: {"type": b"{simd_float4x4=[4<4f>]}"}},
194
+ },
195
+ )
196
+ r(
197
+ b"PHASEObject",
198
+ b"transform",
199
+ {
200
+ "full_signature": b"{simd_float4x4=[4<4f>]}@:",
201
+ "retval": {"type": b"{simd_float4x4=[4<4f>]}"},
202
+ },
203
+ )
204
+ r(b"PHASEObject", b"up", {"full_signature": b"<3f>@:", "retval": {"type": b"<3f>"}})
205
+ r(
206
+ b"PHASEObject",
207
+ b"worldTransform",
208
+ {
209
+ "full_signature": b"{simd_float4x4=[4<4f>]}@:",
210
+ "retval": {"type": b"{simd_float4x4=[4<4f>]}"},
211
+ },
212
+ )
213
+ r(
214
+ b"PHASEPushStreamNode",
215
+ b"scheduleBuffer:atTime:options:completionCallbackType:completionHandler:",
216
+ {
217
+ "arguments": {
218
+ 6: {
219
+ "callable": {
220
+ "retval": {"type": b"v"},
221
+ "arguments": {0: {"type": b"^v"}, 1: {"type": b"q"}},
222
+ }
223
+ }
224
+ }
225
+ },
226
+ )
227
+ r(
228
+ b"PHASEPushStreamNode",
229
+ b"scheduleBuffer:completionCallbackType:completionHandler:",
230
+ {
231
+ "arguments": {
232
+ 4: {
233
+ "callable": {
234
+ "retval": {"type": b"v"},
235
+ "arguments": {0: {"type": b"^v"}, 1: {"type": b"q"}},
236
+ }
237
+ }
238
+ }
239
+ },
240
+ )
241
+ r(b"PHASEPushStreamNodeDefinition", b"normalize", {"retval": {"type": b"Z"}})
242
+ r(
243
+ b"PHASEPushStreamNodeDefinition",
244
+ b"setNormalize:",
245
+ {"arguments": {2: {"type": b"Z"}}},
246
+ )
247
+ r(
248
+ b"PHASESoundEvent",
249
+ b"initWithEngine:assetIdentifier:error:",
250
+ {"arguments": {4: {"type_modifier": b"o"}}},
251
+ )
252
+ r(
253
+ b"PHASESoundEvent",
254
+ b"initWithEngine:assetIdentifier:mixerParameters:error:",
255
+ {"arguments": {5: {"type_modifier": b"o"}}},
256
+ )
257
+ r(b"PHASESoundEvent", b"isIndefinite", {"retval": {"type": b"Z"}})
258
+ r(
259
+ b"PHASESoundEvent",
260
+ b"prepareWithCompletion:",
261
+ {
262
+ "arguments": {
263
+ 2: {
264
+ "callable": {
265
+ "retval": {"type": b"v"},
266
+ "arguments": {0: {"type": b"^v"}, 1: {"type": b"q"}},
267
+ }
268
+ }
269
+ }
270
+ },
271
+ )
272
+ r(
273
+ b"PHASESoundEvent",
274
+ b"seekToTime:completion:",
275
+ {
276
+ "arguments": {
277
+ 3: {
278
+ "callable": {
279
+ "retval": {"type": b"v"},
280
+ "arguments": {0: {"type": b"^v"}, 1: {"type": b"q"}},
281
+ }
282
+ }
283
+ }
284
+ },
285
+ )
286
+ r(
287
+ b"PHASESoundEvent",
288
+ b"startWithCompletion:",
289
+ {
290
+ "arguments": {
291
+ 2: {
292
+ "callable": {
293
+ "retval": {"type": b"v"},
294
+ "arguments": {0: {"type": b"^v"}, 1: {"type": b"q"}},
295
+ }
296
+ }
297
+ }
298
+ },
299
+ )
300
+ finally:
301
+ objc._updatingMetadata(False)
302
+
303
+ objc.registerNewKeywordsFromSelector(
304
+ "PHASEAmbientMixerDefinition", b"initWithChannelLayout:orientation:"
305
+ )
306
+ objc.registerNewKeywordsFromSelector(
307
+ "PHASEAmbientMixerDefinition", b"initWithChannelLayout:orientation:identifier:"
308
+ )
309
+ objc.registerNewKeywordsFromSelector(
310
+ "PHASEBlendNodeDefinition", b"initDistanceBlendWithSpatialMixerDefinition:"
311
+ )
312
+ objc.registerNewKeywordsFromSelector(
313
+ "PHASEBlendNodeDefinition",
314
+ b"initDistanceBlendWithSpatialMixerDefinition:identifier:",
315
+ )
316
+ objc.registerNewKeywordsFromSelector(
317
+ "PHASEBlendNodeDefinition", b"initWithBlendMetaParameterDefinition:"
318
+ )
319
+ objc.registerNewKeywordsFromSelector(
320
+ "PHASEBlendNodeDefinition", b"initWithBlendMetaParameterDefinition:identifier:"
321
+ )
322
+ objc.registerNewKeywordsFromSelector(
323
+ "PHASECardioidDirectivityModelParameters", b"initWithSubbandParameters:"
324
+ )
325
+ objc.registerNewKeywordsFromSelector(
326
+ "PHASEChannelMixerDefinition", b"initWithChannelLayout:"
327
+ )
328
+ objc.registerNewKeywordsFromSelector(
329
+ "PHASEChannelMixerDefinition", b"initWithChannelLayout:identifier:"
330
+ )
331
+ objc.registerNewKeywordsFromSelector(
332
+ "PHASEConeDirectivityModelParameters", b"initWithSubbandParameters:"
333
+ )
334
+ objc.registerNewKeywordsFromSelector(
335
+ "PHASEContainerNodeDefinition", b"initWithIdentifier:"
336
+ )
337
+ objc.registerNewKeywordsFromSelector(
338
+ "PHASEDistanceModelFadeOutParameters", b"initWithCullDistance:"
339
+ )
340
+ objc.registerNewKeywordsFromSelector(
341
+ "PHASEDucker",
342
+ b"initWithEngine:sourceGroups:targetGroups:gain:attackTime:releaseTime:attackCurve:releaseCurve:",
343
+ )
344
+ objc.registerNewKeywordsFromSelector("PHASEEngine", b"initWithUpdateMode:")
345
+ objc.registerNewKeywordsFromSelector("PHASEEnvelope", b"initWithStartPoint:segments:")
346
+ objc.registerNewKeywordsFromSelector(
347
+ "PHASEEnvelopeDistanceModelParameters", b"initWithEnvelope:"
348
+ )
349
+ objc.registerNewKeywordsFromSelector(
350
+ "PHASEEnvelopeSegment", b"initWithEndPoint:curveType:"
351
+ )
352
+ objc.registerNewKeywordsFromSelector("PHASEGroup", b"initWithIdentifier:")
353
+ objc.registerNewKeywordsFromSelector(
354
+ "PHASEGroupPreset", b"initWithEngine:settings:timeToTarget:timeToReset:"
355
+ )
356
+ objc.registerNewKeywordsFromSelector(
357
+ "PHASEGroupPresetSetting", b"initWithGain:rate:gainCurveType:rateCurveType:"
358
+ )
359
+ objc.registerNewKeywordsFromSelector("PHASEListener", b"initWithEngine:")
360
+ objc.registerNewKeywordsFromSelector(
361
+ "PHASEMappedMetaParameterDefinition",
362
+ b"initWithInputMetaParameterDefinition:envelope:",
363
+ )
364
+ objc.registerNewKeywordsFromSelector(
365
+ "PHASEMappedMetaParameterDefinition",
366
+ b"initWithInputMetaParameterDefinition:envelope:identifier:",
367
+ )
368
+ objc.registerNewKeywordsFromSelector(
369
+ "PHASEMappedMetaParameterDefinition", b"initWithValue:"
370
+ )
371
+ objc.registerNewKeywordsFromSelector(
372
+ "PHASEMappedMetaParameterDefinition", b"initWithValue:identifier:"
373
+ )
374
+ objc.registerNewKeywordsFromSelector(
375
+ "PHASEMappedMetaParameterDefinition", b"initWithValue:minimum:maximum:"
376
+ )
377
+ objc.registerNewKeywordsFromSelector(
378
+ "PHASEMappedMetaParameterDefinition", b"initWithValue:minimum:maximum:identifier:"
379
+ )
380
+ objc.registerNewKeywordsFromSelector("PHASEMaterial", b"initWithEngine:preset:")
381
+ objc.registerNewKeywordsFromSelector("PHASEMedium", b"initWithEngine:preset:")
382
+ objc.registerNewKeywordsFromSelector(
383
+ "PHASENumberMetaParameterDefinition", b"initWithValue:"
384
+ )
385
+ objc.registerNewKeywordsFromSelector(
386
+ "PHASENumberMetaParameterDefinition", b"initWithValue:identifier:"
387
+ )
388
+ objc.registerNewKeywordsFromSelector(
389
+ "PHASENumberMetaParameterDefinition", b"initWithValue:minimum:maximum:"
390
+ )
391
+ objc.registerNewKeywordsFromSelector(
392
+ "PHASENumberMetaParameterDefinition", b"initWithValue:minimum:maximum:identifier:"
393
+ )
394
+ objc.registerNewKeywordsFromSelector(
395
+ "PHASENumericPair", b"initWithFirstValue:secondValue:"
396
+ )
397
+ objc.registerNewKeywordsFromSelector("PHASEObject", b"initWithEngine:")
398
+ objc.registerNewKeywordsFromSelector("PHASEOccluder", b"initWithEngine:")
399
+ objc.registerNewKeywordsFromSelector("PHASEOccluder", b"initWithEngine:shapes:")
400
+ objc.registerNewKeywordsFromSelector(
401
+ "PHASEPushStreamNodeDefinition", b"initWithMixerDefinition:format:"
402
+ )
403
+ objc.registerNewKeywordsFromSelector(
404
+ "PHASEPushStreamNodeDefinition", b"initWithMixerDefinition:format:identifier:"
405
+ )
406
+ objc.registerNewKeywordsFromSelector(
407
+ "PHASERandomNodeDefinition", b"initWithIdentifier:"
408
+ )
409
+ objc.registerNewKeywordsFromSelector(
410
+ "PHASESamplerNodeDefinition", b"initWithSoundAssetIdentifier:mixerDefinition:"
411
+ )
412
+ objc.registerNewKeywordsFromSelector(
413
+ "PHASESamplerNodeDefinition",
414
+ b"initWithSoundAssetIdentifier:mixerDefinition:identifier:",
415
+ )
416
+ objc.registerNewKeywordsFromSelector("PHASEShape", b"initWithEngine:mesh:")
417
+ objc.registerNewKeywordsFromSelector("PHASEShape", b"initWithEngine:mesh:materials:")
418
+ objc.registerNewKeywordsFromSelector(
419
+ "PHASESoundEvent", b"initWithEngine:assetIdentifier:error:"
420
+ )
421
+ objc.registerNewKeywordsFromSelector(
422
+ "PHASESoundEvent", b"initWithEngine:assetIdentifier:mixerParameters:error:"
423
+ )
424
+ objc.registerNewKeywordsFromSelector("PHASESource", b"initWithEngine:")
425
+ objc.registerNewKeywordsFromSelector("PHASESource", b"initWithEngine:shapes:")
426
+ objc.registerNewKeywordsFromSelector(
427
+ "PHASESpatialMixerDefinition", b"initWithSpatialPipeline:"
428
+ )
429
+ objc.registerNewKeywordsFromSelector(
430
+ "PHASESpatialMixerDefinition", b"initWithSpatialPipeline:identifier:"
431
+ )
432
+ objc.registerNewKeywordsFromSelector("PHASESpatialPipeline", b"initWithFlags:")
433
+ objc.registerNewKeywordsFromSelector(
434
+ "PHASEStringMetaParameterDefinition", b"initWithValue:"
435
+ )
436
+ objc.registerNewKeywordsFromSelector(
437
+ "PHASEStringMetaParameterDefinition", b"initWithValue:identifier:"
438
+ )
439
+ objc.registerNewKeywordsFromSelector(
440
+ "PHASESwitchNodeDefinition", b"initWithSwitchMetaParameterDefinition:"
441
+ )
442
+ objc.registerNewKeywordsFromSelector(
443
+ "PHASESwitchNodeDefinition", b"initWithSwitchMetaParameterDefinition:identifier:"
444
+ )
445
+ expressions = {}
446
+
447
+ # END OF FILE
@@ -0,0 +1,56 @@
1
+ Metadata-Version: 2.1
2
+ Name: pyobjc-framework-PHASE
3
+ Version: 10.3.2
4
+ Summary: Wrappers for the framework PHASE on macOS
5
+ Home-page: https://github.com/ronaldoussoren/pyobjc
6
+ Author: Ronald Oussoren
7
+ Author-email: pyobjc-dev@lists.sourceforge.net
8
+ License: MIT License
9
+ Keywords: PyObjC,PHASE
10
+ Platform: MacOS X (>=12.0)
11
+ Classifier: Development Status :: 5 - Production/Stable
12
+ Classifier: Environment :: Console
13
+ Classifier: Environment :: MacOS X :: Cocoa
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: License :: OSI Approved :: MIT License
16
+ Classifier: Natural Language :: English
17
+ Classifier: Operating System :: MacOS :: MacOS X
18
+ Classifier: Programming Language :: Python
19
+ Classifier: Programming Language :: Python :: 3
20
+ Classifier: Programming Language :: Python :: 3 :: Only
21
+ Classifier: Programming Language :: Python :: 3.8
22
+ Classifier: Programming Language :: Python :: 3.9
23
+ Classifier: Programming Language :: Python :: 3.10
24
+ Classifier: Programming Language :: Python :: 3.11
25
+ Classifier: Programming Language :: Python :: 3.12
26
+ Classifier: Programming Language :: Python :: 3.13
27
+ Classifier: Programming Language :: Python :: Implementation :: CPython
28
+ Classifier: Programming Language :: Objective C
29
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
30
+ Classifier: Topic :: Software Development :: User Interfaces
31
+ Requires-Python: >=3.8
32
+ Description-Content-Type: text/x-rst; charset=UTF-8
33
+ Requires-Dist: pyobjc-core>=10.3.2
34
+ Requires-Dist: pyobjc-framework-AVFoundation>=10.3.2
35
+ Project-URL: Documentation, https://pyobjc.readthedocs.io/en/latest/
36
+ Project-URL: Issue tracker, https://github.com/ronaldoussoren/pyobjc/issues
37
+ Project-URL: Repository, https://github.com/ronaldoussoren/pyobjc
38
+
39
+
40
+ Wrappers for the "PHASE" framework on macOS.
41
+
42
+ These wrappers don't include documentation, please check Apple's documentation
43
+ for information on how to use this framework and PyObjC's documentation
44
+ for general tips and tricks regarding the translation between Python
45
+ and (Objective-)C frameworks
46
+
47
+
48
+ Project links
49
+ -------------
50
+
51
+ * `Documentation <https://pyobjc.readthedocs.io/en/latest/>`_
52
+
53
+ * `Issue Tracker <https://github.com/ronaldoussoren/pyobjc/issues>`_
54
+
55
+ * `Repository <https://github.com/ronaldoussoren/pyobjc/>`_
56
+
@@ -0,0 +1,6 @@
1
+ PHASE/__init__.py,sha256=txXro2QZLuFvJbPNYi5gbPjlx_IAxYxCdokBsG46_0o,5349
2
+ PHASE/_metadata.py,sha256=bgpT2eJsb93b8leUAPwsOM59KxTtoKrzYu2XdQWzSIg,18356
3
+ pyobjc_framework_PHASE-10.3.2.dist-info/METADATA,sha256=QPCEecF1X2fPNd8HeuDVZVbFIPbauyOThpHtWLTp9SM,2232
4
+ pyobjc_framework_PHASE-10.3.2.dist-info/WHEEL,sha256=pxeNX5JdtCe58PUSYP9upmc7jdRPgvT0Gm9kb1SHlVw,109
5
+ pyobjc_framework_PHASE-10.3.2.dist-info/top_level.txt,sha256=qEtTyMtU1BJvQaRKWSWP5lIybGQEuj2N0UoPSwZWchk,6
6
+ pyobjc_framework_PHASE-10.3.2.dist-info/RECORD,,
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (75.6.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py2-none-any
5
+ Tag: py3-none-any
6
+