diff --git a/README.md b/README.md index 75c2ce0..b6ec1d9 100644 --- a/README.md +++ b/README.md @@ -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. \ No newline at end of file + - 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.