diff options
author | Thanos Apollo <[email protected]> | 2023-10-13 16:07:10 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-10-13 16:07:10 +0300 |
commit | 0509f298cbd87141a865890ea78295bdce59d33e (patch) | |
tree | 161064c77b076b48468c456a609839cb4da6b3a8 /yeetube-mpv.el | |
parent | b1d69778cb8467b5a426b42f083d049d8b9e058b (diff) |
yeetube-mpv-play-url: Rename to yeetube-mpv-play
This function is not specific to just playing urls. User may make
custom functions to play local files with it, thus the change of name.
Diffstat (limited to 'yeetube-mpv.el')
-rw-r--r-- | yeetube-mpv.el | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/yeetube-mpv.el b/yeetube-mpv.el index 6c59552..22c78ae 100644 --- a/yeetube-mpv.el +++ b/yeetube-mpv.el @@ -50,11 +50,14 @@ (start-process-shell-command "yeetube" nil command)))) -(defun yeetube-mpv-play-url (url) - "Start yeetube process to play URL using mpv." +(defun yeetube-mpv-play (input) + "Start yeetube process to play INPUT using mpv. + +This function is not specific to just playing urls. Feel free to use +to play local files." (yeetube-mpv-process (concat yeetube-mpv-path " " - (shell-quote-argument url) + (shell-quote-argument input) (when yeetube-mpv-disable-video " --no-video"))) (message "yeetube: starting mpv process")) |