aboutsummaryrefslogtreecommitdiff
path: root/lisp/emms-stream-info.el
blob: 62c8d4c67ad6bfedc7561ff6a9b6a753c9eb376b (plain) (blame)
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
;;; emms-stream-info.el --- Info from streaming audio

;; Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.

;; Author: Yoni Rabkin <yonirabkin@member.fsf.org>

;; This file is part of EMMS.

;; EMMS 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.

;; EMMS 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 EMMS; if not, write to the Free Software Foundation,
;; Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.

;;; Commentary:
;;
;; This library was re-implemented from scratch around January of
;; 2009. If you are looking for the old code then grab source code
;; older than that.

;;; Code:

(defvar *emms-stream-info-debug-buffer* "*stream-info-debug*")

;; "http://di-fm-01.quintex.com:8888"

(defun emms-stream-info-call-backend (url)
  (with-temp-buffer
    (call-process "mplayer" nil *emms-stream-info-debug-buffer* nil
		  "-endpos" "0" "-vo" "null" "-ao" "null" url)
    (buffer-substring (point-min) (point-max))))

(setq foo (emms-stream-info-call-backend "http://di-fm-01.quintex.com:8888"))

;; point of entry
(defun emms-stream-info-message (url)
  'stub)

(provide 'emms-stream-info)

;;; emms-stream-info.el ends here