#!/usr/bin/env bash

export TZ=Europe/Berlin

ffmpeg \
  -reconnect 1 \
  -reconnect_streamed 1 \
  -reconnect_delay_max 10 \
  -i https://st01.sslstream.dlf.de/dlf/01/high/opus/stream.opus?aggregator=web \
  -c copy \
  -f segment \
  -segment_atclocktime 1 \
  -segment_time 3600 \
  -strftime 1 \
  "./%Y-%m-%d_%H:%M:%S.opus"

