From 4f44889c652911313c212a4f515c776cec527885 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Wed, 31 Aug 2016 08:55:44 +0200 Subject: [PATCH] Update camera.ffmpeg.markdown --- source/_components/camera.ffmpeg.markdown | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/_components/camera.ffmpeg.markdown b/source/_components/camera.ffmpeg.markdown index d4496aa6c88..4e2ea5cca6d 100644 --- a/source/_components/camera.ffmpeg.markdown +++ b/source/_components/camera.ffmpeg.markdown @@ -50,5 +50,8 @@ First check, if your stream playable by ffmpeg with (use option `-an` or `-vn` t ``` ffmpeg -i INPUT -an -f null - ``` -Now you can see what going wrong. +Now you can see what going wrong. Following list could be help to solve your trouble: + +- `[rtsp @ ...] UDP timeout, retrying with TCP`: You need to set rtsp transport in config with: `input: -rtsp_transport tcp -i INPUT` +- `[rtsp @ ...] Could not find codec parameters for stream 0 (Video: ..., none): unspecified size`: FFmpeg need more data or time for autodetect. You can set the 'analyzeduration' and/or 'probesize' option, play with this value. If you now the needed value you can set it to config with: `input: -analyzeduration xy -probesize xy tcp -i INPUT`. More info about that on [ffmpeg](https://www.ffmpeg.org/ffmpeg-formats.html#Description).