1
0
Fork 0

Compare commits

..

No commits in common. "067ccb5b3b13125828e3103dc2c256b1224fc451" and "a192a01291375d5152439a191685a8a3a9e4dfc5" have entirely different histories.

2 changed files with 7 additions and 18 deletions

View File

@ -3,9 +3,9 @@ volumes:
metadatabase: metadatabase:
library: library:
driver_opts: driver_opts:
type: "${LIBRARY_VOLUME_TYPE:-local}" type: ${LIBRARY_VOLUME_TYPE}
o: "${LIBRARY_VOLUME_OPTIONS:-defaults}" o: ${LIBRARY_VOLUME_OPTIONS}
device: "${LIBRARY_VOLUME_DEVICE:-/var/tmp/whatever}" device: ${LIBRARY_VOLUME_DEVICE}
services: services:
liquidsoap: liquidsoap:
image: icedream/liquidsoap image: icedream/liquidsoap
@ -46,11 +46,11 @@ services:
# HACK - haven't quite figured out the ports SRT/NDI use # HACK - haven't quite figured out the ports SRT/NDI use
network_mode: host network_mode: host
command: command:
- '/usr/local/bin/tunaposter' - /usr/local/bin/tunaposter
# tuna source URL # tuna source URL
- '${TUNA_SOURCE_URL:-http://localhost}' - ${TUNA_SOURCE_URL}
# liquidsoap metadata API URL # liquidsoap metadata API URL
- 'http://127.0.0.1:21338' - http://127.0.0.1:21338
deploy: deploy:
resources: resources:
limits: limits:

View File

@ -16,18 +16,7 @@ shutdown_ffmpeg() {
if is_ffmpeg_running if is_ffmpeg_running
then then
kill "$ffmpeg_pid" || true kill "$ffmpeg_pid" || true
for t in $(seq 0 10) wait "$ffmpeg_pid" || true
do
if ! kill -0 "$ffmpeg_pid"
then
break
fi
sleep 1
done
if kill -0 "$ffmpeg_pid"
then
kill -9 "$ffmpeg_pid" || true
fi
fi fi
ffmpeg_pid= ffmpeg_pid=
} }