VL
Size: a a a
VL
MK
D
(defcustom mpv-args '("--fullscreen")
"Default options that used with mpv"
:type list)
(defun start-mpv (path &rest +mpv-args)
"Start mpv with specified arguments"
(let ((+mpv-args (if +mpv-args +mpv-args ""))
(mpv-args (if mpv-args mpv-args "")))
(apply #'call-process "mpv" nil 0 nil `(,@mpv-args ,@+mpv-args ,path))))
;;(start-mpv "https://www.youtube.com/watch?v=eE0ggXiSQqk" "--pause") ;; Видео с паузой в начале
;;(start-mpv "https://www.youtube.com/watch?v=eE0ggXiSQqk") ;; Без паузы
D
D
D
[ytdl_hook] ERROR: eE0ggXiSQqk: YouTube said: Unable to extract video dataИногда показывает видео а иногда такое ^^^. Такое ощущение что ютуб не любит когда его смотрят не через бровзер
[ytdl_hook] youtube-dl failed: unexpected error ocurred
Failed to recognize file format.
Exiting... (Errors when loading file)
PG
(defcustom mpv-args '("--fullscreen")
"Default options that used with mpv"
:type list)
(defun start-mpv (path &rest +mpv-args)
"Start mpv with specified arguments"
(let ((+mpv-args (if +mpv-args +mpv-args ""))
(mpv-args (if mpv-args mpv-args "")))
(apply #'call-process "mpv" nil 0 nil `(,@mpv-args ,@+mpv-args ,path))))
;;(start-mpv "https://www.youtube.com/watch?v=eE0ggXiSQqk" "--pause") ;; Видео с паузой в начале
;;(start-mpv "https://www.youtube.com/watch?v=eE0ggXiSQqk") ;; Без паузы
:type '(list string)
2) let
убери, он бесполезенPG
PG
'(list string)
, а '(repeat string)
PG
A
D
ND
PG
,@
, нахуя ещё оры лепить?A
A
D
A
[ytdl_hook] ERROR: eE0ggXiSQqk: YouTube said: Unable to extract video dataИногда показывает видео а иногда такое ^^^. Такое ощущение что ютуб не любит когда его смотрят не через бровзер
[ytdl_hook] youtube-dl failed: unexpected error ocurred
Failed to recognize file format.
Exiting... (Errors when loading file)
PG
D
(defcustom mpv-args '("--fullscreen")
"Default options that used with mpv"
:type '(repeat string))
(defun start-mpv (path &rest +mpv-args)
"Start mpv with specified arguments"
(apply #'call-process "mpv" nil 0 nil `(,@mpv-args ,@+mpv-args ,path)))