'GstMultiFileSink' has no property named 'multifilesink'

classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

'GstMultiFileSink' has no property named 'multifilesink'

Shubham Shrivastava
 g_object_set(G_OBJECT (data.filesink),"post-messages", TRUE, "next-file", 4,"max-file-size",500000,"multifilesink","async",0,NULL);  

 GLib-GObject-WARNING **: g_object_set_valist: object class 'GstMultiFileSink' has no property named 'multifilesink'

_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: 'GstMultiFileSink' has no property named 'multifilesink'

Gst-Geek
There is not property "multifilesink" in multifilesink.
 g_object_set(G_OBJECT (data.filesink),"post-messages", TRUE, "next-file",
4,"max-file-size",500000,"multifilesink","async",0,NULL);  

Correct is
 g_object_set(G_OBJECT (data.filesink),"post-messages", TRUE, "next-file",
4,"max-file-size",500000, "async",0,NULL);  



--
Sent from: http://gstreamer-devel.966125.n4.nabble.com/
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

AW: 'GstMultiFileSink' has no property named 'multifilesink'

Thornton, Keith
In reply to this post by Shubham Shrivastava

Hi, the warning is correct, multifilesink has no parameter multifilesink you have the parameter pairs

"post-messages", TRUE

"next-file", 4

,"max-file-size",500000

And

"async",0

What is the multifilesink there for?

 

 

Von: gstreamer-devel [mailto:[hidden email]] Im Auftrag von Shubham Shrivastava
Gesendet: Mittwoch, 22. August 2018 10:17
An: [hidden email]
Betreff: 'GstMultiFileSink' has no property named 'multifilesink'

 

 g_object_set(G_OBJECT (data.filesink),"post-messages", TRUE, "next-file", 4,"max-file-size",500000,"multifilesink","async",0,NULL);  

 GLib-GObject-WARNING **: g_object_set_valist: object class 'GstMultiFileSink' has no property named 'multifilesink'


_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: 'GstMultiFileSink' has no property named 'multifilesink'

Nicolas Dufresne-5
In reply to this post by Shubham Shrivastava


Le mer. 22 août 2018 04:27, Shubham Shrivastava <[hidden email]> a écrit :
 g_object_set(G_OBJECT (data.filesink),"post-messages", TRUE, "next-file", 4,"max-file-size",500000,"multifilesink","async",0,NULL);  

 GLib-GObject-WARNING **: g_object_set_valist: object class 'GstMultiFileSink' has no property named 'multifilesink'

This error is super clear and exact. Remove the "multifilesink" parameter from your g_object_set() call.

_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel

_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel