From 093ffa5fbf7143f4668bb0a3dc9659a5cc836e12 Mon Sep 17 00:00:00 2001 From: Yuchen Pei Date: Sat, 17 Jun 2023 17:20:29 +1000 Subject: Moving things one level deeper To ease gnu stow usage. Now we can do stow -t ~ emacs --- emacs/.emacs.d/lisp/my/emms-info-ytdl.el | 100 +++++++++++++++++++++++++++++++ 1 file changed, 100 insertions(+) create mode 100644 emacs/.emacs.d/lisp/my/emms-info-ytdl.el (limited to 'emacs/.emacs.d/lisp/my/emms-info-ytdl.el') diff --git a/emacs/.emacs.d/lisp/my/emms-info-ytdl.el b/emacs/.emacs.d/lisp/my/emms-info-ytdl.el new file mode 100644 index 0000000..489f3fb --- /dev/null +++ b/emacs/.emacs.d/lisp/my/emms-info-ytdl.el @@ -0,0 +1,100 @@ +;;; emms-info-ytdl.el --- info-method for EMMS using ytdl -*- lexical-binding: t; -*- + +;; Copyright (C) 2022 Free Software Foundation, Inc. + +;; Author: Yuchen Pei (ycp@gnu.org) +;; Keywords: multimedia + +;; 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 of the License, 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, see +;; . + +;;; Commentary: + +;; (add-to-list emms-info-functions 'emms-info-ytdl) + +;; To use this you would need to have `emms-info-ytdl-command` +;; (typically youtube-dl or yt-dlp) installed on your system. + + +;;; Code: + +(require 'emms-info) +(require 'json) + + +(defgroup emms-info-ytdl nil + "Options for EMMS." + :group 'emms-info) + +(defvar emms-info-ytdl-field-map + '((info-title . title) + (info-artist . artist) + (info-playing-time . duration)) + "Mapping for ytdl output.") + +(defvar emms-info-ytdl-regexp + "^https?://" + "Regexp to use ytdl to get info.") + +(defvar emms-info-ytdl-exclude-regexp + ;; "\\(\\.\\w+$\\|/playlist\\|/channel\\)" + "\\(/playlist\\|/channel\\)" + "Regexp not to use ytdl to get info.") + +(defvar emms-info-ytdl-command + "yt-dlp" + "Command to run for emms-info-ytdl.") + +(defcustom emms-info-ytdl-using-torsocks + nil + "If t, use torsocks to get ytdl info") + +(defun emms-info-ytdl (track) + "Set TRACK info using ytdl." + (when (and (eq (emms-track-type track) 'url) + (string-match emms-info-ytdl-regexp (emms-track-name track)) + (not + (string-match emms-info-ytdl-exclude-regexp + (emms-track-name track)))) + (with-temp-buffer + (when (zerop + (let ((coding-system-for-read 'utf-8)) + (if emms-info-ytdl-using-torsocks + (my-call-process-with-torsocks + emms-info-ytdl-command nil '(t nil) nil "-j" + (emms-track-name track)) + (call-process emms-info-ytdl-command nil '(t nil) nil + "-j" (emms-track-name track))))) + (goto-char (point-min)) + (condition-case nil + (let ((json-fields (json-read))) + (mapc + (lambda (field-map) + (let ((emms-field (car field-map)) + (ytdl-field (cdr field-map))) + (let ((track-field (assoc ytdl-field json-fields))) + (when track-field + (emms-track-set + track + emms-field + (if (eq emms-field 'info-playing-time) + (truncate (cdr track-field)) + (cdr track-field))))))) + emms-info-ytdl-field-map)) + (error (message "error while reading track info"))) + track)))) + +(provide 'emms-info-ytdl) + +;;; emms-info-ytdl.el ends here -- cgit v1.2.3