diff options
author | MaZderMind <github@mazdermind.de> | 2015-05-11 00:32:50 +0200 |
---|---|---|
committer | MaZderMind <github@mazdermind.de> | 2015-05-11 00:32:50 +0200 |
commit | 031632245e147e4532b252f91e31631570aa0fd3 (patch) | |
tree | 181833f353f7bbcf68a629bf323deba026d2d200 /voctocore/lib/audio/mix.py | |
parent | 10058b623dee99ed54421ff204b51adcc9a379d0 (diff) |
a rudimentary audio pipeline
Diffstat (limited to 'voctocore/lib/audio/mix.py')
-rw-r--r-- | voctocore/lib/audio/mix.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/voctocore/lib/audio/mix.py b/voctocore/lib/audio/mix.py new file mode 100644 index 0000000..bd803b2 --- /dev/null +++ b/voctocore/lib/audio/mix.py @@ -0,0 +1,19 @@ +#!/usr/bin/python3 +import logging +from gi.repository import Gst +from enum import Enum + +from lib.config import Config + +class AudioMix(object): + log = logging.getLogger('VideoMix') + + mixingPipeline = None + + caps = None + names = [] + + selectedSource = 0 + + def __init__(self): + pass |