(Emacs/elisp)~Make separate module for mpv from org-bookmark
This commit is contained in:
58
Emacs/.config/emacs/elisp/mpv.el
Normal file
58
Emacs/.config/emacs/elisp/mpv.el
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
;;; mpv.el --- Open MPV through Emacs! -*- lexical-binding: t; -*-
|
||||||
|
|
||||||
|
;; Copyright (C) 2024 Aryadev Chavali
|
||||||
|
|
||||||
|
;; Author: Aryadev Chavali <aryadev@aryadevchavali.com>
|
||||||
|
;; Keywords: convenience
|
||||||
|
|
||||||
|
;; This program is free software; you can redistribute it and/or
|
||||||
|
;; modify it under the terms of the GNU General Public License Version
|
||||||
|
;; 2 as published by the Free Software Foundation.
|
||||||
|
|
||||||
|
;; 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:
|
||||||
|
|
||||||
|
;;
|
||||||
|
|
||||||
|
;;; Code:
|
||||||
|
|
||||||
|
(autoload #'ffap-guesser "ffap")
|
||||||
|
(autoload #'ansi-color-for-comint-mode-on "ansi-color")
|
||||||
|
(autoload #'comint-output-filter "comint")
|
||||||
|
|
||||||
|
(defvar mpv-ytdl-args "--ytdl-format=\"bestvideo[height<=1080][fps<=60]+bestaudio/best[height<=1920]\""
|
||||||
|
"Arguments for ytdl in mpv format.")
|
||||||
|
|
||||||
|
(defvar mpv-args "-v --profile=fast --hwdec=auto-copy"
|
||||||
|
"General arguments for mpv binary.")
|
||||||
|
|
||||||
|
(defun mpv--make-args ()
|
||||||
|
(concat mpv-args " " mpv-ytdl-args))
|
||||||
|
|
||||||
|
(defun mpv-start-process (url)
|
||||||
|
(message "[mpv]: Starting mpv on `%s'" url)
|
||||||
|
(with-current-buffer (get-buffer-create "*mpv*")
|
||||||
|
(ansi-color-for-comint-mode-on)
|
||||||
|
(comint-mode))
|
||||||
|
(set-process-filter (start-process-shell-command
|
||||||
|
"mpv" "*mpv*"
|
||||||
|
(concat "mpv " (mpv--make-args) " \"" url "\""))
|
||||||
|
#'comint-output-filter))
|
||||||
|
|
||||||
|
(defvar mpv--history nil)
|
||||||
|
|
||||||
|
(defun mpv-open-video ()
|
||||||
|
(interactive)
|
||||||
|
(let ((url (completing-read "Enter URL: " nil nil t (ffap-guesser) mpv--history)))
|
||||||
|
(mpv-start-process url)
|
||||||
|
(switch-to-buffer "*mpv*")))
|
||||||
|
|
||||||
|
(provide 'mpv)
|
||||||
|
;;; mpv.el ends here
|
||||||
@@ -27,11 +27,9 @@
|
|||||||
(autoload #'org-get-tags "org")
|
(autoload #'org-get-tags "org")
|
||||||
(autoload #'org-entry-get "org")
|
(autoload #'org-entry-get "org")
|
||||||
(autoload #'org-make-tags-matcher "org")
|
(autoload #'org-make-tags-matcher "org")
|
||||||
|
(autoload #'mpv-start-process "mpv")
|
||||||
|
|
||||||
(defvar org-bookmark/file (expand-file-name (concat org-directory "/bookmarks.org")))
|
(defvar org-bookmark/file (expand-file-name (concat org-directory "/bookmarks.org")))
|
||||||
(defvar org-bookmark/mpv-args "-v --ytdl-raw-options=force-ipv4= \
|
|
||||||
--ytdl-format=\"bestvideo[height<=1080][fps<=60]+bestaudio/best[height<=1920]\" \
|
|
||||||
--profile=fast --hwdec=auto-copy")
|
|
||||||
|
|
||||||
(defun org-bookmark/--get-heading-data ()
|
(defun org-bookmark/--get-heading-data ()
|
||||||
"In an org-mode buffer, with point on a heading: get the title,
|
"In an org-mode buffer, with point on a heading: get the title,
|
||||||
@@ -68,6 +66,7 @@ urls)."
|
|||||||
(defvar org-bookmark/--cache nil
|
(defvar org-bookmark/--cache nil
|
||||||
"Cached alist constructed from bookmarks file of form (TITLE+TAG
|
"Cached alist constructed from bookmarks file of form (TITLE+TAG
|
||||||
. URL).")
|
. URL).")
|
||||||
|
|
||||||
(defvar org-bookmark/--cache-last-modified nil
|
(defvar org-bookmark/--cache-last-modified nil
|
||||||
"Last modified time for bookmarks file as a float.")
|
"Last modified time for bookmarks file as a float.")
|
||||||
|
|
||||||
@@ -85,21 +84,10 @@ are cached for faster lookup."
|
|||||||
(org-bookmark/--get-all-heading-data))))))
|
(org-bookmark/--get-all-heading-data))))))
|
||||||
org-bookmark/--cache)
|
org-bookmark/--cache)
|
||||||
|
|
||||||
(defun org-bookmark/open-mpv (url)
|
|
||||||
(interactive)
|
|
||||||
(message "[bookmark]: Starting MPV process")
|
|
||||||
(with-current-buffer (get-buffer-create "*mpv*")
|
|
||||||
(ansi-color-for-comint-mode-on)
|
|
||||||
(comint-mode))
|
|
||||||
(set-process-filter (start-process-shell-command
|
|
||||||
"bookmark-mpv" "*mpv*"
|
|
||||||
(concat "mpv " org-bookmark/mpv-args " \"" url "\""))
|
|
||||||
#'comint-output-filter))
|
|
||||||
|
|
||||||
(defconst org-bookmark/dispatch-list
|
(defconst org-bookmark/dispatch-list
|
||||||
'((("^https://\\(www.\\)?youtu\\(.\\)?be"
|
'((("^https://\\(www.\\)?youtu\\(.\\)?be"
|
||||||
"\\.mp4$")
|
"\\.mp4$")
|
||||||
. org-bookmark/open-mpv)
|
. mpv-start-process)
|
||||||
(otherwise . eww))
|
(otherwise . eww))
|
||||||
"List of pairs of type (PATTERNS . FUNC) which is used in
|
"List of pairs of type (PATTERNS . FUNC) which is used in
|
||||||
ORG-BOOKMARK/OPEN-BOOKMARK to handle opening urls.
|
ORG-BOOKMARK/OPEN-BOOKMARK to handle opening urls.
|
||||||
|
|||||||
Reference in New Issue
Block a user