Variable: hsys-youtube-start-format

hsys-youtube-start-format is a variable defined in hsys-youtube.el.

Value

"https://www.youtube.com/watch?v=%s&t=%s"

Documentation

Format string used to play a Youtube video from a certain point in time.

The first %s is where the video id string is inserted and the second %s is where the time string is inserted. The time string must be 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.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hsys-youtube.el
;;; ************************************************************************
;;; Public variables
;;; ************************************************************************

(defvar hsys-youtube-start-format "https://www.youtube.com/watch?v=%s&t=%s"
  "Format string used to play a Youtube video from a certain point in time.

The first %s is where the video id string is inserted and the second %s is
where the time string is inserted.  The time string must be 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.")