Function: actypes::yt-play

actypes::yt-play is a function defined in hyperbole-autoloads.el.

Signature

(actypes::yt-play VIDEO-ID &optional START-TIME-STRING END-TIME-STRING)

Documentation

Play a VIDEO-ID from the point specified by optional START-TIME-STRING.

If not given, START-TIME-STRING is set to "0s" representing the beginning of the video. START-TIME-STRING is a colon-separated hours:minutes:seconds string, e.g. 1:2:44 (1 hour, two minutes, 45 seconds), where the hours and minutes are optional.

Aliases

hsys-youtube-play

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyperbole-autoloads.el
(defact yt-play (video-id &optional start-time-string end-time-string) "Play a VIDEO-ID from the point specified by optional START-TIME-STRING.\nIf not given, START-TIME-STRING is set to \"0s\" representing the beginning\nof the video.  START-TIME-STRING is a colon-separated hours:minutes:seconds\nstring, e.g. 1:2:44 (1 hour, two minutes, 45 seconds), where the hours\nand minutes are optional." (hact #'actypes::www-url (hsys-youtube-get-url video-id start-time-string end-time-string)))