/usr/share/pyshared/pyolib/generators.py is in python-pyo 0.6.8-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 | """
Synthesis generators.
Set of synthesis generators that can be used as sources of a signal
processing chain or as parameter's modifiers.
"""
"""
Copyright 2010 Olivier Belanger
This file is part of pyo, a python module to help digital signal
processing script creation.
pyo is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
pyo is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with pyo. If not, see <http://www.gnu.org/licenses/>.
"""
from _core import *
from _maps import *
######################################################################
### Sources
######################################################################
class Sine(PyoObject):
"""
A simple sine wave oscillator.
:Parent: :py:class:`PyoObject`
:Args:
freq : float or PyoObject, optional
Frequency in cycles per second. Defaults to 1000.
phase : float or PyoObject, optional
Phase of sampling, expressed as a fraction of a cycle (0 to 1).
Defaults to 0.
.. seealso::
:py:class:`Osc`, :py:class:`Phasor`
>>> s = Server().boot()
>>> s.start()
>>> sine = Sine(freq=[400,500], mul=.2).out()
"""
def __init__(self, freq=1000, phase=0, mul=1, add=0):
PyoObject.__init__(self, mul, add)
self._freq = freq
self._phase = phase
freq, phase, mul, add, lmax = convertArgsToLists(freq, phase, mul, add)
self._base_objs = [Sine_base(wrap(freq,i), wrap(phase,i), wrap(mul,i), wrap(add,i)) for i in range(lmax)]
def setFreq(self, x):
"""
Replace the `freq` attribute.
:Args:
x : float or PyoObject
new `freq` attribute.
"""
self._freq = x
x, lmax = convertArgsToLists(x)
[obj.setFreq(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def setPhase(self, x):
"""
Replace the `phase` attribute.
:Args:
x : float or PyoObject
new `phase` attribute.
"""
self._phase = x
x, lmax = convertArgsToLists(x)
[obj.setPhase(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def reset(self):
"""
Resets current phase to 0.
"""
[obj.reset() for i, obj in enumerate(self._base_objs)]
def ctrl(self, map_list=None, title=None, wxnoserver=False):
self._map_list = [SLMapFreq(self._freq), SLMapPhase(self._phase), SLMapMul(self._mul)]
PyoObject.ctrl(self, map_list, title, wxnoserver)
@property
def freq(self):
"""float or PyoObject. Frequency in cycles per second."""
return self._freq
@freq.setter
def freq(self, x): self.setFreq(x)
@property
def phase(self):
"""float or PyoObject. Phase of sampling."""
return self._phase
@phase.setter
def phase(self, x): self.setPhase(x)
class SineLoop(PyoObject):
"""
A simple sine wave oscillator with feedback.
The oscillator output, multiplied by `feedback`, is added to the position
increment and can be used to control the brightness of the oscillator.
:Parent: :py:class:`PyoObject`
:Args:
freq : float or PyoObject, optional
Frequency in cycles per second. Defaults to 1000.
feedback : float or PyoObject, optional
Amount of the output signal added to position increment, between 0 and 1.
Controls the brightness. Defaults to 0.
.. seealso::
:py:class:`Sine`, :py:class:`OscLoop`
>>> s = Server().boot()
>>> s.start()
>>> lfo = Sine(.25, 0, .1, .1)
>>> a = SineLoop(freq=[400,500], feedback=lfo, mul=.2).out()
"""
def __init__(self, freq=1000, feedback=0, mul=1, add=0):
PyoObject.__init__(self, mul, add)
self._freq = freq
self._feedback = feedback
freq, feedback, mul, add, lmax = convertArgsToLists(freq, feedback, mul, add)
self._base_objs = [SineLoop_base(wrap(freq,i), wrap(feedback,i), wrap(mul,i), wrap(add,i)) for i in range(lmax)]
def setFreq(self, x):
"""
Replace the `freq` attribute.
:Args:
x : float or PyoObject
new `freq` attribute.
"""
self._freq = x
x, lmax = convertArgsToLists(x)
[obj.setFreq(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def setFeedback(self, x):
"""
Replace the `feedback` attribute.
:Args:
x : float or PyoObject
new `feedback` attribute.
"""
self._feedback = x
x, lmax = convertArgsToLists(x)
[obj.setFeedback(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def ctrl(self, map_list=None, title=None, wxnoserver=False):
self._map_list = [SLMapFreq(self._freq), SLMap(0, 1, "lin", "feedback", self._feedback), SLMapMul(self._mul)]
PyoObject.ctrl(self, map_list, title, wxnoserver)
@property
def freq(self):
"""float or PyoObject. Frequency in cycles per second."""
return self._freq
@freq.setter
def freq(self, x): self.setFreq(x)
@property
def feedback(self):
"""float or PyoObject. Brightness control."""
return self._feedback
@feedback.setter
def feedback(self, x): self.setFeedback(x)
class Phasor(PyoObject):
"""
A simple phase incrementor.
Output is a periodic ramp from 0 to 1.
:Parent: :py:class:`PyoObject`
:Args:
freq : float or PyoObject, optional
Frequency in cycles per second. Defaults to 100.
phase : float or PyoObject, optional
Phase of sampling, expressed as a fraction of a cycle (0 to 1).
Defaults to 0.
.. seealso::
:py:class:`Osc`, :py:class:`Sine`
>>> s = Server().boot()
>>> s.start()
>>> f = Phasor(freq=[1, 1.5], mul=1000, add=500)
>>> sine = Sine(freq=f, mul=.2).out()
"""
def __init__(self, freq=100, phase=0, mul=1, add=0):
PyoObject.__init__(self, mul, add)
self._freq = freq
self._phase = phase
freq, phase, mul, add, lmax = convertArgsToLists(freq, phase, mul, add)
self._base_objs = [Phasor_base(wrap(freq,i), wrap(phase,i), wrap(mul,i), wrap(add,i)) for i in range(lmax)]
def setFreq(self, x):
"""
Replace the `freq` attribute.
:Args:
x : float or PyoObject
new `freq` attribute.
"""
self._freq = x
x, lmax = convertArgsToLists(x)
[obj.setFreq(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def setPhase(self, x):
"""
Replace the `phase` attribute.
:Args:
x : float or PyoObject
new `phase` attribute.
"""
self._phase = x
x, lmax = convertArgsToLists(x)
[obj.setPhase(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def reset(self):
"""
Resets current phase to 0.
"""
[obj.reset() for i, obj in enumerate(self._base_objs)]
def ctrl(self, map_list=None, title=None, wxnoserver=False):
self._map_list = [SLMapFreq(self._freq), SLMapPhase(self._phase), SLMapMul(self._mul)]
PyoObject.ctrl(self, map_list, title, wxnoserver)
@property
def freq(self):
"""float or PyoObject. Frequency in cycles per second."""
return self._freq
@freq.setter
def freq(self, x): self.setFreq(x)
@property
def phase(self):
"""float or PyoObject. Phase of sampling."""
return self._phase
@phase.setter
def phase(self, x): self.setPhase(x)
class Input(PyoObject):
"""
Read from a numbered channel in an external audio signal.
:Parent: :py:class:`PyoObject`
:Args:
chnl : int, optional
Input channel to read from. Defaults to 0.
.. note::
Requires that the Server's duplex mode is set to 1.
>>> s = Server(duplex=1).boot()
>>> s.start()
>>> a = Input(chnl=0, mul=.7)
>>> b = Delay(a, delay=.25, feedback=.5, mul=.5).out()
"""
def __init__(self, chnl=0, mul=1, add=0):
PyoObject.__init__(self, mul, add)
self._chnl = chnl
chnl, mul, add, lmax = convertArgsToLists(chnl, mul, add)
self._base_objs = [Input_base(wrap(chnl,i), wrap(mul,i), wrap(add,i)) for i in range(lmax)]
def ctrl(self, map_list=None, title=None, wxnoserver=False):
self._map_list = [SLMapMul(self._mul)]
PyoObject.ctrl(self, map_list, title, wxnoserver)
class Noise(PyoObject):
"""
A white noise generator.
:Parent: :py:class:`PyoObject`
>>> s = Server().boot()
>>> s.start()
>>> a = Noise(.1).mix(2).out()
"""
def __init__(self, mul=1, add=0):
PyoObject.__init__(self, mul, add)
self._type = 0
mul, add, lmax = convertArgsToLists(mul, add)
self._base_objs = [Noise_base(wrap(mul,i), wrap(add,i)) for i in range(lmax)]
def setType(self, x):
"""
Sets the generation algorithm.
:Args:
x : int, {0, 1}
0 uses the system rand() method to generate number. Used as default.
1 uses a simple linear congruential generator, cheaper than rand().
"""
self._type = x
x, lmax = convertArgsToLists(x)
[obj.setType(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def ctrl(self, map_list=None, title=None, wxnoserver=False):
self._map_list = [SLMapMul(self._mul)]
PyoObject.ctrl(self, map_list, title, wxnoserver)
@property
def type(self):
"""int {0, 1}. Sets the generation algorithm."""
return self._type
@type.setter
def type(self, x): self.setType(x)
class PinkNoise(PyoObject):
"""
A pink noise generator.
Paul Kellet's implementation of pink noise generator.
This is an approximation to a -10dB/decade filter using a weighted sum
of first order filters. It is accurate to within +/-0.05dB above 9.2Hz
(44100Hz sampling rate).
:Parent: :py:class:`PyoObject`
>>> s = Server().boot()
>>> s.start()
>>> a = PinkNoise(.1).mix(2).out()
"""
def __init__(self, mul=1, add=0):
PyoObject.__init__(self, mul, add)
mul, add, lmax = convertArgsToLists(mul, add)
self._base_objs = [PinkNoise_base(wrap(mul,i), wrap(add,i)) for i in range(lmax)]
def ctrl(self, map_list=None, title=None, wxnoserver=False):
self._map_list = [SLMapMul(self._mul)]
PyoObject.ctrl(self, map_list, title, wxnoserver)
class BrownNoise(PyoObject):
"""
A brown noise generator.
The spectrum of a brown noise has a power density which decreases 6 dB
per octave with increasing frequency (density proportional to 1/f^2).
:Parent: :py:class:`PyoObject`
>>> s = Server().boot()
>>> s.start()
>>> a = BrownNoise(.1).mix(2).out()
"""
def __init__(self, mul=1, add=0):
PyoObject.__init__(self, mul, add)
mul, add, lmax = convertArgsToLists(mul, add)
self._base_objs = [BrownNoise_base(wrap(mul,i), wrap(add,i)) for i in range(lmax)]
def ctrl(self, map_list=None, title=None, wxnoserver=False):
self._map_list = [SLMapMul(self._mul)]
PyoObject.ctrl(self, map_list, title, wxnoserver)
class FM(PyoObject):
"""
A simple frequency modulation generator.
Implements frequency modulation synthesis based on Chowning's algorithm.
:Parent: :py:class:`PyoObject`
:Args:
carrier : float or PyoObject, optional
Carrier frequency in cycles per second. Defaults to 100.
ratio : float or PyoObject, optional
A factor that, when multiplied by the `carrier` parameter,
gives the modulator frequency. Defaults to 0.5.
index : float or PyoObject, optional
The modulation index. This value multiplied by the modulator
frequency gives the modulator amplitude. Defaults to 5.
>>> s = Server().boot()
>>> s.start()
>>> ind = LinTable([(0,3), (20,40), (300,10), (1000,5), (8191,3)])
>>> m = Metro(4).play()
>>> tr = TrigEnv(m, table=ind, dur=4)
>>> f = FM(carrier=[251,250], ratio=[.2498,.2503], index=tr, mul=.2).out()
"""
def __init__(self, carrier=100, ratio=0.5, index=5, mul=1, add=0):
PyoObject.__init__(self, mul, add)
self._carrier = carrier
self._ratio = ratio
self._index = index
carrier, ratio, index, mul, add, lmax = convertArgsToLists(carrier, ratio, index, mul, add)
self._base_objs = [Fm_base(wrap(carrier,i), wrap(ratio,i), wrap(index,i), wrap(mul,i), wrap(add,i)) for i in range(lmax)]
def setCarrier(self, x):
"""
Replace the `carrier` attribute.
:Args:
x : float or PyoObject
new `carrier` attribute.
"""
self._carrier = x
x, lmax = convertArgsToLists(x)
[obj.setCarrier(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def setRatio(self, x):
"""
Replace the `ratio` attribute.
:Args:
x : float or PyoObject
new `ratio` attribute.
"""
self._ratio = x
x, lmax = convertArgsToLists(x)
[obj.setRatio(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def setIndex(self, x):
"""
Replace the `index` attribute.
:Args:
x : float or PyoObject
new `index` attribute.
"""
self._index = x
x, lmax = convertArgsToLists(x)
[obj.setIndex(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def ctrl(self, map_list=None, title=None, wxnoserver=False):
self._map_list = [SLMap(10, 500, "lin", "carrier", self._carrier),
SLMap(.01, 10, "lin", "ratio", self._ratio),
SLMap(0, 20, "lin", "index", self._index),
SLMapMul(self._mul)]
PyoObject.ctrl(self, map_list, title, wxnoserver)
@property
def carrier(self):
"""float or PyoObject. Carrier frequency in cycles per second."""
return self._carrier
@carrier.setter
def carrier(self, x): self.setCarrier(x)
@property
def ratio(self):
"""float or PyoObject. Modulator/Carrier ratio."""
return self._ratio
@ratio.setter
def ratio(self, x): self.setRatio(x)
@property
def index(self):
"""float or PyoObject. Modulation index."""
return self._index
@index.setter
def index(self, x): self.setIndex(x)
class CrossFM(PyoObject):
"""
Cross frequency modulation generator.
Frequency modulation synthesis where the output of both oscillators
modulates the frequency of the other one.
:Parent: :py:class:`PyoObject`
:Args:
carrier : float or PyoObject, optional
Carrier frequency in cycles per second. Defaults to 100.
ratio : float or PyoObject, optional
A factor that, when multiplied by the `carrier` parameter,
gives the modulator frequency. Defaults to 0.5.
ind1 : float or PyoObject, optional
The carrier index. This value multiplied by the carrier
frequency gives the carrier amplitude for modulating the
modulation oscillator frequency.
Defaults to 2.
ind1 : float or PyoObject, optional
The modulation index. This value multiplied by the modulation
frequency gives the modulation amplitude for modulating the
carrier oscillator frequency.
Defaults to 2.
>>> s = Server().boot()
>>> s.start()
>>> ind = LinTable([(0,20), (200,5), (1000,2), (8191,1)])
>>> m = Metro(4).play()
>>> tr = TrigEnv(m, table=ind, dur=4)
>>> f = CrossFM(carrier=[250.5,250], ratio=[.2499,.2502], ind1=tr, ind2=tr, mul=.2).out()
"""
def __init__(self, carrier=100, ratio=0.5, ind1=2, ind2=2, mul=1, add=0):
PyoObject.__init__(self, mul, add)
self._carrier = carrier
self._ratio = ratio
self._ind1 = ind1
self._ind2 = ind2
carrier, ratio, ind1, ind2, mul, add, lmax = convertArgsToLists(carrier, ratio, ind1, ind2, mul, add)
self._base_objs = [CrossFm_base(wrap(carrier,i), wrap(ratio,i), wrap(ind1,i), wrap(ind2,i), wrap(mul,i), wrap(add,i)) for i in range(lmax)]
def setCarrier(self, x):
"""
Replace the `carrier` attribute.
:Args:
x : float or PyoObject
new `carrier` attribute.
"""
self._carrier = x
x, lmax = convertArgsToLists(x)
[obj.setCarrier(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def setRatio(self, x):
"""
Replace the `ratio` attribute.
:Args:
x : float or PyoObject
new `ratio` attribute.
"""
self._ratio = x
x, lmax = convertArgsToLists(x)
[obj.setRatio(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def setInd1(self, x):
"""
Replace the `ind1` attribute.
:Args:
x : float or PyoObject
new `ind1` attribute.
"""
self._ind1 = x
x, lmax = convertArgsToLists(x)
[obj.setInd1(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def setInd2(self, x):
"""
Replace the `ind2` attribute.
:Args:
x : float or PyoObject
new `ind2` attribute.
"""
self._ind2 = x
x, lmax = convertArgsToLists(x)
[obj.setInd2(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def ctrl(self, map_list=None, title=None, wxnoserver=False):
self._map_list = [SLMap(10, 500, "lin", "carrier", self._carrier),
SLMap(.01, 10, "lin", "ratio", self._ratio),
SLMap(0, 20, "lin", "ind1", self._ind1),
SLMap(0, 20, "lin", "ind2", self._ind2),
SLMapMul(self._mul)]
PyoObject.ctrl(self, map_list, title, wxnoserver)
@property
def carrier(self):
"""float or PyoObject. Carrier frequency in cycles per second."""
return self._carrier
@carrier.setter
def carrier(self, x): self.setCarrier(x)
@property
def ratio(self):
"""float or PyoObject. Modulator/Carrier ratio."""
return self._ratio
@ratio.setter
def ratio(self, x): self.setRatio(x)
@property
def ind1(self):
"""float or PyoObject. Carrier index."""
return self._ind1
@ind1.setter
def ind1(self, x): self.setInd1(x)
@property
def ind2(self):
"""float or PyoObject. Modulation index."""
return self._ind2
@ind2.setter
def ind2(self, x): self.setInd2(x)
class Blit(PyoObject):
"""
Band limited impulse train synthesis.
Impulse train generator with control over the number of harmonics
in the spectrum, which gives oscillators with very low aliasing.
:Parent: :py:class:`PyoObject`
:Args:
freq : float or PyoObject, optional
Frequency in cycles per second. Defaults to 100.
harms : float or PyoObject, optional
Number of harmonics in the generated spectrum. Defaults to 40.
>>> s = Server().boot()
>>> s.start()
>>> lfo = Sine(freq=4, mul=.02, add=1)
>>> lf2 = Sine(freq=.25, mul=10, add=30)
>>> a = Blit(freq=[100, 99.7]*lfo, harms=lf2, mul=.3).out()
"""
def __init__(self, freq=100, harms=40, mul=1, add=0):
PyoObject.__init__(self, mul, add)
self._freq = freq
self._harms = harms
freq, harms, mul, add, lmax = convertArgsToLists(freq, harms, mul, add)
self._base_objs = [Blit_base(wrap(freq,i), wrap(harms,i), wrap(mul,i), wrap(add,i)) for i in range(lmax)]
def setFreq(self, x):
"""
Replace the `freq` attribute.
:Args:
x : float or PyoObject
new `freq` attribute.
"""
self._freq = x
x, lmax = convertArgsToLists(x)
[obj.setFreq(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def setHarms(self, x):
"""
Replace the `harms` attribute.
:Args:
x : float or PyoObject
new `harms` attribute.
"""
self._harms = x
x, lmax = convertArgsToLists(x)
[obj.setHarms(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def ctrl(self, map_list=None, title=None, wxnoserver=False):
self._map_list = [SLMap(1, 5000, "log", "freq", self._freq),
SLMap(2, 100, "lin", "harms", self._harms),
SLMapMul(self._mul)]
PyoObject.ctrl(self, map_list, title, wxnoserver)
@property
def freq(self):
"""float or PyoObject. Frequency in cycles per second."""
return self._freq
@freq.setter
def freq(self, x): self.setFreq(x)
@property
def harms(self):
"""float or PyoObject. Number of harmonics."""
return self._harms
@harms.setter
def harms(self, x): self.setHarms(x)
class Rossler(PyoObject):
"""
Chaotic attractor for the Rossler system.
The Rossler attractor is a system of three non-linear ordinary differential
equations. These differential equations define a continuous-time dynamical
system that exhibits chaotic dynamics associated with the fractal properties
of the attractor.
:Parent: :py:class:`PyoObject`
:Args:
pitch : float or PyoObject, optional
Controls the speed, in the range 0 -> 1, of the variations. With values
below 0.2, this object can be used as a low frequency oscillator (LFO)
and above 0.2, it will generate a broad spectrum noise with harmonic peaks.
Defaults to 0.25.
chaos : float or PyoObject, optional
Controls the chaotic behavior, in the range 0 -> 1, of the oscillator.
0 means nearly periodic while 1 is totally chaotic. Defaults to 0.5.
stereo, boolean, optional
If True, 2 streams will be generated, one with the X variable signal of
the algorithm and a second composed of the Y variable signal of the algorithm.
These two signal are strongly related in their frequency spectrum but
the Y signal is out-of-phase by approximatly 180 degrees. Useful to create
alternating LFOs. Available at initialization only. Defaults to False.
.. seealso::
:py:class:`Lorenz`
>>> s = Server().boot()
>>> s.start()
>>> a = Rossler(pitch=.003, stereo=True, mul=.2, add=.2)
>>> b = Rossler(pitch=[.5,.48], mul=a).out()
"""
def __init__(self, pitch=0.25, chaos=0.5, stereo=False, mul=1, add=0):
PyoObject.__init__(self, mul, add)
self._pitch = pitch
self._chaos = chaos
self._stereo = stereo
pitch, chaos, mul, add, lmax = convertArgsToLists(pitch, chaos, mul, add)
self._base_objs = []
self._alt_objs = []
for i in range(lmax):
self._base_objs.append(Rossler_base(wrap(pitch,i), wrap(chaos,i), wrap(mul,i), wrap(add,i)))
if self._stereo:
self._base_objs.append(RosslerAlt_base(self._base_objs[-1], wrap(mul,i), wrap(add,i)))
def setPitch(self, x):
"""
Replace the `pitch` attribute.
:Args:
x : float or PyoObject
new `pitch` attribute. {0. -> 1.}
"""
self._pitch = x
x, lmax = convertArgsToLists(x)
if self._stereo:
[obj.setPitch(wrap(x,i)) for i, obj in enumerate(self._base_objs) if (i % 2) == 0]
else:
[obj.setPitch(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def setChaos(self, x):
"""
Replace the `chaos` attribute.
:Args:
x : float or PyoObject
new `chaos` attribute. {0. -> 1.}
"""
self._chaos = x
x, lmax = convertArgsToLists(x)
if self._stereo:
[obj.setChaos(wrap(x,i)) for i, obj in enumerate(self._base_objs) if (i % 2) == 0]
else:
[obj.setChaos(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def ctrl(self, map_list=None, title=None, wxnoserver=False):
self._map_list = [SLMap(0., 1., "lin", "pitch", self._pitch),
SLMap(0., 1., "lin", "chaos", self._chaos), SLMapMul(self._mul)]
PyoObject.ctrl(self, map_list, title, wxnoserver)
@property
def pitch(self):
"""float or PyoObject. Speed of the variations."""
return self._pitch
@pitch.setter
def pitch(self, x): self.setPitch(x)
@property
def chaos(self):
"""float or PyoObject. Chaotic behavior."""
return self._chaos
@chaos.setter
def chaos(self, x): self.setChaos(x)
class Lorenz(PyoObject):
"""
Chaotic attractor for the Lorenz system.
The Lorenz attractor is a system of three non-linear ordinary differential
equations. These differential equations define a continuous-time dynamical
system that exhibits chaotic dynamics associated with the fractal properties
of the attractor.
:Parent: :py:class:`PyoObject`
:Args:
pitch : float or PyoObject, optional
Controls the speed, in the range 0 -> 1, of the variations. With values
below 0.2, this object can be used as a low frequency oscillator (LFO)
and above 0.2, it will generate a broad spectrum noise with harmonic peaks.
Defaults to 0.25.
chaos : float or PyoObject, optional
Controls the chaotic behavior, in the range 0 -> 1, of the oscillator.
0 means nearly periodic while 1 is totally chaotic. Defaults to 0.5
stereo, boolean, optional
If True, 2 streams will be generated, one with the X variable signal of
the algorithm and a second composed of the Y variable signal of the algorithm.
These two signal are strongly related in their frequency spectrum but
the Y signal is out-of-phase by approximatly 180 degrees. Useful to create
alternating LFOs. Available at initialization only. Defaults to False.
.. seealso::
:py:class:`Rossler`
>>> s = Server().boot()
>>> s.start()
>>> a = Lorenz(pitch=.003, stereo=True, mul=.2, add=.2)
>>> b = Lorenz(pitch=[.4,.38], mul=a).out()
"""
def __init__(self, pitch=0.25, chaos=0.5, stereo=False, mul=1, add=0):
PyoObject.__init__(self, mul, add)
self._pitch = pitch
self._chaos = chaos
self._stereo = stereo
pitch, chaos, mul, add, lmax = convertArgsToLists(pitch, chaos, mul, add)
self._base_objs = []
self._alt_objs = []
for i in range(lmax):
self._base_objs.append(Lorenz_base(wrap(pitch,i), wrap(chaos,i), wrap(mul,i), wrap(add,i)))
if self._stereo:
self._base_objs.append(LorenzAlt_base(self._base_objs[-1], wrap(mul,i), wrap(add,i)))
def setPitch(self, x):
"""
Replace the `pitch` attribute.
:Args:
x : float or PyoObject
new `pitch` attribute. {0. -> 1.}
"""
self._pitch = x
x, lmax = convertArgsToLists(x)
if self._stereo:
[obj.setPitch(wrap(x,i)) for i, obj in enumerate(self._base_objs) if (i % 2) == 0]
else:
[obj.setPitch(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def setChaos(self, x):
"""
Replace the `chaos` attribute.
:Args:
x : float or PyoObject
new `chaos` attribute. {0. -> 1.}
"""
self._chaos = x
x, lmax = convertArgsToLists(x)
if self._stereo:
[obj.setChaos(wrap(x,i)) for i, obj in enumerate(self._base_objs) if (i % 2) == 0]
else:
[obj.setChaos(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def ctrl(self, map_list=None, title=None, wxnoserver=False):
self._map_list = [SLMap(0., 1., "lin", "pitch", self._pitch),
SLMap(0., 1., "lin", "chaos", self._chaos), SLMapMul(self._mul)]
PyoObject.ctrl(self, map_list, title, wxnoserver)
@property
def pitch(self):
"""float or PyoObject. Speed of the variations."""
return self._pitch
@pitch.setter
def pitch(self, x): self.setPitch(x)
@property
def chaos(self):
"""float or PyoObject. Chaotic behavior."""
return self._chaos
@chaos.setter
def chaos(self, x): self.setChaos(x)
class LFO(PyoObject):
"""
Band-limited Low Frequency Oscillator with different wave shapes.
:Parent: :py:class:`PyoObject`
:Args:
freq : float or PyoObject, optional
Oscillator frequency in cycles per second. Defaults to 100.
sharp : float or PyoObject, optional
Sharpness factor between 0 and 1. Sharper waveform results
in more harmonics in the spectrum. Defaults to 0.5.
type : int, optional
Waveform type. eight possible values :
0. Saw up (default)
1. Saw down
2. Square
3. Triangle
4. Pulse
5. Bipolar pulse
6. Sample and hold
7. Modulated Sine
>>> s = Server().boot()
>>> s.start()
>>> lf = Sine([.31,.34], mul=15, add=20)
>>> lf2 = LFO([.43,.41], sharp=.7, type=2, mul=.4, add=.4)
>>> a = LFO(freq=lf, sharp=lf2, type=7, mul=100, add=300)
>>> b = SineLoop(freq=a, feedback=0.12, mul=.2).out()
"""
def __init__(self, freq=100, sharp=0.5, type=0, mul=1, add=0):
PyoObject.__init__(self, mul, add)
self._freq = freq
self._sharp = sharp
self._type = type
freq, sharp, type, mul, add, lmax = convertArgsToLists(freq, sharp, type, mul, add)
self._base_objs = [LFO_base(wrap(freq,i), wrap(sharp,i), wrap(type,i), wrap(mul,i), wrap(add,i)) for i in range(lmax)]
def setFreq(self, x):
"""
Replace the `freq` attribute.
:Args:
x : float or PyoObject
New `freq` attribute, in cycles per seconds.
"""
self._freq = x
x, lmax = convertArgsToLists(x)
[obj.setFreq(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def setSharp(self, x):
"""
Replace the `sharp` attribute.
:Args:
x : float or PyoObject
New `sharp` attribute, in the range 0 -> 1.
"""
self._sharp = x
x, lmax = convertArgsToLists(x)
[obj.setSharp(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def setType(self, x):
"""
Replace the `type` attribute.
:Args:
x : int
New `type` attribute. Choices are :
0. Saw up
1. Saw down
2. Square
3. Triangle
4. Pulse
5. Bipolar pulse
6. Sample and hold
7. Modulated Sine
"""
if x >= 0 and x < 8:
self._type = x
x, lmax = convertArgsToLists(x)
[obj.setType(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def reset(self):
"""
Resets current phase to 0.
"""
[obj.reset() for i, obj in enumerate(self._base_objs)]
def ctrl(self, map_list=None, title=None, wxnoserver=False):
self._map_list = [SLMapFreq(self._freq), SLMap(0., 1., "lin", "sharp", self._sharp), SLMapMul(self._mul)]
PyoObject.ctrl(self, map_list, title, wxnoserver)
@property
def freq(self):
"""float or PyoObject. Oscillator frequency in cycles per second."""
return self._freq
@freq.setter
def freq(self, x): self.setFreq(x)
@property
def sharp(self):
"""float or PyoObject. Sharpness factor {0 -> 1}."""
return self._sharp
@sharp.setter
def sharp(self, x): self.setSharp(x)
@property
def type(self):
"""int. Waveform type."""
return self._type
@type.setter
def type(self, x): self.setType(x)
class SumOsc(PyoObject):
"""
Discrete summation formulae to produce complex spectra.
This object implements a discrete summation formulae taken from
the paper 'The synthesis of complex audio spectra by means of
discrete summation formulae' by James A. Moorer. The formulae
used is of this form:
(sin(theta) - a * sin(theta - beta)) / (1 + a**2 - 2 * a * cos(beta))
where 'theta' and 'beta' are periodic functions and 'a' is
the modulation index, providing control over the damping of
the partials.
The resulting sound is related to the family of modulation
techniques but this formulae express 'one-sided' spectra,
useful to avoid aliasing from the negative frequencies.
:Parent: :py:class:`PyoObject`
:Args:
freq : float or PyoObject, optional
Base frequency in cycles per second. Defaults to 100.
ratio : float or PyoObject, optional
A factor used to stretch or compress the partial serie by
manipulating the frequency of the modulation oscillator.
Integer ratios give harmonic spectra. Defaults to 0.5.
index : float or PyoObject, optional
Damping of successive partials, between 0 and 1. With a
value of 0.5, each partial is 6dB lower than the previous
partial. Defaults to 5.
>>> s = Server().boot()
>>> s.start()
>>> ind = LinTable([(0,.3), (20,.85), (300,.7), (1000,.5), (8191,.3)])
>>> m = Metro(4).play()
>>> tr = TrigEnv(m, table=ind, dur=4)
>>> f = SumOsc(freq=[301,300], ratio=[.2498,.2503], index=tr, mul=.2).out()
"""
def __init__(self, freq=100, ratio=0.5, index=0.5, mul=1, add=0):
PyoObject.__init__(self, mul, add)
self._freq = freq
self._ratio = ratio
self._index = index
freq, ratio, index, mul, add, lmax = convertArgsToLists(freq, ratio, index, mul, add)
self._base_objs = [SumOsc_base(wrap(freq,i), wrap(ratio,i), wrap(index,i), wrap(mul,i), wrap(add,i)) for i in range(lmax)]
def setFreq(self, x):
"""
Replace the `freq` attribute.
:Args:
x : float or PyoObject
new `freq` attribute.
"""
self._freq = x
x, lmax = convertArgsToLists(x)
[obj.setFreq(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def setRatio(self, x):
"""
Replace the `ratio` attribute.
:Args:
x : float or PyoObject
new `ratio` attribute.
"""
self._ratio = x
x, lmax = convertArgsToLists(x)
[obj.setRatio(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def setIndex(self, x):
"""
Replace the `index` attribute.
:Args:
x : float or PyoObject
new `index` attribute.
"""
self._index = x
x, lmax = convertArgsToLists(x)
[obj.setIndex(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def ctrl(self, map_list=None, title=None, wxnoserver=False):
self._map_list = [SLMap(10, 500, "lin", "freq", self._freq),
SLMap(.01, 10, "lin", "ratio", self._ratio),
SLMap(0, 1, "lin", "index", self._index),
SLMapMul(self._mul)]
PyoObject.ctrl(self, map_list, title, wxnoserver)
@property
def freq(self):
"""float or PyoObject. Base frequency in cycles per second."""
return self._freq
@freq.setter
def freq(self, x): self.setFreq(x)
@property
def ratio(self):
"""float or PyoObject. Base/modulator frequency ratio."""
return self._ratio
@ratio.setter
def ratio(self, x): self.setRatio(x)
@property
def index(self):
"""float or PyoObject. Index, high frequency damping."""
return self._index
@index.setter
def index(self, x): self.setIndex(x)
class SuperSaw(PyoObject):
"""
Roland JP-8000 Supersaw emulator.
This object implements an emulation of the Roland JP-8000 Supersaw algorithm.
The shape of the waveform is produced from 7 sawtooth oscillators detuned
against each other over a period of time. It allows control over the depth
of the detuning and the balance between central and sideband oscillators.
:Parent: :py:class:`PyoObject`
:Args:
freq : float or PyoObject, optional
Frequency in cycles per second. Defaults to 100.
detune : float or PyoObject, optional
Depth of the detuning, between 0 and 1. 0 means all oscillators are
tuned to the same frequency and 1 means sideband oscillators are at
maximum detuning regarding the central frequency. Defaults to 0.5.
bal : float or PyoObject, optional
Balance between central oscillator and sideband oscillators. A value
of 0 outputs only the central oscillator while a value of 1 gives a
mix of all oscillators with the central one lower than the sidebands.
Defaults to 0.7.
.. seealso::
:py:class:`Phasor`, :py:class:`SineLoop`
>>> s = Server().boot()
>>> s.start()
>>> lfd = Sine([.4,.3], mul=.2, add=.5)
>>> a = SuperSaw(freq=[49,50], detune=lfd, bal=0.7, mul=0.2).out()
"""
def __init__(self, freq=100, detune=0.5, bal=0.7, mul=1, add=0):
PyoObject.__init__(self, mul, add)
self._freq = freq
self._detune = detune
self._bal = bal
freq, detune, bal, mul, add, lmax = convertArgsToLists(freq, detune, bal, mul, add)
self._base_objs = [SuperSaw_base(wrap(freq,i), wrap(detune,i), wrap(bal,i), wrap(mul,i), wrap(add,i)) for i in range(lmax)]
def setFreq(self, x):
"""
Replace the `freq` attribute.
:Args:
x : float or PyoObject
new `freq` attribute.
"""
self._freq = x
x, lmax = convertArgsToLists(x)
[obj.setFreq(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def setDetune(self, x):
"""
Replace the `detune` attribute.
:Args:
x : float or PyoObject
new `detune` attribute.
"""
self._detune = x
x, lmax = convertArgsToLists(x)
[obj.setDetune(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def setBal(self, x):
"""
Replace the `bal` attribute.
:Args:
x : float or PyoObject
new `bal` attribute.
"""
self._bal = x
x, lmax = convertArgsToLists(x)
[obj.setBal(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def ctrl(self, map_list=None, title=None, wxnoserver=False):
self._map_list = [SLMapFreq(self._freq),
SLMap(0, 1, "lin", "detune", self._detune),
SLMap(0, 1, "lin", "bal", self._bal), SLMapMul(self._mul)]
PyoObject.ctrl(self, map_list, title, wxnoserver)
@property
def freq(self):
"""float or PyoObject. Frequency in cycles per second."""
return self._freq
@freq.setter
def freq(self, x): self.setFreq(x)
@property
def detune(self):
"""float or PyoObject. Depth of the detuning."""
return self._detune
@detune.setter
def detune(self, x): self.setDetune(x)
@property
def bal(self):
"""float or PyoObject. Balance between central and sideband oscillators."""
return self._bal
@bal.setter
def bal(self, x): self.setBal(x)
class RCOsc(PyoObject):
"""
Waveform aproximation of a RC circuit.
A RC circuit is a capacitor and a resistor in series, giving a logarithmic
growth followed by an exponential decay.
:Parent: :py:class:`PyoObject`
:Args:
freq : float or PyoObject, optional
Frequency in cycles per second. Defaults to 100.
sharp : float or PyoObject, optional
Slope of the attack and decay of the waveform, between 0 and 1.
A value of 0 gives a triangular waveform and 1 gives almost a
square wave. Defaults to 0.25.
.. seealso::
:py:class:`Osc`, :py:class:`LFO`, :py:class:`SineLoop`, :py:class:`SumOsc`
>>> s = Server().boot()
>>> s.start()
>>> fr = RCOsc(freq=[.48,.5], sharp=.2, mul=300, add=600)
>>> a = RCOsc(freq=fr, sharp=.1, mul=.2).out()
"""
def __init__(self, freq=100, sharp=0.25, mul=1, add=0):
PyoObject.__init__(self, mul, add)
self._freq = freq
self._sharp = sharp
freq, sharp, mul, add, lmax = convertArgsToLists(freq, sharp, mul, add)
self._base_objs = [RCOsc_base(wrap(freq,i), wrap(sharp,i), wrap(mul,i), wrap(add,i)) for i in range(lmax)]
def setFreq(self, x):
"""
Replace the `freq` attribute.
:Args:
x : float or PyoObject
new `freq` attribute.
"""
self._freq = x
x, lmax = convertArgsToLists(x)
[obj.setFreq(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def setSharp(self, x):
"""
Replace the `sharp` attribute.
:Args:
x : float or PyoObject
new `sharp` attribute.
"""
self._sharp = x
x, lmax = convertArgsToLists(x)
[obj.setSharp(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def reset(self):
"""
Resets current phase to 0.
"""
[obj.reset() for i, obj in enumerate(self._base_objs)]
def ctrl(self, map_list=None, title=None, wxnoserver=False):
self._map_list = [SLMapFreq(self._freq), SLMap(0,1,"lin","sharp",self._sharp), SLMapMul(self._mul)]
PyoObject.ctrl(self, map_list, title, wxnoserver)
@property
def freq(self):
"""float or PyoObject. Frequency in cycles per second."""
return self._freq
@freq.setter
def freq(self, x): self.setFreq(x)
@property
def sharp(self):
"""float or PyoObject. Sharpness of the waveform."""
return self._sharp
@sharp.setter
def sharp(self, x): self.setSharp(x)
|