Friday, December 7, 2012

Live streaming fixes and a new feature in 0.8.1

Today I introduce 0.8.1 version of nginx-rtmp. Several streaming bugs were fixed including

  • interleaving mode

  • streaming pulled stream

  • mandatory codec headers

  • chunk stream numbers


There's also a new feature implemented in 0.8.1. Directive wait_video disables streaming audio before first video data comes in. When used with wait_key it makes client receive a fully consistent stream starting with a video key and audio data following it. Note however this usually increases connection delay.

Example:

application myapp {
live on;
wait_key on;
wait_video on;
}

No comments:

Post a Comment