/usr/share/pyshared/pyolib/effects.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 | """
Objects to perform specific audio signal processing effects such
as distortions, delays, chorus and reverbs.
"""
"""
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 *
class Disto(PyoObject):
"""
Arc tangent distortion.
Apply an arc tangent distortion with controllable drive to the input signal.
:Parent: :py:class:`PyoObject`
:Args:
input : PyoObject
Input signal to process.
drive : float or PyoObject, optional
Amount of distortion applied to the signal, between 0 and 1.
Defaults to 0.75.
slope : float or PyoObject, optional
Slope of the lowpass filter applied after distortion,
between 0 and 1. Defaults to 0.5.
>>> s = Server().boot()
>>> s.start()
>>> a = SfPlayer(SNDS_PATH + "/transparent.aif", loop=True)
>>> lfo = Sine(freq=[.2,.25], mul=.5, add=.5)
>>> d = Disto(a, drive=lfo, slope=.8, mul=.15).out()
"""
def __init__(self, input, drive=.75, slope=.5, mul=1, add=0):
PyoObject.__init__(self, mul, add)
self._input = input
self._drive = drive
self._slope = slope
self._in_fader = InputFader(input)
in_fader, drive, slope, mul, add, lmax = convertArgsToLists(self._in_fader, drive, slope, mul, add)
self._base_objs = [Disto_base(wrap(in_fader,i), wrap(drive,i), wrap(slope,i), wrap(mul,i), wrap(add,i)) for i in range(lmax)]
def setInput(self, x, fadetime=0.05):
"""
Replace the `input` attribute.
:Args:
x : PyoObject
New signal to process.
fadetime : float, optional
Crossfade time between old and new input. Defaults to 0.05.
"""
self._input = x
self._in_fader.setInput(x, fadetime)
def setDrive(self, x):
"""
Replace the `drive` attribute.
:Args:
x : float or PyoObject
New `drive` attribute.
"""
self._drive = x
x, lmax = convertArgsToLists(x)
[obj.setDrive(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def setSlope(self, x):
"""
Replace the `slope` attribute.
:Args:
x : float or PyoObject
New `slope` attribute.
"""
self._slope = x
x, lmax = convertArgsToLists(x)
[obj.setSlope(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', 'drive', self._drive),
SLMap(0., 0.999, 'lin', 'slope', self._slope),
SLMapMul(self._mul)]
PyoObject.ctrl(self, map_list, title, wxnoserver)
@property
def input(self):
"""PyoObject. Input signal to process."""
return self._input
@input.setter
def input(self, x): self.setInput(x)
@property
def drive(self):
"""float or PyoObject. Amount of distortion."""
return self._drive
@drive.setter
def drive(self, x): self.setDrive(x)
@property
def slope(self):
"""float or PyoObject. Slope of the lowpass filter."""
return self._slope
@slope.setter
def slope(self, x): self.setSlope(x)
class Delay(PyoObject):
"""
Sweepable recursive delay.
:Parent: :py:class:`PyoObject`
:Args:
input : PyoObject
Input signal to delayed.
delay : float or PyoObject, optional
Delay time in seconds. Defaults to 0.25.
feedback : float or PyoObject, optional
Amount of output signal sent back into the delay line.
Defaults to 0.
maxdelay : float, optional
Maximum delay length in seconds. Available only at initialization.
Defaults to 1.
>>> s = Server().boot()
>>> s.start()
>>> a = SfPlayer(SNDS_PATH + "/transparent.aif", loop=True, mul=.3).mix(2).out()
>>> d = Delay(a, delay=[.15,.2], feedback=.5, mul=.4).out()
"""
def __init__(self, input, delay=0.25, feedback=0, maxdelay=1, mul=1, add=0):
PyoObject.__init__(self, mul, add)
self._input = input
self._delay = delay
self._feedback = feedback
self._maxdelay = maxdelay
self._in_fader = InputFader(input)
in_fader, delay, feedback, maxdelay, mul, add, lmax = convertArgsToLists(self._in_fader, delay, feedback, maxdelay, mul, add)
self._base_objs = [Delay_base(wrap(in_fader,i), wrap(delay,i), wrap(feedback,i), wrap(maxdelay,i), wrap(mul,i), wrap(add,i)) for i in range(lmax)]
def setInput(self, x, fadetime=0.05):
"""
Replace the `input` attribute.
:Args:
x : PyoObject
New signal to delayed.
fadetime : float, optional
Crossfade time between old and new input. Defaults to 0.05.
"""
self._input = x
self._in_fader.setInput(x, fadetime)
def setDelay(self, x):
"""
Replace the `delay` attribute.
:Args:
x : float or PyoObject
New `delay` attribute.
"""
self._delay = x
x, lmax = convertArgsToLists(x)
[obj.setDelay(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 reset(self):
"""
Reset the memory buffer to zeros.
"""
[obj.reset() for obj in self._base_objs]
def ctrl(self, map_list=None, title=None, wxnoserver=False):
self._map_list = [SLMap(0.001, self._maxdelay, 'log', 'delay', self._delay),
SLMap(0., 1., 'lin', 'feedback', self._feedback),
SLMapMul(self._mul)]
PyoObject.ctrl(self, map_list, title, wxnoserver)
@property
def input(self):
"""PyoObject. Input signal to delayed."""
return self._input
@input.setter
def input(self, x): self.setInput(x)
@property
def delay(self):
"""float or PyoObject. Delay time in seconds."""
return self._delay
@delay.setter
def delay(self, x): self.setDelay(x)
@property
def feedback(self):
"""float or PyoObject. Amount of output signal sent back into the delay line."""
return self._feedback
@feedback.setter
def feedback(self, x): self.setFeedback(x)
class SDelay(PyoObject):
"""
Simple delay without interpolation.
:Parent: :py:class:`PyoObject`
:Args:
input : PyoObject
Input signal to delayed.
delay : float or PyoObject, optional
Delay time in seconds. Defaults to 0.25.
maxdelay : float, optional
Maximum delay length in seconds. Available only at initialization.
Defaults to 1.
>>> s = Server().boot()
>>> s.start()
>>> srPeriod = 1. / s.getSamplingRate()
>>> dlys = [srPeriod * i * 5 for i in range(1, 7)]
>>> a = SfPlayer(SNDS_PATH + "/transparent.aif", loop=True)
>>> d = SDelay(a, delay=dlys, mul=.1).out(1)
"""
def __init__(self, input, delay=0.25, maxdelay=1, mul=1, add=0):
PyoObject.__init__(self, mul, add)
self._input = input
self._delay = delay
self._maxdelay = maxdelay
self._in_fader = InputFader(input)
in_fader, delay, maxdelay, mul, add, lmax = convertArgsToLists(self._in_fader, delay, maxdelay, mul, add)
self._base_objs = [SDelay_base(wrap(in_fader,i), wrap(delay,i), wrap(maxdelay,i), wrap(mul,i), wrap(add,i)) for i in range(lmax)]
def setInput(self, x, fadetime=0.05):
"""
Replace the `input` attribute.
:Args:
x : PyoObject
New signal to process.
fadetime : float, optional
Crossfade time between old and new input. Defaults to 0.05.
"""
self._input = x
self._in_fader.setInput(x, fadetime)
def setDelay(self, x):
"""
Replace the `delay` attribute.
:Args:
x : float or PyoObject
New `delay` attribute.
"""
self._delay = x
x, lmax = convertArgsToLists(x)
[obj.setDelay(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def reset(self):
"""
Reset the memory buffer to zeros.
"""
[obj.reset() for obj in self._base_objs]
def ctrl(self, map_list=None, title=None, wxnoserver=False):
self._map_list = [SLMap(0.001, self._maxdelay, 'log', 'delay', self._delay),
SLMapMul(self._mul)]
PyoObject.ctrl(self, map_list, title, wxnoserver)
@property
def input(self):
"""PyoObject. Input signal to delayed."""
return self._input
@input.setter
def input(self, x): self.setInput(x)
@property
def delay(self):
"""float or PyoObject. Delay time in seconds."""
return self._delay
@delay.setter
def delay(self, x): self.setDelay(x)
class Waveguide(PyoObject):
"""
Basic waveguide model.
This waveguide model consisting of one delay-line with a simple
lowpass filtering and lagrange interpolation.
:Parent: :py:class:`PyoObject`
:Args:
input : PyoObject
Input signal to process.
freq : float or PyoObject, optional
Frequency, in cycle per second, of the waveguide (i.e. the inverse
of delay time). Defaults to 100.
dur : float or PyoObject, optional
Duration, in seconds, for the waveguide to drop 40 dB below it's
maxima. Defaults to 10.
minfreq : float, optional
Minimum possible frequency, used to initialized delay length.
Available only at initialization. Defaults to 20.
>>> s = Server().boot()
>>> s.start()
>>> sf = SfPlayer(SNDS_PATH + '/transparent.aif', speed=[.98,1.02], loop=True)
>>> gt = Gate(sf, thresh=-24, risetime=0.005, falltime=0.01, lookahead=5, mul=.2)
>>> w = Waveguide(gt, freq=[60,120.17,180.31,240.53], dur=20, minfreq=20, mul=.4).out()
"""
def __init__(self, input, freq=100, dur=10, minfreq=20, mul=1, add=0):
PyoObject.__init__(self, mul, add)
self._input = input
self._freq = freq
self._dur = dur
self._in_fader = InputFader(input)
in_fader, freq, dur, minfreq, mul, add, lmax = convertArgsToLists(self._in_fader, freq, dur, minfreq, mul, add)
self._base_objs = [Waveguide_base(wrap(in_fader,i), wrap(freq,i), wrap(dur,i), wrap(minfreq,i), wrap(mul,i), wrap(add,i)) for i in range(lmax)]
def setInput(self, x, fadetime=0.05):
"""
Replace the `input` attribute.
:Args:
x : PyoObject
New signal to process.
fadetime : float, optional
Crossfade time between old and new input. Defaults to 0.05.
"""
self._input = x
self._in_fader.setInput(x, fadetime)
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 setDur(self, x):
"""
Replace the `dur` attribute.
:Args:
x : float or PyoObject
New `dur` attribute.
"""
self._dur = x
x, lmax = convertArgsToLists(x)
[obj.setDur(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., 'log', 'freq', self._freq),
SLMapDur(self._dur),
SLMapMul(self._mul)]
PyoObject.ctrl(self, map_list, title, wxnoserver)
@property
def input(self):
"""PyoObject. Input signal to process."""
return self._input
@input.setter
def input(self, x): self.setInput(x)
@property
def freq(self):
"""float or PyoObject. Frequency in cycle per second."""
return self._freq
@freq.setter
def freq(self, x): self.setFreq(x)
@property
def dur(self):
"""float or PyoObject. Resonance duration in seconds."""
return self._dur
@dur.setter
def dur(self, x): self.setDur(x)
class AllpassWG(PyoObject):
"""
Out of tune waveguide model with a recursive allpass network.
This waveguide model consisting of one delay-line with a 3-stages recursive
allpass filter which made the resonances of the waveguide out of tune.
:Parent: :py:class:`PyoObject`
:Args:
input : PyoObject
Input signal to process.
freq : float or PyoObject, optional
Frequency, in cycle per second, of the waveguide (i.e. the inverse
of delay time). Defaults to 100.
feed : float or PyoObject, optional
Amount of output signal (between 0 and 1) sent back into the delay line.
Defaults to 0.95.
detune : float or PyoObject, optional
Control the depth of the allpass delay-line filter, i.e. the depth of
the detuning. Should be in the range 0 to 1. Defaults to 0.5.
minfreq : float, optional
Minimum possible frequency, used to initialized delay length.
Available only at initialization. Defaults to 20.
>>> s = Server().boot()
>>> s.start()
>>> sf = SfPlayer(SNDS_PATH + '/transparent.aif', speed=[.98,1.02], loop=True)
>>> gt = Gate(sf, thresh=-24, risetime=0.005, falltime=0.01, lookahead=5, mul=.2)
>>> rnd = Randi(min=.5, max=1.0, freq=[.13,.22,.155,.171])
>>> rnd2 = Randi(min=.95, max=1.05, freq=[.145,.2002,.1055,.071])
>>> fx = AllpassWG(gt, freq=rnd2*[74.87,75,75.07,75.21], feed=1, detune=rnd, mul=.15).out()
"""
def __init__(self, input, freq=100, feed=0.95, detune=0.5, minfreq=20, mul=1, add=0):
PyoObject.__init__(self, mul, add)
self._input = input
self._freq = freq
self._feed = feed
self._detune = detune
self._in_fader = InputFader(input)
in_fader, freq, feed, detune, minfreq, mul, add, lmax = convertArgsToLists(self._in_fader, freq, feed, detune, minfreq, mul, add)
self._base_objs = [AllpassWG_base(wrap(in_fader,i), wrap(freq,i), wrap(feed,i), wrap(detune,i), wrap(minfreq,i), wrap(mul,i), wrap(add,i)) for i in range(lmax)]
def setInput(self, x, fadetime=0.05):
"""
Replace the `input` attribute.
:Args:
x : PyoObject
New signal to process.
fadetime : float, optional
Crossfade time between old and new input. Defaults to 0.05.
"""
self._input = x
self._in_fader.setInput(x, fadetime)
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 setFeed(self, x):
"""
Replace the `feed` attribute.
:Args:
x : float or PyoObject
New `feed` attribute.
"""
self._feed = x
x, lmax = convertArgsToLists(x)
[obj.setFeed(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 ctrl(self, map_list=None, title=None, wxnoserver=False):
self._map_list = [SLMap(20., 500., 'log', 'freq', self._freq),
SLMap(0., 1., 'lin', 'feed', self._feed),
SLMap(0., 1., 'lin', 'detune', self._detune),
SLMapMul(self._mul)]
PyoObject.ctrl(self, map_list, title, wxnoserver)
@property
def input(self):
"""PyoObject. Input signal to process."""
return self._input
@input.setter
def input(self, x): self.setInput(x)
@property
def freq(self):
"""float or PyoObject. Frequency in cycle per second."""
return self._freq
@freq.setter
def freq(self, x): self.setFreq(x)
@property
def feed(self):
"""float or PyoObject. Amount of output signal sent back into the delay line."""
return self._feed
@feed.setter
def feed(self, x): self.setFeed(x)
@property
def detune(self):
"""float or PyoObject. Depth of the detuning."""
return self._detune
@detune.setter
def detune(self, x): self.setDetune(x)
class Freeverb(PyoObject):
"""
Implementation of Jezar's Freeverb.
Freeverb is a reverb unit generator based on Jezar's public domain
C++ sources, composed of eight parallel comb filters, followed by four
allpass units in series. Filters on each stream are slightly detuned
in order to create multi-channel effects.
:Parent: :py:class:`PyoObject`
:Args:
input : PyoObject
Input signal to process.
size : float or PyoObject, optional
Controls the length of the reverb, between 0 and 1. A higher
value means longer reverb. Defaults to 0.5.
damp : float or PyoObject, optional
High frequency attenuation, between 0 and 1. A higher value
will result in a faster decay of the high frequency range.
Defaults to 0.5.
bal : float or PyoObject, optional
Balance between wet and dry signal, between 0 and 1. 0 means no
reverb. Defaults to 0.5.
>>> s = Server().boot()
>>> s.start()
>>> a = SfPlayer(SNDS_PATH + "/transparent.aif", loop=True, mul=.4)
>>> b = Freeverb(a, size=[.79,.8], damp=.9, bal=.3).out()
"""
def __init__(self, input, size=.5, damp=.5, bal=.5, mul=1, add=0):
PyoObject.__init__(self, mul, add)
self._input = input
self._size = size
self._damp = damp
self._bal = bal
self._in_fader = InputFader(input)
in_fader, size, damp, bal, mul, add, lmax = convertArgsToLists(self._in_fader, size, damp, bal, mul, add)
self._base_objs = [Freeverb_base(wrap(in_fader,i), wrap(size,i), wrap(damp,i), wrap(bal,i), wrap(mul,i), wrap(add,i)) for i in range(lmax)]
def setInput(self, x, fadetime=0.05):
"""
Replace the `input` attribute.
:Args:
x : PyoObject
New signal to process.
fadetime : float, optional
Crossfade time between old and new input. Defaults to 0.05.
"""
self._input = x
self._in_fader.setInput(x, fadetime)
def setSize(self, x):
"""
Replace the `size` attribute.
:Args:
x : float or PyoObject
New `size` attribute.
"""
self._size = x
x, lmax = convertArgsToLists(x)
[obj.setSize(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
def setDamp(self, x):
"""
Replace the `damp` attribute.
:Args:
x : float or PyoObject
New `damp` attribute.
"""
self._damp = x
x, lmax = convertArgsToLists(x)
[obj.setDamp(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.setMix(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', 'size', self._size),
SLMap(0., 1., 'lin', 'damp', self._damp),
SLMap(0., 1., 'lin', 'bal', self._bal),
SLMapMul(self._mul)]
PyoObject.ctrl(self, map_list, title, wxnoserver)
@property
def input(self):
"""PyoObject. Input signal to process."""
return self._input
@input.setter
def input(self, x): self.setInput(x)
@property
def size(self):
"""float or PyoObject. Room size."""
return self._size
@size.setter
def size(self, x): self.setSize(x)
@property
def damp(self):
"""float or PyoObject. High frequency damping."""
return self._damp
@damp.setter
def damp(self, x): self.setDamp(x)
@property
def bal(self):
"""float or PyoObject. Balance between wet and dry signal."""
return self._bal
@bal.setter
def bal(self, x): self.setBal(x)
class Convolve(PyoObject):
"""
Implements filtering using circular convolution.
A circular convolution is defined as the integral of the product of two
functions after one is reversed and shifted.
:Parent: :py:class:`PyoObject`
:Args:
input : PyoObject
Input signal to process.
table : PyoTableObject
Table containning the impulse response.
size : int
Length, in samples, of the convolution. Available at initialization
time only.
If the table changes during the performance, its size must egal or
greater than this value.
If greater only the first `size` samples will be used.
.. note::
Convolution is very expensive to compute, so the impulse response must
be kept very short to run in real time.
Usually convolution generates a high amplitude level, take care of the
`mul` parameter!
.. seealso::
:py:class:`Follower`
>>> s = Server().boot()
>>> s.start()
>>> snd = SNDS_PATH + '/transparent.aif'
>>> sf = SfPlayer(snd, speed=[.999,1], loop=True, mul=.25).out()
>>> a = Convolve(sf, SndTable(SNDS_PATH+'/accord.aif'), size=512, mul=.2).out()
"""
def __init__(self, input, table, size, mul=1, add=0):
PyoObject.__init__(self, mul, add)
self._input = input
self._table = table
self._size = size
self._in_fader = InputFader(input)
in_fader, table, size, mul, add, lmax = convertArgsToLists(self._in_fader, table, size, mul, add)
self._base_objs = [Convolve_base(wrap(in_fader,i), wrap(table,i), wrap(size,i), wrap(mul,i), wrap(add,i)) for i in range(lmax)]
def setInput(self, x, fadetime=0.05):
"""
Replace the `input` attribute.
:Args:
x : PyoObject
New signal to process.
fadetime : float, optional
Crossfade time between old and new input. Default to 0.05.
"""
self._input = x
self._in_fader.setInput(x, fadetime)
def setTable(self, x):
"""
Replace the `table` attribute.
:Args:
x : PyoTableObject
new `table` attribute.
"""
self._table = x
x, lmax = convertArgsToLists(x)
[obj.setTable(wrap(x,i)) for i, obj in enumerate(self._base_objs)]
@property
def input(self):
"""PyoObject. Input signal to filter."""
return self._input
@input.setter
def input(self, x): self.setInput(x)
@property
def table(self):
"""PyoTableObject. Table containing the impulse response."""
return self._table
@table.setter
def table(self, x): self.setTable(x)
class WGVerb(PyoObject):
"""
8 delay line mono FDN reverb.
8 delay line FDN reverb, with feedback matrix based upon physical
modeling scattering junction of 8 lossless waveguides of equal
characteristic impedance.
:Parent: :py:class:`PyoObject`
:Args:
input : PyoObject
Input signal to process.
feedback : float or PyoObject, optional
Amount of output signal sent back into the delay lines.
Defaults to 0.5.
0.6 gives a good small "live" room sound, 0.8 a small hall,
and 0.9 a large hall.
cutoff : float or PyoObject, optional
cutoff frequency of simple first order lowpass filters in the
feedback loop of delay lines, in Hz. Defaults to 5000.
bal : float or PyoObject, optional
Balance between wet and dry signal, between 0 and 1. 0 means no
reverb. Defaults to 0.5.
>>> s = Server().boot()
>>> s.start()
>>> a = SfPlayer(SNDS_PATH + "/transparent.aif", loop=True)
>>> d = WGVerb(a, feedback=[.74,.75], cutoff=5000, bal=.25, mul=.3).out()
"""
def __init__(self, input, feedback=0.5, cutoff=5000, bal=0.5, mul=1, add=0):
PyoObject.__init__(self, mul, add)
self._input = input
self._feedback = feedback
self._cutoff = cutoff
self._bal = bal
self._in_fader = InputFader(input)
in_fader, feedback, cutoff, bal, mul, add, lmax = convertArgsToLists(self._in_fader, feedback, cutoff, bal, mul, add)
self._base_objs = [WGVerb_base(wrap(in_fader,i), wrap(feedback,i), wrap(cutoff,i), wrap(bal,i), wrap(mul,i), wrap(add,i)) for i in range(lmax)]
def setInput(self, x, fadetime=0.05):
"""
Replace the `input` attribute.
:Args:
x : PyoObject
New signal to process.
fadetime : float, optional
Crossfade time between old and new input. Defaults to 0.05.
"""
self._input = x
self._in_fader.setInput(x, fadetime)
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 setCutoff(self, x):
"""
Replace the `cutoff` attribute.
:Args:
x : float or PyoObject
New `cutoff` attribute.
"""
self._cutoff = x
x, lmax = convertArgsToLists(x)
[obj.setCutoff(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.setMix(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', 'feedback', self._feedback),
SLMap(500., 15000., 'log', 'cutoff', self._cutoff),
SLMap(0., 1., 'lin', 'bal', self._bal),
SLMapMul(self._mul)]
PyoObject.ctrl(self, map_list, title, wxnoserver)
@property
def input(self):
"""PyoObject. Input signal to process."""
return self._input
@input.setter
def input(self, x): self.setInput(x)
@property
def feedback(self):
"""float or PyoObject. Amount of output signal sent back into the delay lines."""
return self._feedback
@feedback.setter
def feedback(self, x): self.setFeedback(x)
@property
def cutoff(self):
"""float or PyoObject. Lowpass filter cutoff in Hz."""
return self._cutoff
@cutoff.setter
def cutoff(self, x): self.setCutoff(x)
@property
def bal(self):
"""float or PyoObject. wet - dry balance."""
return self._bal
@bal.setter
def bal(self, x): self.setBal(x)
class Chorus(PyoObject):
"""
8 modulated delay lines chorus processor.
A chorus effect occurs when individual sounds with roughly the same timbre and
nearly (but never exactly) the same pitch converge and are perceived as one.
:Parent: :py:class:`PyoObject`
:Args:
input : PyoObject
Input signal to process.
depth : float or PyoObject, optional
Chorus depth, between 0 and 5. Defaults to 1.
feedback : float or PyoObject, optional
Amount of output signal sent back into the delay lines.
Defaults to 0.25.
bal : float or PyoObject, optional
Balance between wet and dry signals, between 0 and 1. 0 means no
chorus. Defaults to 0.5.
>>> s = Server().boot()
>>> s.start()
>>> sf = SfPlayer(SNDS_PATH + '/transparent.aif', loop=True, mul=.5)
>>> chor = Chorus(sf, depth=[1.5,1.6], feedback=0.5, bal=0.5).out()
"""
def __init__(self, input, depth=1, feedback=0.25, bal=0.5, mul=1, add=0):
PyoObject.__init__(self, mul, add)
self._input = input
self._depth = depth
self._feedback = feedback
self._bal = bal
self._in_fader = InputFader(input)
in_fader, depth, feedback, bal, mul, add, lmax = convertArgsToLists(self._in_fader, depth, feedback, bal, mul, add)
self._base_objs = [Chorus_base(wrap(in_fader,i), wrap(depth,i), wrap(feedback,i), wrap(bal,i), wrap(mul,i), wrap(add,i)) for i in range(lmax)]
def setInput(self, x, fadetime=0.05):
"""
Replace the `input` attribute.
:Args:
x : PyoObject
New signal to process.
fadetime : float, optional
Crossfade time between old and new input. Defaults to 0.05.
"""
self._input = x
self._in_fader.setInput(x, fadetime)
def setDepth(self, x):
"""
Replace the `depth` attribute.
:Args:
x : float or PyoObject
New `depth` attribute.
"""
self._depth = x
x, lmax = convertArgsToLists(x)
[obj.setDepth(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 setBal(self, x):
"""
Replace the `bal` attribute.
:Args:
x : float or PyoObject
New `bal` attribute.
"""
self._bal = x
x, lmax = convertArgsToLists(x)
[obj.setMix(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., 5., 'lin', 'depth', self._depth),
SLMap(0., 1., 'lin', 'feedback', self._feedback),
SLMap(0., 1., 'lin', 'bal', self._bal),
SLMapMul(self._mul)]
PyoObject.ctrl(self, map_list, title, wxnoserver)
@property
def input(self):
"""PyoObject. Input signal to process."""
return self._input
@input.setter
def input(self, x): self.setInput(x)
@property
def depth(self):
"""float or PyoObject. Chorus depth, between 0 and 5."""
return self._depth
@depth.setter
def depth(self, x): self.setDepth(x)
@property
def feedback(self):
"""float or PyoObject. Amount of output signal sent back into the delay lines."""
return self._feedback
@feedback.setter
def feedback(self, x): self.setFeedback(x)
@property
def bal(self):
"""float or PyoObject. wet - dry balance."""
return self._bal
@bal.setter
def bal(self, x): self.setBal(x)
class Harmonizer(PyoObject):
"""
Generates harmonizing voices in synchrony with its audio input.
:Parent: :py:class:`PyoObject`
:Args:
input : PyoObject
Input signal to process.
transpo : float or PyoObject, optional
Transposition factor in semitone. Defaults to -7.0.
feedback : float or PyoObject, optional
Amount of output signal sent back into the delay line.
Defaults to 0.
winsize : float, optional
Window size in seconds (max = 1.0).
Defaults to 0.1.
>>> s = Server().boot()
>>> s.start()
>>> sf = SfPlayer(SNDS_PATH + '/transparent.aif', loop=True, mul=.3).out()
>>> harm = Harmonizer(sf, transpo=-5, winsize=0.05).out(1)
"""
def __init__(self, input, transpo=-7.0, feedback=0, winsize=0.1, mul=1, add=0):
PyoObject.__init__(self, mul, add)
self._input = input
self._transpo = transpo
self._feedback = feedback
self._winsize = winsize
self._in_fader = InputFader(input)
in_fader, transpo, feedback, winsize, mul, add, lmax = convertArgsToLists(self._in_fader, transpo, feedback, winsize, mul, add)
self._base_objs = [Harmonizer_base(wrap(in_fader,i), wrap(transpo,i), wrap(feedback,i), wrap(winsize,i), wrap(mul,i), wrap(add,i)) for i in range(lmax)]
def setInput(self, x, fadetime=0.05):
"""
Replace the `input` attribute.
:Args:
x : PyoObject
New signal to process.
fadetime : float, optional
Crossfade time between old and new input. Defaults to 0.05.
"""
self._input = x
self._in_fader.setInput(x, fadetime)
def setTranspo(self, x):
"""
Replace the `transpo` attribute.
:Args:
x : float or PyoObject
New `transpo` attribute.
"""
self._transpo = x
x, lmax = convertArgsToLists(x)
[obj.setTranspo(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 setWinsize(self, x):
"""
Replace the `winsize` attribute.
:Args:
x : float
New `winsize` attribute.
"""
self._winsize = x
x, lmax = convertArgsToLists(x)
[obj.setWinsize(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(-24.0, 24.0, 'lin', 'transpo', self._transpo),
SLMap(0., 1., 'lin', 'feedback', self._feedback),
SLMapMul(self._mul)]
PyoObject.ctrl(self, map_list, title, wxnoserver)
@property
def input(self):
"""PyoObject. Input signal to delayed."""
return self._input
@input.setter
def input(self, x): self.setInput(x)
@property
def transpo(self):
"""float or PyoObject. Transposition factor in semitone."""
return self._transpo
@transpo.setter
def transpo(self, x): self.setTranspo(x)
@property
def feedback(self):
"""float or PyoObject. Amount of output signal sent back into the delay line."""
return self._feedback
@feedback.setter
def feedback(self, x): self.setFeedback(x)
@property
def winsize(self):
"""float. Window size in seconds (max = 1.0)."""
return self._winsize
@winsize.setter
def winsize(self, x): self.setWinsize(x)
class Delay1(PyoObject):
"""
Delays a signal by one sample.
:Parent: :py:class:`PyoObject`
:Args:
input : PyoObject
Input signal to process.
>>> s = Server().boot()
>>> s.start()
>>> # 50th order FIR lowpass filter
>>> order = 50
>>> objs = [Noise(.3)]
>>> for i in range(order):
... objs.append(Delay1(objs[-1], add=objs[-1]))
... objs.append(objs[-1] * 0.5)
>>> out = Sig(objs[-1]).out()
"""
def __init__(self, input, mul=1, add=0):
PyoObject.__init__(self, mul, add)
self._input = input
self._in_fader = InputFader(input)
in_fader, mul, add, lmax = convertArgsToLists(self._in_fader, mul, add)
self._base_objs = [Delay1_base(wrap(in_fader,i), wrap(mul,i), wrap(add,i)) for i in range(lmax)]
def setInput(self, x, fadetime=0.05):
"""
Replace the `input` attribute.
:Args:
x : PyoObject
New signal to process.
fadetime : float, optional
Crossfade time between old and new input. Default to 0.05.
"""
self._input = x
self._in_fader.setInput(x, fadetime)
@property
def input(self):
"""PyoObject. Input signal to delayed."""
return self._input
@input.setter
def input(self, x): self.setInput(x)
|