summaryrefslogtreecommitdiffstats
path: root/pulsecaster
diff options
context:
space:
mode:
authorPaul W. Frields <stickster@gmail.com>2009-05-24 18:12:05 -0400
committerPaul W. Frields <stickster@gmail.com>2009-05-24 18:12:05 -0400
commit4fd3e65219792d89d985c996143dac00211f428d (patch)
tree50517d2bb5e75692dfee0f0c24883778dc4eab98 /pulsecaster
parent33e85570933f2d0836202077be6c378b955283d8 (diff)
downloadpulsecaster-4fd3e65219792d89d985c996143dac00211f428d.tar.gz
pulsecaster-4fd3e65219792d89d985c996143dac00211f428d.tar.xz
pulsecaster-4fd3e65219792d89d985c996143dac00211f428d.zip
Add placeholder for gstreamer work
Diffstat (limited to 'pulsecaster')
-rw-r--r--pulsecaster/__init__.py1
-rw-r--r--pulsecaster/gstreamer.py27
2 files changed, 28 insertions, 0 deletions
diff --git a/pulsecaster/__init__.py b/pulsecaster/__init__.py
index 4204c27..15026c0 100644
--- a/pulsecaster/__init__.py
+++ b/pulsecaster/__init__.py
@@ -21,3 +21,4 @@
from config import *
from ui import *
+from gstreamer import *
diff --git a/pulsecaster/gstreamer.py b/pulsecaster/gstreamer.py
new file mode 100644
index 0000000..5576903
--- /dev/null
+++ b/pulsecaster/gstreamer.py
@@ -0,0 +1,27 @@
+#!/usr/bin/python
+#
+# Copyright (C) 2009 Paul W. Frields
+#
+# This program 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.
+#
+# This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
+#
+#
+# Author: Paul W. Frields <stickster@gmail.com>
+
+
+import gst
+
+
+class PulseCatcherPipeline:
+ def __init__(self):
+ pass