gstlal 1.13.0
Loading...
Searching...
No Matches
python.utilities.element_registry.ElementRegistry Class Reference

Public Member Functions

 channelgram (self, *srcs, **kwargs)
 spectrumplot (self, *srcs, **kwargs)
 histogram (self, *srcs, **kwargs)
 uridecodebin (self, *srcs, **kwargs)
 framecppchanneldemux (self, *srcs, **kwargs)
 framecppchannelmux (self, *srcs, **kwargs)
 framecppfilesink (self, *srcs, **kwargs)
 multifilesink (self, *srcs, **kwargs)
 capsfilter (self, *srcs, **kwargs)
 capssetter (self, *srcs, **kwargs)
 statevector (self, *srcs, **kwargs)
 taginject (self, *srcs, **kwargs)
 firfilter (self, *srcs, **kwargs)
 iirfilter (self, *srcs, **kwargs)
 shift (self, *srcs, **kwargs)
 progressreport (self, *srcs, **kwargs)
 injections (self, *srcs, **kwargs)
 audiochebband (self, *srcs, **kwargs)
 audiocheblimit (self, *srcs, **kwargs)
 audioamplify (self, *srcs, **kwargs)
 audioundersample (self, *srcs, **kwargs)
 resample (self, *srcs, **kwargs)
 interpolator (self, *srcs, **kwargs)
 whiten (self, *srcs, **kwargs)
 integrate (self, *srcs, **kwargs)
 tee (self, *srcs, **kwargs)
 adder (self, *srcs, **kwargs)
 multiplier (self, *srcs, **kwargs)
 queue (self, *srcs, **kwargs)
 drop (self, *srcs, **kwargs)
 nofakedisconts (self, *srcs, **kwargs)
 firbank (self, *srcs, **kwargs)
 tdwhiten (self, *srcs, **kwargs)
 trim (self, *srcs, **kwargs)
 mean (self, *srcs, **kwargs)
 abs (self, *srcs, **kwargs)
 pow (self, *srcs, **kwargs)
 reblock (self, *srcs, **kwargs)
 sumsquares (self, *srcs, **kwargs)
 gate (self, *srcs, **kwargs)
 bitvectorgen (self, *srcs, **kwargs)
 matrixmixer (self, *srcs, **kwargs)
 togglecomplex (self, *srcs, **kwargs)
 autochisq (self, *srcs, **kwargs)
 fakesink (self, *srcs, **kwargs)
 filesink (self, *srcs, **kwargs)
 nxydump (self, *srcs, **kwargs)
 nxydumpsink (self, *srcs, **kwargs)
 nxydumpsinktee (self, *srcs, **kwargs)
 triggergen (self, *srcs, **kwargs)
 triggerxmlwritersink (self, *srcs, **kwargs)
 wavenc (self, *srcs, **kwargs)
 vorbisenc (self, *srcs, **kwargs)
 colorspace (self, *srcs, **kwargs)
 theoraenc (self, *srcs, **kwargs)
 oggmux (self, *srcs, **kwargs)
 avimux (self, *srcs, **kwargs)
 audioconvert (self, *srcs, **kwargs)
 audiorate (self, *srcs, **kwargs)
 flacenc (self, *srcs, **kwargs)
 ogmvideosink (self, *srcs, **kwargs)
 videosink (self, *srcs, **kwargs)
 autoaudiosink (self, *srcs, **kwargs)
 playbacksink (self, *srcs, **kwargs)
 deglitcher (self, *srcs, **kwargs)
 appsink (self, *srcs, **kwargs)
 checktimestamps (self, *srcs, **kwargs)
 peak (self, *srcs, **kwargs)
 itac (self, *srcs, **kwargs)
 itacac (self, *srcs, **kwargs)
 trigger (self, *srcs, **kwargs)
 latency (self, *srcs, **kwargs)
 computegamma (self, *srcs, **kwargs)
 bursttriggergen (self, *srcs, **kwargs)
 odctodqv (self, *srcs, **kwargs)
 tcpserversink (self, *srcs, **kwargs)
 htgate (self, *srcs, **kwargs)
 condition (self, *srcs, **kwargs)
 multiband (self, *srcs, **kwargs)
 controlsnksrc (self, *srcs, **kwargs)
 lloid_branch (self, *srcs, **kwargs)
 lloid_snr_slices_to_timeslice_chisq (self, *srcs, **kwargs)
 lloid_snr_chisq_to_triggers (self, *srcs, **kwargs)
 lloid_hoft_to_snr_slices (self, *srcs, **kwargs)

Protected Member Functions

 _attach_element (self, types.FunctionType func, *srcs, **kwargs)

Detailed Description

