I'm trying to make a client for https://github.com/voc/voctomix
I need matroskamux for voctomix, but to verify it is working I want that sent to autovideosink/autoaudiosink gst-launch-1.0 \ audiotestsrc wave=ticks ! \ tee name=t \ t. ! queue ! spacescope ! mux. \ t. ! queue ! mux. \ matroskamux name=mux ! \ decodebin name=decoder \ decoder. ! queue ! videoconvert ! autovideosink \ decoder. ! queue ! audioconvert ! autoaudiosink WARNING: erroneous pipeline: could not link spacescope0 to mux Once I get that working, I'll swap out the decodebin with: tcpclientsink host=127.0.0.1 port=10000 which will send it to voctocore, similar to this: gst-launch-1.0 videotestsrc name=videosrc ! video/x-raw,format=I420,width=1280,height=720,framerate=30000/1001,pixel-aspect-ratio=1/1! mux. audiotestsrc wave=ticks name=audiosrc freq=330 ! audio/x-raw,format=S16LE,channels=2,layout=interleaved,rate=48000! mux. matroskamux name=mux ! tcpclientsink host=127.0.0.1 port=10000 A moc voctocore for testing: https://github.com/CarlFK/voctomix-outcasts/blob/master/tests/dummy-server.py -- Carl K _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel |
achievement unlocked! gst-launch-1.0 \ audiotestsrc wave=ticks ! \ audio/x-raw,format=S16LE,channels=2,layout=interleaved,rate=48000 ! \ tee name=t \ t. ! queue ! mux. \ t. ! queue ! spacescope ! \ videoconvert ! video/x-raw,format=I420,width=1280,height=720,framerate=30000/1001,pixel-aspect-ratio=1/1 ! queue ! mux. \ matroskamux name=mux ! \ tcpclientsink host=127.0.0.1 port=10000 On Sat, Dec 22, 2018 at 9:28 PM Carl Karsten <[hidden email]> wrote: I'm trying to make a client for https://github.com/voc/voctomix -- Carl K _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel |
Free forum by Nabble | Edit this page |