Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- apt-get install graphviz
- GST_DEBUG_DUMP_DOT_DIR=/tmp/gst gst-launch-1.0 ...
- cd /tmp/gst
- dot -Tpng 0.00.24.846778049-gst-launch.PLAYING_PAUSED.dot > pipeline.png
- # or for all files:
- for X in *.dot; do
- dot -Tpng ${X} > ${X}.png
- done
- -----------------
- # or
- export GST_DEBUG_DUMP_DOT_DIR=/tmp/gst
- gst-launch-1.0 ...
- cd /tmp/gst
- dot -Tpng 0.00.24.846778049-gst-launch.PLAYING_PAUSED.dot > pipeline.png
- # or for all files:
- for X in *.dot; do
- dot -Tpng ${X} > ${X}.png
- done
Add Comment
Please, Sign In to add comment