diff options
author | kjeyapal@akamai.com <kjeyapal@akamai.com> | 2018-11-28 22:36:17 +0530 |
---|---|---|
committer | Karthick J <kjeyapal@akamai.com> | 2018-12-02 19:14:37 +0530 |
commit | c32aad19614ca42fe67efeced893332dae09a1e3 (patch) | |
tree | b8b506e586ae07d4d40ca0ecab580fa6dd63046c /doc/muxers.texi | |
parent | 6c1e1242012e116e2622ec7a9f56972eaf5c15f8 (diff) | |
download | ffmpeg-c32aad19614ca42fe67efeced893332dae09a1e3.tar.gz |
avformat/dashenc: Added an option to ignore io errors
When dashenc has to run for long duration(say 24x7 live stream), one can enable this option to ignore the io failure of few segment's upload due to an intermittent network issues.
When the network connection recovers dashenc will continue with the upload of the current segments, leading to the recovery of the stream.
Diffstat (limited to 'doc/muxers.texi')
-rw-r--r-- | doc/muxers.texi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/muxers.texi b/doc/muxers.texi index a02ac01b55..f1cc6f5fee 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -300,6 +300,9 @@ If this flag is set, the dash segment files will be in in ISOBMFF format. @item webm If this flag is set, the dash segment files will be in in WebM format. +@item -ignore_io_errors @var{ignore_io_errors} +Ignore IO errors during open and write. Useful for long-duration runs with network output. + @end table @anchor{framecrc} |