From fb9af72ef8cdb12fcfeeeb88a4abdb8a6bcd23fb Mon Sep 17 00:00:00 2001 From: Marcel Date: Wed, 5 Apr 2017 08:59:45 +0200 Subject: [PATCH] Fix Markdown --- FAQ.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/FAQ.md b/FAQ.md index 9f55931..8101f7a 100644 --- a/FAQ.md +++ b/FAQ.md @@ -1,21 +1,21 @@ -####RTMP stream is not played normally in IE, stream stops after several seconds. +#### RTMP stream is not played normally in IE, stream stops after several seconds. Add this directive to fix the problem - wait_video on; + `wait_video on;` -####I use `pull` directive to get stream from remote location. That works for RTMP clients but does not work for HLS. +#### I use `pull` directive to get stream from remote location. That works for RTMP clients but does not work for HLS. Currently HLS clients do not trigger any events. You cannot pull or exec when HLS client connects to server. However you can use static directives `exec_static`, `pull ... static` to pull the stream always. -####Seek does not work with flv files recorded by the module. +#### Seek does not work with flv files recorded by the module. To make the files seekable add flv metadata with external software like yamdi, flvmeta or ffmpeg. - exec_record_done yamdi -i $path -o /var/videos/$basename; + `exec_record_done yamdi -i $path -o /var/videos/$basename;` -####Published stream is missing from stats page after some time and clients fail to connect +#### Published stream is missing from stats page after some time and clients fail to connect Check if you use multiple workers in nginx (`worker_processes`). In such case you have to enable: - rtmp_auto_push on; \ No newline at end of file + `rtmp_auto_push on;` \ No newline at end of file