blob: ed3d6feb39d56b4765374111e76fadec18380988 (
about) (
plain)
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
|
;;; org-fc-audio.el --- Audio playback during review -*- lexical-binding: t; -*-
;; Copyright (C) 2020 Leon Rische
;; Author: Leon Rische <emacs@leonrische.me>
;; Url: https://www.leonrische.me/pages/org_flashcards.html
;; Package-requires: ((emacs "26.3") (org "9.3"))
;; Version: 0.0.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 <https://www.gnu.org/licenses/>.
;;; Commentary:
;;
;; Adds audio playback during review.
;;
;; Audio files can be played at different times:
;; - before the card is set up
;; - after the card is set up
;;
;; This distinction is relevant for text-input cards where the card
;; setup ends only after the user has entered their answer.
;;
;; The `mpv` media player needs to be installed for this to work.
;;
;;; Code:
(require 'org-fc)
(defcustom org-fc-audio-property-before "FC_AUDIO_BEFORE_SETUP"
"Name of the property to use for storing before-setup audio files."
:type 'string
:group 'org-fc)
(defcustom org-fc-audio-property-after "FC_AUDIO_AFTER_SETUP"
"Name of the property to use for storing after-setup audio files."
:type 'string
:group 'org-fc)
(defun org-fc-audio-set-before (file)
"Set the befor-setup audio property of the current card to FILE."
(interactive "f")
(if (org-fc-entry-p)
(org-set-property org-fc-audio-property-before file)))
(defun org-fc-audio-set-after (file)
"Set the after-setup audio of the current card to FILE."
(interactive "f")
(if (org-fc-entry-p)
(org-set-property org-fc-audio-property-after file)))
(defun org-fc-audio-play (property &optional speed)
"Play the audio of the current card.
Look up the file from PROPERTY. If SPEED is non-nil, play back
the file at the given speed."
(if-let ((file (org-entry-get (point) property)))
(org-fc-audio-play-file file (or speed 1.0))))
(defun org-fc-audio-play-file (file speed)
"Play the audio FILE at SPEED."
(start-process-shell-command
"org-fc audio"
nil
(format "mpv %s --speed=%f" file speed)))
(add-hook
'org-fc-before-setup-hook
(lambda () (org-fc-audio-play org-fc-audio-property-before)))
(add-hook
'org-fc-after-setup-hook
(lambda () (org-fc-audio-play org-fc-audio-property-after)))
;;; Footer
(provide 'org-fc-audio)
;;; org-fc-audio.el ends here
|