diff options
-rwxr-xr-x | tools/ipcam_rtsp2hls.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/ipcam_rtsp2hls.sh b/tools/ipcam_rtsp2hls.sh index 324a17c..c321820 100755 --- a/tools/ipcam_rtsp2hls.sh +++ b/tools/ipcam_rtsp2hls.sh @@ -115,12 +115,12 @@ elif [ "$FORCE_UDP" = "1" ]; then fi if [ -z "$CUSTOM_PATH" ]; then - PATH="/Streaming/Channels/${CHANNEL}" + path="/Streaming/Channels/${CHANNEL}" else - PATH="$CUSTOM_PATH" + path="$CUSTOM_PATH" fi -ffmpeg $args -i "rtsp://${USER}:${PASSWORD}@${IP}:${PORT}${CUSTOM_PATH}" \ +ffmpeg $args -i "rtsp://${USER}:${PASSWORD}@${IP}:${PORT}${path}" \ -c:v copy -c:a copy -bufsize 1835k \ -pix_fmt yuv420p \ -flags -global_header -hls_time 2 -hls_list_size 3 -hls_flags delete_segments \ |