diff options
author | Yoni Rabkin <yonirabkin@member.fsf.org> | 2014-04-01 14:49:18 -0400 |
---|---|---|
committer | Yoni Rabkin <yonirabkin@member.fsf.org> | 2014-04-01 14:49:18 -0400 |
commit | 431595d1f1d8e789a3fdedc95223c9d45afbf114 (patch) | |
tree | b7a16aa8ec5ddeafc26c1f4d1c15955a400713dd | |
parent | eafe8228d259a15d21f517bb2bdf54b09c0b49dd (diff) |
* lisp/emms-librefm-stream.el: Add file.
-rw-r--r-- | lisp/emms-librefm-stream.el | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/lisp/emms-librefm-stream.el b/lisp/emms-librefm-stream.el new file mode 100644 index 0000000..fc9f5e4 --- /dev/null +++ b/lisp/emms-librefm-stream.el @@ -0,0 +1,39 @@ +;;; emms-librefm-stream.el --- Libre.FM streaming + +;; Copyright (C) 2014 Free Software Foundation, Inc. + +;; Author: Yoni Rabkin <yrk@gnu.org> + +;; Keywords: emms, libre.fm, GNU FM + +;; 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, 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; see the file COPYING. If not, write to the Free +;; Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, +;; MA 02110-1301, USA. + + +;;; Code: + +(require 'emms-librefm-scrobbler) + +(defvar emms-librefm-stream-host-url + "alpha.libre.fm" + "URL for the streaming host") + + + + +(provide 'emms-librefm-stream) + + +;;; emms-librefm-stream.el ends here |