awstreamer/gst_pipeline/ds_pipeline.py [22:30]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    def __init__(self, config):
        logger.info("Initializing %s..." % self.__class__.__name__)
        super().__init__(config)

    def build(self, config):
        logger.info("Building %s..." % self.__class__.__name__)

        # Source
        VideoPipeline.add_source(self.graph, config)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



awstreamer/gst_pipeline/dvr_pipeline.py [19:27]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    def __init__(self, config):
        logger.info("Initializing %s..." % self.__class__.__name__)
        super().__init__(config)

    def build(self, config):
        logger.info("Building %s..." % self.__class__.__name__)

        # Source
        VideoPipeline.add_source(self.graph, config)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



