├── .gitignore ├── buttons.py ├── cronscript.py ├── gst-phone ├── initscript ├── log.py ├── lohmann.py ├── module ├── 2013-07-01 16.42.55.jpg ├── 2013-07-01 17.10.26.jpg ├── 2013-07-01 17.10.32.jpg ├── 2013-07-01 17.45.53.jpg ├── 2013-07-01 17.58.00.jpg ├── 2013-07-01 18.02.04.jpg ├── 2013-07-01 18.31.07.jpg ├── 2013-07-01 19.22.54.jpg ├── 2013-07-01 21.57.46.jpg ├── plan1.jpg ├── plan2.jpg └── raspberrypirev2pinout.jpg ├── monitor.py ├── paintner.py ├── ring.py ├── sandbox └── omxenctest └── streaming ├── capture ├── lohmann-to-paintner ├── paintner-to-lohmann └── play /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.conf 3 | -------------------------------------------------------------------------------- /buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/gstreamer-phone/HEAD/buttons.py -------------------------------------------------------------------------------- /cronscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/gstreamer-phone/HEAD/cronscript.py -------------------------------------------------------------------------------- /gst-phone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/gstreamer-phone/HEAD/gst-phone -------------------------------------------------------------------------------- /initscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/gstreamer-phone/HEAD/initscript -------------------------------------------------------------------------------- /log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/gstreamer-phone/HEAD/log.py -------------------------------------------------------------------------------- /lohmann.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/gstreamer-phone/HEAD/lohmann.py -------------------------------------------------------------------------------- /module/2013-07-01 16.42.55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/gstreamer-phone/HEAD/module/2013-07-01 16.42.55.jpg -------------------------------------------------------------------------------- /module/2013-07-01 17.10.26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/gstreamer-phone/HEAD/module/2013-07-01 17.10.26.jpg -------------------------------------------------------------------------------- /module/2013-07-01 17.10.32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/gstreamer-phone/HEAD/module/2013-07-01 17.10.32.jpg -------------------------------------------------------------------------------- /module/2013-07-01 17.45.53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/gstreamer-phone/HEAD/module/2013-07-01 17.45.53.jpg -------------------------------------------------------------------------------- /module/2013-07-01 17.58.00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/gstreamer-phone/HEAD/module/2013-07-01 17.58.00.jpg -------------------------------------------------------------------------------- /module/2013-07-01 18.02.04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/gstreamer-phone/HEAD/module/2013-07-01 18.02.04.jpg -------------------------------------------------------------------------------- /module/2013-07-01 18.31.07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/gstreamer-phone/HEAD/module/2013-07-01 18.31.07.jpg -------------------------------------------------------------------------------- /module/2013-07-01 19.22.54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/gstreamer-phone/HEAD/module/2013-07-01 19.22.54.jpg -------------------------------------------------------------------------------- /module/2013-07-01 21.57.46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/gstreamer-phone/HEAD/module/2013-07-01 21.57.46.jpg -------------------------------------------------------------------------------- /module/plan1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/gstreamer-phone/HEAD/module/plan1.jpg -------------------------------------------------------------------------------- /module/plan2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/gstreamer-phone/HEAD/module/plan2.jpg -------------------------------------------------------------------------------- /module/raspberrypirev2pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/gstreamer-phone/HEAD/module/raspberrypirev2pinout.jpg -------------------------------------------------------------------------------- /monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/gstreamer-phone/HEAD/monitor.py -------------------------------------------------------------------------------- /paintner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/gstreamer-phone/HEAD/paintner.py -------------------------------------------------------------------------------- /ring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/gstreamer-phone/HEAD/ring.py -------------------------------------------------------------------------------- /sandbox/omxenctest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/gstreamer-phone/HEAD/sandbox/omxenctest -------------------------------------------------------------------------------- /streaming/capture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/gstreamer-phone/HEAD/streaming/capture -------------------------------------------------------------------------------- /streaming/lohmann-to-paintner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/gstreamer-phone/HEAD/streaming/lohmann-to-paintner -------------------------------------------------------------------------------- /streaming/paintner-to-lohmann: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/gstreamer-phone/HEAD/streaming/paintner-to-lohmann -------------------------------------------------------------------------------- /streaming/play: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthiasbock/gstreamer-phone/HEAD/streaming/play --------------------------------------------------------------------------------