summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul W. Frields <stickster@gmail.com>2009-06-18 22:43:44 -0700
committerPaul W. Frields <stickster@gmail.com>2009-06-18 22:43:44 -0700
commitcc24d79f82b6ceafcc59ec80624da73955d211ca (patch)
tree841998841ef8bfc41710d743b8c60c8daa00912e
parenta657da782540be181a313c9fd7f6e4e6c7c4fafc (diff)
downloadpulsecaster-cc24d79f82b6ceafcc59ec80624da73955d211ca.tar.gz
pulsecaster-cc24d79f82b6ceafcc59ec80624da73955d211ca.tar.xz
pulsecaster-cc24d79f82b6ceafcc59ec80624da73955d211ca.zip
Add more notes on GStreamer details
-rw-r--r--TODO7
1 files changed, 7 insertions, 0 deletions
diff --git a/TODO b/TODO
index bcd12c9..c39e800 100644
--- a/TODO
+++ b/TODO
@@ -1,3 +1,10 @@
TODO:
* Add GStreamer pipeline builder
* Provide CLI interface
+
+NOTES:
+Mixing two sources together using GStreamer "adder" element:
+gst-launch adder name=mix ! pulsesink { filesrc location=05.mp3 ! decodebin ! mix. } { filesrc location=07.mp3 ! decodebin ! mix. }
+
+What I'm doing in this GStreamer pipeline:
+gst-launch adder name=mix ! vorbisenc ! oggmux ! filesink location=blah { pulsesrc ! mix. } { pulsesrc ! mix. }