So I have these two pipelines:
gst-launch-1.0 location=/home/sami/Desktop/python/celine.mp4 ! decodebin ! theoraenc quality=1 ! oggmux ! filesink location=/home/sami/Desktop/new.ogg
and
gst-launch-1.0 location=/home/sami/Desktop/python/celine.mp4 ! decodebin ! theoraenc quality=50 ! oggmux ! filesink location=/home/sami/Desktop/new.ogg
I need to create a python algorithm that could switch between these two pipelines at a predefined pipeline time, without interrupting the video stream.
Someone can help on that ?