From 7918ef0b3a52689a40f9dd5e1079a24062cd5b0c Mon Sep 17 00:00:00 2001 From: SouthFox Date: Mon, 30 Dec 2024 17:00:49 +0800 Subject: [PATCH] [fix] add --no-video flag --- files/bin/chill-player | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/bin/chill-player b/files/bin/chill-player index 486df46..85d97b6 100755 --- a/files/bin/chill-player +++ b/files/bin/chill-player @@ -7,4 +7,4 @@ (while True (for [item (.json (requests.get "https://stream.chillhop.com/live/12355"))] (print f"Now playing: {(:title item)} - {(:artists item)} - {(:fileId item)}") - (subprocess.run f"mpv https://stream.chillhop.com/mp3/{(:fileId item)}" :shell True :capture_output True))) + (subprocess.run f"mpv --no-video https://stream.chillhop.com/mp3/{(:fileId item)}" :shell True :capture_output True)))