-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy patheradio.el
96 lines (77 loc) · 2.91 KB
/
eradio.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
;;; eradio.el --- A simple Internet radio player -*- lexical-binding: t; -*-
;; Copyright (C) 2020 Olav Fosse
;; Author: Olav Fosse <mail@olavfosse.no>
;; Version: 0.1
;; URL: https://github.com/fossegrim/eradio
;; Package-Requires: ((emacs "24.1"))
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; A simple Internet radio player
;;; Code:
;;;###autoload
(defcustom eradio-channels '()
"Eradio's radio channels."
:type '(repeat (cons (string :tag "Name") (string :tag "URL")))
:group 'eradio)
(defcustom eradio-player '("vlc" "--no-video" "-I" "rc")
"Eradio's player.
This is a list of the program and its arguments. The url will be appended to the list to generate the full command."
:type '(choice
(const :tag "vlc"
("vlc" "--no-video" "-I" "rc"))
(const :tag "vlc-mac"
("/Applications/VLC.app/Contents/MacOS/VLC" "--no-video" "-I" "rc"))
(const :tag "mpv"
("mpv" "--no-video" "--no-terminal")))
:group 'eradio)
(defvar eradio--process nil "The process running the radio player.")
(defvar eradio-current-channel nil "The currently playing (or paused) channel.")
(defun eradio--alist-keys (alist)
"Get the keys from an ALIST."
(mapcar #'car alist))
;;;###autoload
(defun eradio-stop ()
"Stop the radio player."
(interactive)
(when eradio--process
(delete-process eradio--process)
(setq eradio--process nil)))
;;;###autoload
(defun eradio-toggle ()
"Toggle the radio player."
(interactive)
(if eradio--process
(eradio-stop)
;; If eradio-current-channel is nil, eradio-play will prompt the url
(eradio-play eradio-current-channel)))
(defun eradio--play-low-level (url)
"Play radio channel URL in a new process."
(setq eradio--process
(apply #'start-process
`("eradio--process" nil ,@eradio-player ,url))))
(defun eradio--get-url ()
"Get a radio channel URL from the user."
(let ((eradio-channel (completing-read
"Channel: "
(eradio--alist-keys eradio-channels)
nil nil)))
(or (cdr (assoc eradio-channel eradio-channels)) eradio-channel)))
;;;###autoload
(defun eradio-play (&optional url)
"Play a radio channel, do what I mean."
(interactive)
(let ((url (or url (eradio--get-url))))
(eradio-stop)
(setq eradio-current-channel url)
(eradio--play-low-level url)))
(provide 'eradio)
;;; eradio.el ends here