Transmits a video frame via pipeline using the specified parameters or drop it
git clone https://github.com/abitcipher/gstpercolator
cd gstpercolator
cargo build --release
export GST_PLUGIN_PATH="$(pwd)/target/release:$GST_PLUGIN_PATH"
...and now you can launch plug to you pipline
translator
gst-launch-1.0 -v filesrc location=tmp/output.h265.mp4 ! qtdemux ! h265parse ! rtph265pay config-interval=1 pt=96 ! udpsink host=127.0.0.1 port=5000receiver
gst-launch-1.0 -v udpsrc port=5000 ! application/x-rtp,clock-rate=90000,payload=96 ! rtpjitterbuffer ! rtph265depay ! h265parse ! avdec_h265 ! videoconvert ! percolator percolate=1 ! xvimagesink