Class that defines the pass-through behavior of registered pipeparts elements that are called
    as methods of an instance (as opposed to calling the pipeparts functions directly)

    All methods of this class are procedurally generated (except _attach_element), by running the following code
    from the test_stream module:

        print(test_stream.generate_element_mixin())

    Notes:
        Motivation:
            A alternate implementation set attributes dynamically, which though a smaller amount of code, was not
            inspectable before runtime (bad). This mixin class may be less fancy, but it allows for inspection
            which will improve development workflow (and demystify the pass-through methods of Stream class)

        New Elements:
            Since registration happens statically (before runtime), adding a new element to the elements registries will not
            have an effect unless a similar method is added to this Mixin class. However, thanks to the test suite, adding a
            new element will raise a test failure unless this Mixin class is rebuilt.

Definition at line 23 of file element_registry.py.

Member Function Documentation

◆ _attach_element()

python.utilities.element_registry.ElementRegistry._attach_element ( self,
types.FunctionType func,
* srcs,
** kwargs )
protected
Utility function for calling the registered element

        Args:
            func:
            *srcs:
            **kwargs:

        Returns:
            RegisteredElementMixin instance (or subclass instance) with newly attached element

Definition at line 44 of file element_registry.py.

◆ abs()

python.utilities.element_registry.ElementRegistry.abs ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkabs

Definition at line 206 of file element_registry.py.

◆ adder()

python.utilities.element_registry.ElementRegistry.adder ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkadder

Definition at line 170 of file element_registry.py.

◆ appsink()

python.utilities.element_registry.ElementRegistry.appsink ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkappsink

Definition at line 326 of file element_registry.py.

◆ audioamplify()

python.utilities.element_registry.ElementRegistry.audioamplify ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkaudioamplify

Definition at line 142 of file element_registry.py.

◆ audiochebband()

python.utilities.element_registry.ElementRegistry.audiochebband ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkaudiochebband

Definition at line 134 of file element_registry.py.

◆ audiocheblimit()

python.utilities.element_registry.ElementRegistry.audiocheblimit ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkaudiocheblimit

Definition at line 138 of file element_registry.py.

◆ audioconvert()

python.utilities.element_registry.ElementRegistry.audioconvert ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkaudioconvert

Definition at line 294 of file element_registry.py.

◆ audiorate()

python.utilities.element_registry.ElementRegistry.audiorate ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkaudiorate

Definition at line 298 of file element_registry.py.

◆ audioundersample()

python.utilities.element_registry.ElementRegistry.audioundersample ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkaudioundersample

Definition at line 146 of file element_registry.py.

◆ autoaudiosink()

python.utilities.element_registry.ElementRegistry.autoaudiosink ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkautoaudiosink

Definition at line 314 of file element_registry.py.

◆ autochisq()

python.utilities.element_registry.ElementRegistry.autochisq ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkautochisq

Definition at line 238 of file element_registry.py.

◆ avimux()

python.utilities.element_registry.ElementRegistry.avimux ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkavimux

Definition at line 290 of file element_registry.py.

◆ bitvectorgen()

python.utilities.element_registry.ElementRegistry.bitvectorgen ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkbitvectorgen

Definition at line 226 of file element_registry.py.

◆ bursttriggergen()

python.utilities.element_registry.ElementRegistry.bursttriggergen ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkbursttriggergen

Definition at line 358 of file element_registry.py.

◆ capsfilter()

python.utilities.element_registry.ElementRegistry.capsfilter ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkcapsfilter

Definition at line 98 of file element_registry.py.

◆ capssetter()

python.utilities.element_registry.ElementRegistry.capssetter ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkcapssetter

Definition at line 102 of file element_registry.py.

◆ channelgram()

python.utilities.element_registry.ElementRegistry.channelgram ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkchannelgram

Definition at line 66 of file element_registry.py.

◆ checktimestamps()

python.utilities.element_registry.ElementRegistry.checktimestamps ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkchecktimestamps

Definition at line 330 of file element_registry.py.

◆ colorspace()

python.utilities.element_registry.ElementRegistry.colorspace ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkcolorspace

Definition at line 278 of file element_registry.py.

◆ computegamma()

python.utilities.element_registry.ElementRegistry.computegamma ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkcomputegamma

Definition at line 354 of file element_registry.py.

◆ condition()

python.utilities.element_registry.ElementRegistry.condition ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts_condition.mkcondition

Definition at line 374 of file element_registry.py.

◆ controlsnksrc()

python.utilities.element_registry.ElementRegistry.controlsnksrc ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function lloidparts.mkcontrolsnksrc

Definition at line 382 of file element_registry.py.

◆ deglitcher()

python.utilities.element_registry.ElementRegistry.deglitcher ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkdeglitcher

Definition at line 322 of file element_registry.py.

◆ drop()

python.utilities.element_registry.ElementRegistry.drop ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkdrop

