diff --git a/.gitignore b/.gitignore index dad812a..5186c2d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .DS_Store +__pycache__/ .idea/ *.lock diff --git a/radiomenu.py b/radiomenu.py index 1ca944f..bf4258e 100644 --- a/radiomenu.py +++ b/radiomenu.py @@ -16,7 +16,7 @@ class RadioMenu(AbstractMenu): station_list[i]["codec"] + " " + station_list[i]["bitrate"] + " " + station_list[i]["url"], - lambda url=station_list[i]["url"]: subprocess.run(["mpg123", url]) + lambda url=station_list[i]["url"]: subprocess.run(["mpv", "--no-video", url]) ) )