update stimeout to timeout

This commit is contained in:
Blake Blackshear 2022-07-05 11:55:55 -05:00
parent 5d8c0e43c2
commit b36b63599b
3 changed files with 4 additions and 4 deletions

View File

@ -102,7 +102,7 @@ You will need to remove `nobuffer` flag for Blue Iris RTSP cameras
```yaml ```yaml
ffmpeg: ffmpeg:
input_args: -avoid_negative_ts make_zero -flags low_delay -strict experimental -fflags +genpts+discardcorrupt -rtsp_transport tcp -stimeout 5000000 -use_wallclock_as_timestamps 1 input_args: -avoid_negative_ts make_zero -flags low_delay -strict experimental -fflags +genpts+discardcorrupt -rtsp_transport tcp -timeout 5000000 -use_wallclock_as_timestamps 1
``` ```
### UDP Only Cameras ### UDP Only Cameras
@ -111,5 +111,5 @@ If your cameras do not support TCP connections for RTSP, you can use UDP.
```yaml ```yaml
ffmpeg: ffmpeg:
input_args: -avoid_negative_ts make_zero -fflags +genpts+discardcorrupt -rtsp_transport udp -stimeout 5000000 -use_wallclock_as_timestamps 1 input_args: -avoid_negative_ts make_zero -fflags +genpts+discardcorrupt -rtsp_transport udp -timeout 5000000 -use_wallclock_as_timestamps 1
``` ```

View File

@ -135,7 +135,7 @@ ffmpeg:
# NOTE: See hardware acceleration docs for your specific device # NOTE: See hardware acceleration docs for your specific device
hwaccel_args: [] hwaccel_args: []
# Optional: global input args (default: shown below) # Optional: global input args (default: shown below)
input_args: -avoid_negative_ts make_zero -fflags +genpts+discardcorrupt -rtsp_transport tcp -stimeout 5000000 -use_wallclock_as_timestamps 1 input_args: -avoid_negative_ts make_zero -fflags +genpts+discardcorrupt -rtsp_transport tcp -timeout 5000000 -use_wallclock_as_timestamps 1
# Optional: global output args # Optional: global output args
output_args: output_args:
# Optional: output args for detect streams (default: shown below) # Optional: output args for detect streams (default: shown below)

View File

@ -346,7 +346,7 @@ FFMPEG_INPUT_ARGS_DEFAULT = [
"+genpts+discardcorrupt", "+genpts+discardcorrupt",
"-rtsp_transport", "-rtsp_transport",
"tcp", "tcp",
"-stimeout", "-timeout",
"5000000", "5000000",
"-use_wallclock_as_timestamps", "-use_wallclock_as_timestamps",
"1", "1",