Definition at line 182 of file element_registry.py.

◆ fakesink()

python.utilities.element_registry.ElementRegistry.fakesink ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkfakesink

Definition at line 242 of file element_registry.py.

◆ filesink()

python.utilities.element_registry.ElementRegistry.filesink ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkfilesink

Definition at line 246 of file element_registry.py.

◆ firbank()

python.utilities.element_registry.ElementRegistry.firbank ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkfirbank

Definition at line 190 of file element_registry.py.

◆ firfilter()

python.utilities.element_registry.ElementRegistry.firfilter ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkfirfilter

Definition at line 114 of file element_registry.py.

◆ flacenc()

python.utilities.element_registry.ElementRegistry.flacenc ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkflacenc

Definition at line 302 of file element_registry.py.

◆ framecppchanneldemux()

python.utilities.element_registry.ElementRegistry.framecppchanneldemux ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkframecppchanneldemux

Definition at line 82 of file element_registry.py.

◆ framecppchannelmux()

python.utilities.element_registry.ElementRegistry.framecppchannelmux ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkframecppchannelmux_from_list

Definition at line 86 of file element_registry.py.

◆ framecppfilesink()

python.utilities.element_registry.ElementRegistry.framecppfilesink ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkframecppfilesink

Definition at line 90 of file element_registry.py.

◆ gate()

python.utilities.element_registry.ElementRegistry.gate ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkgate

Definition at line 222 of file element_registry.py.

◆ histogram()

python.utilities.element_registry.ElementRegistry.histogram ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkhistogram

Definition at line 74 of file element_registry.py.

◆ htgate()

python.utilities.element_registry.ElementRegistry.htgate ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts_condition.mkhtgate

Definition at line 370 of file element_registry.py.

◆ iirfilter()

python.utilities.element_registry.ElementRegistry.iirfilter ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkiirfilter

Definition at line 118 of file element_registry.py.

◆ injections()

python.utilities.element_registry.ElementRegistry.injections ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkinjections

Definition at line 130 of file element_registry.py.

◆ integrate()

python.utilities.element_registry.ElementRegistry.integrate ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkintegrate

Definition at line 162 of file element_registry.py.

◆ interpolator()

python.utilities.element_registry.ElementRegistry.interpolator ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkinterpolator

Definition at line 154 of file element_registry.py.

◆ itac()

python.utilities.element_registry.ElementRegistry.itac ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkitac

Definition at line 338 of file element_registry.py.

◆ itacac()

python.utilities.element_registry.ElementRegistry.itacac ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkitacac

Definition at line 342 of file element_registry.py.

◆ latency()

python.utilities.element_registry.ElementRegistry.latency ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mklatency

Definition at line 350 of file element_registry.py.

◆ lloid_branch()

python.utilities.element_registry.ElementRegistry.lloid_branch ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function lloidparts.mkLLOIDbranch

Definition at line 386 of file element_registry.py.

◆ lloid_hoft_to_snr_slices()

python.utilities.element_registry.ElementRegistry.lloid_hoft_to_snr_slices ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function lloidparts.mkLLOIDhoftToSnrSlices

Definition at line 398 of file element_registry.py.

◆ lloid_snr_chisq_to_triggers()

python.utilities.element_registry.ElementRegistry.lloid_snr_chisq_to_triggers ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function lloidparts.mkLLOIDSnrChisqToTriggers

Definition at line 394 of file element_registry.py.

◆ lloid_snr_slices_to_timeslice_chisq()

python.utilities.element_registry.ElementRegistry.lloid_snr_slices_to_timeslice_chisq ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function lloidparts.mkLLOIDSnrSlicesToTimeSliceChisq

Definition at line 390 of file element_registry.py.

◆ matrixmixer()

python.utilities.element_registry.ElementRegistry.matrixmixer ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkmatrixmixer

Definition at line 230 of file element_registry.py.

◆ mean()

python.utilities.element_registry.ElementRegistry.mean ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkmean

Definition at line 202 of file element_registry.py.

◆ multiband()

python.utilities.element_registry.ElementRegistry.multiband ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts_condition.mkmultiband

Definition at line 378 of file element_registry.py.

◆ multifilesink()

python.utilities.element_registry.ElementRegistry.multifilesink ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkmultifilesink

Definition at line 94 of file element_registry.py.

◆ multiplier()

python.utilities.element_registry.ElementRegistry.multiplier ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkmultiplier

Definition at line 174 of file element_registry.py.

◆ nofakedisconts()

python.utilities.element_registry.ElementRegistry.nofakedisconts ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mknofakedisconts

Definition at line 186 of file element_registry.py.

◆ nxydump()

python.utilities.element_registry.ElementRegistry.nxydump ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mknxydump

Definition at line 250 of file element_registry.py.

