Show the progress of the iptv script on stdout
This commit is contained in:
parent
9e5203a6b7
commit
4779337530
|
@ -16,21 +16,25 @@ select_channel() {
|
|||
|
||||
streaming_server() {
|
||||
if [ "$1" = "start" ]; then
|
||||
docker run --publish "$PORT:$PORT" --rm --tmpfs "/dev/disk/by-id:noexec,rw,size=4k" \
|
||||
echo "Spinning up the server"
|
||||
docker run --publish "$PORT:$PORT" --name acestream-server --rm --tmpfs "/dev/disk/by-id:noexec,rw,size=4k" \
|
||||
--tmpfs "/root/ACEStream:noexec,rw,size=4096m" \
|
||||
$DOCKER_IMAGE >/dev/null 2>&1
|
||||
"$DOCKER_IMAGE" >/dev/null 2>&1
|
||||
echo "Server started"
|
||||
else
|
||||
docker stop $DOCKER_IMAGE >/dev/null 2>&1
|
||||
echo "Stopping the server"
|
||||
docker stop acestream-server >/dev/null 2>&1
|
||||
echo "Server stopped"
|
||||
fi
|
||||
}
|
||||
|
||||
stream_channel() {
|
||||
nix-shell -p vlc --run "$HOME/.local/share/scripts/playstream.py --ace-stream-pid $1 --player '$(whereis vlc | cut -d ':' -f 2)'"
|
||||
echo "Starting the stream"
|
||||
nix-shell -p vlc --run "$HOME/.local/share/scripts/playstream.py --ace-stream-pid $1 --player '$(whereis vlc | cut -d ":" -f 2)'"
|
||||
}
|
||||
|
||||
channel_selection() {
|
||||
echo "Selection time"
|
||||
case "$1" in
|
||||
"Gol ") stream_channel "dfffbcdd9c7e32d5dc88d268dee830ff2a0d3ab6" ;;
|
||||
"Gol 2") stream_channel "2aab272d05089ce881538a1b3288d391de152d53" ;;
|
||||
|
|
Loading…
Reference in New Issue