Variable: hsys-youtube-end-format
hsys-youtube-end-format is a variable defined in hsys-youtube.el.
Value
"https://www.youtube.com/watch?v=%s&t=%s&end=%s"
Documentation
Format string used to play a section of a Youtube video.
This requires use of the embed api (but YouTube has since disallowed
this in urls, so stop end times no longer work).
The first %s is where the video id string is inserted; the second %s is
where the start time string in seconds is inserted; the third %s is
where the end time string in seconds is inserted. The time strings
must be in colon-separated hours:minutes:seconds format, 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-20260822.1645/hsys-youtube.el
;; Old format that used to work:
;; "https://www.youtube.com/embed/%s?autoplay=1&start=%s&end=%s"
(defvar hsys-youtube-end-format "https://www.youtube.com/watch?v=%s&t=%s&end=%s"
"Format string used to play a section of a Youtube video.
This requires use of the `embed' api (but YouTube has since disallowed
this in urls, so stop end times no longer work).
The first %s is where the video id string is inserted; the second %s is
where the start time string in seconds is inserted; the third %s is
where the end time string in seconds is inserted. The time strings
must be in colon-separated hours:minutes:seconds format, e.g. 1:2:44
\(1 hour, two minutes, 45 seconds), where the hours and minutes are
optional.")