◆ nxydumpsink()

python.utilities.element_registry.ElementRegistry.nxydumpsink ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mknxydumpsink

Definition at line 254 of file element_registry.py.

◆ nxydumpsinktee()

python.utilities.element_registry.ElementRegistry.nxydumpsinktee ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mknxydumpsinktee

Definition at line 258 of file element_registry.py.

◆ odctodqv()

python.utilities.element_registry.ElementRegistry.odctodqv ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkodctodqv

Definition at line 362 of file element_registry.py.

◆ oggmux()

python.utilities.element_registry.ElementRegistry.oggmux ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkoggmux

Definition at line 286 of file element_registry.py.

◆ ogmvideosink()

python.utilities.element_registry.ElementRegistry.ogmvideosink ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkogmvideosink

Definition at line 306 of file element_registry.py.

◆ peak()

python.utilities.element_registry.ElementRegistry.peak ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkpeak

Definition at line 334 of file element_registry.py.

◆ playbacksink()

python.utilities.element_registry.ElementRegistry.playbacksink ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkplaybacksink

Definition at line 318 of file element_registry.py.

◆ pow()

python.utilities.element_registry.ElementRegistry.pow ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkpow

Definition at line 210 of file element_registry.py.

◆ progressreport()

python.utilities.element_registry.ElementRegistry.progressreport ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkprogressreport

Definition at line 126 of file element_registry.py.

◆ queue()

python.utilities.element_registry.ElementRegistry.queue ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkqueue

Definition at line 178 of file element_registry.py.

◆ reblock()

python.utilities.element_registry.ElementRegistry.reblock ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkreblock

Definition at line 214 of file element_registry.py.

◆ resample()

python.utilities.element_registry.ElementRegistry.resample ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkresample

Definition at line 150 of file element_registry.py.

◆ shift()

python.utilities.element_registry.ElementRegistry.shift ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkshift

Definition at line 122 of file element_registry.py.

◆ spectrumplot()

python.utilities.element_registry.ElementRegistry.spectrumplot ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkspectrumplot

Definition at line 70 of file element_registry.py.

◆ statevector()

python.utilities.element_registry.ElementRegistry.statevector ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkstatevector

Definition at line 106 of file element_registry.py.

◆ sumsquares()

python.utilities.element_registry.ElementRegistry.sumsquares ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mksumsquares

Definition at line 218 of file element_registry.py.

◆ taginject()

python.utilities.element_registry.ElementRegistry.taginject ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mktaginject

Definition at line 110 of file element_registry.py.

◆ tcpserversink()

python.utilities.element_registry.ElementRegistry.tcpserversink ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mktcpserversink

Definition at line 366 of file element_registry.py.

◆ tdwhiten()

python.utilities.element_registry.ElementRegistry.tdwhiten ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mktdwhiten

Definition at line 194 of file element_registry.py.

◆ tee()

python.utilities.element_registry.ElementRegistry.tee ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mktee

Definition at line 166 of file element_registry.py.

◆ theoraenc()

python.utilities.element_registry.ElementRegistry.theoraenc ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mktheoraenc

Definition at line 282 of file element_registry.py.

◆ togglecomplex()

python.utilities.element_registry.ElementRegistry.togglecomplex ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mktogglecomplex

Definition at line 234 of file element_registry.py.

◆ trigger()

python.utilities.element_registry.ElementRegistry.trigger ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mktrigger

Definition at line 346 of file element_registry.py.

◆ triggergen()

python.utilities.element_registry.ElementRegistry.triggergen ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mktriggergen

Definition at line 262 of file element_registry.py.

◆ triggerxmlwritersink()

python.utilities.element_registry.ElementRegistry.triggerxmlwritersink ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mktriggerxmlwritersink

Definition at line 266 of file element_registry.py.

◆ trim()

python.utilities.element_registry.ElementRegistry.trim ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mktrim

Definition at line 198 of file element_registry.py.

◆ uridecodebin()

python.utilities.element_registry.ElementRegistry.uridecodebin ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkuridecodebin

Definition at line 78 of file element_registry.py.

◆ videosink()

python.utilities.element_registry.ElementRegistry.videosink ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkvideosink

Definition at line 310 of file element_registry.py.

◆ vorbisenc()

python.utilities.element_registry.ElementRegistry.vorbisenc ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkvorbisenc

Definition at line 274 of file element_registry.py.

◆ wavenc()

python.utilities.element_registry.ElementRegistry.wavenc ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkwavenc

Definition at line 270 of file element_registry.py.

◆ whiten()

python.utilities.element_registry.ElementRegistry.whiten ( self,
* srcs,
** kwargs )
Automatically generated pass-through method for function pipeparts.mkwhiten

Definition at line 158 of file element_registry.py.


The documentation for this class was generated from the following file: