├── .gitignore ├── README.html ├── README.org ├── capabilities-example.py ├── capabilities-playbin-example.py ├── capabilities-resolution-example.py ├── dynamic-ghostpad-example.py ├── functions.js ├── gst-inspect-playbin.txt ├── index.html ├── index.org ├── pipeline-block.svg ├── pipeline-branch-block.svg ├── pipeline-branch-example.py ├── pipeline-example.py ├── playbin-block.svg ├── playbin-example-audio.py ├── playbin-example-cliplayer.py ├── playbin-example-video.py ├── playbin-pads-block.svg ├── pygst-tutorial.html ├── pygst-tutorial.org ├── pygst-tutorial.pdf ├── seeking-example.py ├── setup.org ├── sink-src-block.svg ├── style.css ├── tvlogo.png ├── videomixer-example.py ├── videotestsrc-frame.jpg └── webcam-example.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/.gitignore -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/README.html -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/README.org -------------------------------------------------------------------------------- /capabilities-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/capabilities-example.py -------------------------------------------------------------------------------- /capabilities-playbin-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/capabilities-playbin-example.py -------------------------------------------------------------------------------- /capabilities-resolution-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/capabilities-resolution-example.py -------------------------------------------------------------------------------- /dynamic-ghostpad-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/dynamic-ghostpad-example.py -------------------------------------------------------------------------------- /functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/functions.js -------------------------------------------------------------------------------- /gst-inspect-playbin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/gst-inspect-playbin.txt -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/index.html -------------------------------------------------------------------------------- /index.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/index.org -------------------------------------------------------------------------------- /pipeline-block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/pipeline-block.svg -------------------------------------------------------------------------------- /pipeline-branch-block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/pipeline-branch-block.svg -------------------------------------------------------------------------------- /pipeline-branch-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/pipeline-branch-example.py -------------------------------------------------------------------------------- /pipeline-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/pipeline-example.py -------------------------------------------------------------------------------- /playbin-block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/playbin-block.svg -------------------------------------------------------------------------------- /playbin-example-audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/playbin-example-audio.py -------------------------------------------------------------------------------- /playbin-example-cliplayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/playbin-example-cliplayer.py -------------------------------------------------------------------------------- /playbin-example-video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/playbin-example-video.py -------------------------------------------------------------------------------- /playbin-pads-block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/playbin-pads-block.svg -------------------------------------------------------------------------------- /pygst-tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/pygst-tutorial.html -------------------------------------------------------------------------------- /pygst-tutorial.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/pygst-tutorial.org -------------------------------------------------------------------------------- /pygst-tutorial.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/pygst-tutorial.pdf -------------------------------------------------------------------------------- /seeking-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/seeking-example.py -------------------------------------------------------------------------------- /setup.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/setup.org -------------------------------------------------------------------------------- /sink-src-block.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/sink-src-block.svg -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/style.css -------------------------------------------------------------------------------- /tvlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/tvlogo.png -------------------------------------------------------------------------------- /videomixer-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/videomixer-example.py -------------------------------------------------------------------------------- /videotestsrc-frame.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/videotestsrc-frame.jpg -------------------------------------------------------------------------------- /webcam-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettviren/pygst-tutorial-org/HEAD/webcam-example.py --------------------------------------------------------------------------------