Skip to content

syohex/emacs-rebuildfm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rebuildfm.el

A Emacs client of rebuild.fm.

Screenshot

rebuildfm

Requirements

Actions

  • Play podcast
  • Browse podcast page

Persistent Action

  • Display podcast summary

Basic Usage

rebuildfm

List Podcast list with helm interface

rebuildfm-pause

Pause podcast

rebuildfm-resume

Resume podcast

rebuildfm-stop

Stop playing MP3 player

Customization

rebuildfm-mp3-player

A player for playing mp3 file. Now only avplay and ffplay are supported. (itunes is used on MacOSX)

rebuildfm-play-podcast-hook

Hook that runs after playing podcast. Its function takes one argument which is plist which has :title, :link, :summary, :pubdate, mp3-url.

Following code is hook example.

(require 'notifications)
(defun my/rebuildfm-hook (item)
  (notifications-notify :title (plist-get item :title)
                        :body  (plist-get item :summary)
                        :timeout 2000))
(add-hook 'rebuildfm-play-podcast-hook 'my/rebuildfm-hook)

See Also

About

A Emacs Client of rebuildfm

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published