Function: actypes::yt-play

actypes::yt-play is a byte-compiled function defined in hsys-youtube.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/hsys-youtube.el
;;;###autoload
(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.
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."
  (hact #'actypes::www-url (hsys-youtube-get-url video-id start-time-string end-time-string)))