9 lines
164 B
Go
9 lines
164 B
Go
package gstreamer
|
|
|
|
import (
|
|
"github.com/go-gst/go-gst/gst"
|
|
)
|
|
|
|
func gstreamerBinToDot(bin *gst.Bin) string {
|
|
return bin.DebugBinToDotData(gst.DebugGraphShowAll)
|
|
}
|