aboutsummaryrefslogtreecommitdiff
path: root/tools/ipcam_capture.sh
blob: d1c13c286c6c6374f96e87886de8c38f4e1678e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#!/bin/bash

PROGNAME="$0"
PORT=554
IP=
CREDS=
DEBUG=0
CHANNEL=1
FORCE_UDP=0
FORCE_TCP=0

die() {
  echo >&2 "error: $@"
  exit 1
}

usage() {
  cat <<EOF
usage: $PROGNAME [OPTIONS] COMMAND

Options:
  --outdir  output directory
  --ip      camera IP
  --port    RTSP port (default: 554)
  --creds
  --debug
  --force-tcp
  --force-udp
  --channel 1|2

EOF
  exit
}

validate_channel() {
  local c="$1"
  case "$c" in
    1|2)
      :
      ;;
    *)
      die "Invalid channel"
      ;;
    esac
}

[ -z "$1" ] && usage

while [[ $# -gt 0 ]]; do
  case "$1" in
    --ip|--port|--creds|--outdir)
      _var=${1:2}
      _var=${_var^^}
      printf -v "$_var" '%s' "$2"
      shift
      ;;

    --debug)
      DEBUG=1
      ;;

    --force-tcp)
      FORCE_TCP=1
      ;;

    --force-udp)
      FORCE_UDP=1
      ;;

    --channel)
      CHANNEL="$2"
      shift
      ;;

    *)
      die "Unrecognized argument: $1"
      ;;
  esac
  shift
done

[ -z "$OUTDIR" ] && die "You must specify output directory (--outdir)."
[ -z "$IP" ] && die "You must specify camera IP address (--ip)."
[ -z "$PORT" ] && die "Port can't be empty."
[ -z "$CREDS" ] && die "You must specify credentials (--creds)."
validate_channel "$CHANNEL"

if [ ! -d "${OUTDIR}" ]; then
  mkdir "${OUTDIR}" || die "Failed to create ${OUTDIR}/${NAME}!"
  echo "Created $OUTDIR."
fi

args=
if [ "$DEBUG" = "1" ]; then
  args="$args -v info"
else
  args="$args -nostats -loglevel warning"
fi

if [ "$FORCE_TCP" = "1" ]; then
  args="$args -rtsp_transport tcp"
elif [ "$FORCE_UDP" = "1" ]; then
  args="$args -rtsp_transport udp"
fi

[ ! -z "$CREDS" ] && CREDS="${CREDS}@"

ffmpeg $args -i rtsp://${CREDS}${IP}:${PORT}/Streaming/Channels/${CHANNEL} \
  -c copy -f segment -strftime 1 -segment_time 00:10:00 -segment_atclocktime 1 \
  "$OUTDIR/record_%Y-%m-%d-%H.%M.%S.mp4"