Video Compression

VideoNerd

Secure Reliable Transport protocol (SRT) is a royalty-free (under MPL-2.0 license) protocol tailored for transmission media in low latency applications (e.g., Cloud Gaming, remote control of autonomous vehicles), i wrote a brief introduction to SRT:  pdf-document 

 

ffmpeg supports SRT protocol. To set a receiver you can use the following command:

          ffplay -v panic -i srt://127.0.0.1:1971?mode=listener

Then start a sender:

ffmpeg -re -i test.h265 -c:v copy -f mpegts srt://127.0.0.1:1971

Leave a Reply

Your email address will not be published. Required fields are marked *