Update README.md

update quickstart example
This commit is contained in:
Avi Zimmerman
2021-03-11 08:28:46 +02:00
committed by GitHub
parent 01157b7eca
commit 9ce4fbdc33

View File

@@ -81,7 +81,7 @@ func main() {
/// Let GStreamer create a pipeline from the parsed launch syntax on the cli.
pipeline, err := gst.NewPipelineFromString(pipelineString)
if err != nil {
fmt.Println("Pipeline string cannot be empty")
fmt.Println(err)
os.Exit(2)
}
@@ -128,4 +128,4 @@ If you find any issues with the bindings or spot areas where things can be impro
- Support for writing GStreamer plugins via the bindings is still a work-in-progress. At the very least I need to write more plugings to find more holes.
- SWIG could be used to fix the need for global interfaces to be matched to C callbacks (most notably the `URIHandler` currently). The limitation present at the moment is URIHandlers can only be implemented ONCE per plugin.
- SWIG could be used to fix the need for global interfaces to be matched to C callbacks (most notably the `URIHandler` currently). The limitation present at the moment is URIHandlers can only be implemented ONCE per plugin.