Added media/mplayer/capture-dir to specify where to capture playing streams.
[elisp.git] / media-mplayer.el
1 ;; -*-Emacs-Lisp-*-
2
3 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4 ;; This program is free software; you can redistribute it and/or         ;;
5 ;; modify it under the terms of the GNU General Public License as        ;;
6 ;; published by the Free Software Foundation; either version 3, or (at   ;;
7 ;; your option) any later version.                                       ;;
8 ;;                                                                       ;;
9 ;; This program is distributed in the hope that it will be useful, but   ;;
10 ;; WITHOUT ANY WARRANTY; without even the implied warranty of            ;;
11 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      ;;
12 ;; General Public License for more details.                              ;;
13 ;;                                                                       ;;
14 ;; You should have received a copy of the GNU General Public License     ;;
15 ;; along with this program. If not, see <http://www.gnu.org/licenses/>.  ;;
16 ;;                                                                       ;;
17 ;; Written by and Copyright (C) Francois Fleuret                         ;;
18 ;; Contact <francois@fleuret.org> for comments & bug reports             ;;
19 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
20
21 ;; Is it me, or the slave mode of mplayer is ugly to parse? Did I miss
22 ;; something?
23
24 (defcustom media/mplayer/args nil
25   "List of arguments for mplayer."
26   :type 'list
27   :group 'media)
28
29 (defcustom media/mplayer/timing-request-period 0.25
30   "Period for the timing requests in second(s). Larger values
31 load Emacs less. Nil means no timing."
32   :type 'float
33   :group 'media)
34
35 (defcustom media/mplayer/capture-dir nil
36   "States where to save the dumped streams."
37   :type 'string
38   :group 'media)
39
40 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
41
42 ;; It is impossible to tell mplayer to send information every time dt
43 ;; or so, hence this mess with a timer to avoid overloading emacs with
44 ;; the processing of the information
45
46 (defvar media/mplayer/timer nil
47   "A timer to request the timing position.")
48
49 (defun media/mplayer/timing-request ()
50   (if media/mplayer/process
51       (unless media/mplayer/paused
52         (media/mplayer/write "get_time_pos\n")
53         )
54     (media/mplayer/stop-timing-requests)
55     ))
56
57 (defun media/mplayer/start-timing-requests ()
58   (when media/mplayer/timing-request-period
59     (media/mplayer/stop-timing-requests)
60     (setq media/mplayer/timer
61           (run-at-time nil
62                        media/mplayer/timing-request-period
63                        'media/mplayer/timing-request))
64     )
65   )
66
67 (defun media/mplayer/stop-timing-requests ()
68   (when media/mplayer/timer
69     (cancel-timer media/mplayer/timer)
70     (setq media/mplayer/timer nil)
71     ))
72
73 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
74
75 (defun media/mplayer/filter-subfunctions (cmd param)
76   ;; (unless (string= cmd "A:")
77   ;; (message "cmd=%s param=%s" cmd param)
78   ;; )
79   (eval
80    (cons 'progn
81          (cdr
82           (assoc cmd
83
84                  '(
85
86                    ;; ----------------------------------------
87
88                    ("ICY Info:"
89                     ;; (message "ICY Info \"%s\"" param)
90
91                     (if (string-match "StreamTitle='\\([^;]*\\)';" param)
92
93                         (setq media/current-song-in-stream
94                               (let ((s (match-string 1 param)))
95                                 (concat (if (string= s "")
96                                             "<no title>"
97                                           ;; (encode-coding-string s 'latin-1)
98                                           s
99                                           )
100                                         " | "
101                                         (format-time-string "%a %b %d %H:%M:%S")
102                                         )
103                                 )
104                               )
105
106                       (setq media/current-song-in-stream nil)
107
108                       ;; If we did not parse it properly, show it
109                       (message "ICY Info \"%s\"" param))
110
111                     (if (and media/current-song-in-stream media/current-information)
112                         (media/show-current-information))
113                     )
114
115                    ;; ----------------------------------------
116
117                    ("ANS_LENGTH"
118
119                     (setq media/song-duration
120                           (string-to-number (substring param 1))))
121
122                    ;; ----------------------------------------
123
124                    ("ANS_TIME_POSITION"
125
126                     (setq media/song-current-time
127                           (string-to-number (substring param 1)))
128
129                     (when (and media/duration-to-history
130                                (< media/mplayer/cumulated-duration media/duration-to-history))
131
132                       (when media/mplayer/last-current-time
133                         (setq media/mplayer/cumulated-duration
134                               (+ media/mplayer/cumulated-duration
135                                  (- media/song-current-time media/mplayer/last-current-time))))
136
137                       (when (>= media/mplayer/cumulated-duration media/duration-to-history)
138                         (media/put-in-history)
139                         )
140
141                       (setq media/mplayer/last-current-time media/song-current-time)
142                       )
143                     )
144
145                    ;; ----------------------------------------
146
147                    ("AUDIO:"
148
149                     ;; param = "44100 Hz, 2 ch, s16le, 128.0 kbit/9.07% (ratio: 16000->176400)"
150                     (when (string-match "^\\([0-9]+\\) Hz, \\([0-9]+\\) ch.* \\([0-9.]+\\) kbit"
151                                         param)
152                       (setq media/current-information
153                             (list media/mplayer/url
154                                   (string-to-number (match-string 1 param))
155                                   (string-to-number (match-string 2 param))
156                                   (string-to-number (match-string 3 param))))
157                       )
158                     (run-hooks 'media/play-hook)
159                     )
160
161                    ;; ----------------------------------------
162
163                    ("Starting"
164                     (media/mplayer/write "get_time_length\n")
165                     (if media/mplayer/capture-dir (media/mplayer/write "capturing\n"))
166                     )
167
168                    ;; ----------------------------------------
169
170                    ("Cache fill:"
171                     (when (string-match "(\\([0-9]+\\) bytes" param)
172                       (message "Caching stream (%dkb)"
173                                (/ (string-to-number (match-string 1 param)) 1024))))
174
175                    ;; ----------------------------------------
176
177                    ("Exiting..."
178                     (setq media/mplayer/exit-type
179                           (cdr (assoc param '(("(End of file)" . file-finished)
180                                               ("(Quit)" . quit))))
181                           media/current-information nil
182                           media/song-duration nil
183                           media/song-current-time nil)
184
185                     (when media/mplayer/process (kill-process media/mplayer/process))
186
187                     (force-mode-line-update)
188                     )
189
190                    ;; ----------------------------------------
191
192                    )
193                  )
194           )
195          )
196    )
197   )
198
199 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
200
201 (defun media/mplayer/filter (process str)
202   (setq media/mplayer/buffer (concat media/mplayer/buffer str))
203   (let ((start 0))
204     (while (and (< start (length media/mplayer/buffer))
205                 (string-match "\\(.*\\)[\n\r]+" media/mplayer/buffer start))
206       (setq start (1+ (match-end 1)))
207       (let ((line (match-string 1 media/mplayer/buffer)))
208         (when (string-match "^\\(AUDIO:\\|Exiting...\\|Starting\\|ANS_LENGTH\\|ANS_TIME_POSITION\\|Cache fill:\\|ICY Info:\\) *\\(.*\\)$" line)
209           (media/mplayer/filter-subfunctions (match-string 1 line) (match-string 2 line))))
210       )
211     (setq media/mplayer/buffer (substring media/mplayer/buffer start)))
212   )
213
214 (defun media/mplayer/sentinel (process str) ()
215   ;; (message "Media process got \"%s\"" (replace-regexp-in-string "\n" "" str))
216   (unless (eq (process-status media/mplayer/process) 'run)
217     (setq media/current-information nil
218           media/mplayer/process nil
219           media/song-current-time nil
220           media/song-duration nil)
221
222     (media/mplayer/stop-timing-requests)
223
224     (if (eq media/mplayer/exit-type 'file-finished)
225         (run-hooks 'media/finished-hook)
226       (run-hooks 'media/error-hook))
227
228     (force-mode-line-update))
229   )
230
231 (defun media/mplayer/write (&rest l)
232   ;;   (message "****** WROTE \"%s\"" (replace-regexp-in-string "\n" "[RETURN]" (apply 'format l)))
233   (if media/mplayer/process (process-send-string media/mplayer/process (apply 'format l))
234     (error "No mplayer process"))
235   )
236
237 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
238 ;; Player control abstract layer ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
239 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
240
241 (defun media/api/init () "Called once when the media application starts"
242   (setq media/player-id "MPlayer"
243         media/mplayer/url nil
244         media/mplayer/buffer "" ;; Used as read buffer
245         media/mplayer/process nil
246         media/mplayer/exit-type nil
247         media/mplayer/paused nil
248         media/song-duration nil
249         media/song-current-time nil
250         media/mplayer/cumulated-duration 0
251         media/mplayer/last-current-time nil
252         ))
253
254 (defun media/api/cleanup () "Called when killing the application's buffer"
255   (when media/mplayer/process
256     (delete-process media/mplayer/process)
257     (media/mplayer/stop-timing-requests)
258     (setq media/mplayer/process nil)))
259
260 (defun media/api/play (url) (interactive)
261   (setq media/mplayer/url url)
262
263   (when media/mplayer/process (kill-process media/mplayer/process))
264
265   ;; (if media/mplayer/process
266   ;; (media/mplayer/write (concat "loadfile "
267   ;; (replace-regexp-in-string "^file://" "" media/mplayer/url)
268   ;; "\n"))
269
270   (setq media/mplayer/process
271         (apply
272          'start-process
273          (append
274           '("mplayer" nil "mplayer" "-slave" "-quiet")
275           media/mplayer/args
276           (when (string-match  "\\(asx\\|m3u\\|pls\\|ram\\)$" media/mplayer/url)
277             (if media/mplayer/capture-dir (list "-dumpfile"
278                                                 (concat media/mplayer/capture-dir
279                                                         "/"
280                                                         (replace-regexp-in-string "[^a-zA-Z0-9\.]" "_" media/mplayer/url)
281                                                         (format-time-string "-%Y-%m-%d-%H:%M:%S"))
282                                                 "-capture"
283                                                 "-playlist"
284                                                 )
285               (list "-playlist"))
286             )
287           (list (replace-regexp-in-string "^file://" "" media/mplayer/url)))
288          )
289         media/mplayer/exit-type 'unknown
290         media/mplayer/paused nil
291         media/song-duration nil
292         media/song-current-time nil
293         media/mplayer/cumulated-duration 0
294         media/mplayer/last-current-time nil
295         )
296
297   (set-process-filter media/mplayer/process 'media/mplayer/filter)
298   (set-process-sentinel media/mplayer/process 'media/mplayer/sentinel)
299   (process-kill-without-query media/mplayer/process)
300   (media/mplayer/start-timing-requests)
301   (media/mplayer/write "get_time_pos\n")
302   )
303
304 (defun media/api/stop () (interactive)
305   (media/mplayer/write "quit\n")
306   )
307
308 (defun media/api/pause () (interactive)
309   (media/mplayer/write "pause\n")
310   (setq media/mplayer/paused (not media/mplayer/paused))
311   )
312
313 (defun media/api/set-volume (mode value) (interactive)
314   (if (eq mode 'absolute)
315       (media/mplayer/write "volume %s 1\n" value)
316     (if (>= value 0)
317         (media/mplayer/write "volume +%s\n" value)
318       (media/mplayer/write "volume %s\n" value))))
319
320 (defun media/api/jump-at-percent (percent) (interactive)
321   (setq media/song-current-time nil)
322   (when (< media/mplayer/cumulated-duration media/duration-to-history)
323     (setq media/mplayer/cumulated-duration 0
324           media/mplayer/last-current-time nil))
325   (media/mplayer/write "seek %s 1\n" percent)
326   (media/mplayer/write "get_time_pos\n")
327   )
328
329 (defun media/api/jump-at-time (mode time) (interactive)
330   (setq media/song-current-time nil)
331   (when (< media/mplayer/cumulated-duration media/duration-to-history)
332     (setq media/mplayer/cumulated-duration 0
333           media/mplayer/last-current-time nil))
334   (if (eq mode 'absolute)
335       (media/mplayer/write "seek %s 2\n" time)
336     (media/mplayer/write "seek %s 0\n" time))
337   (media/mplayer/write "get_time_pos\n")
338   )
339
340 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;