<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>Download on Producthunt daily</title>
        <link>https://producthunt.programnotes.cn/en/tags/download/</link>
        <description>Recent content in Download on Producthunt daily</description>
        <generator>Hugo -- gohugo.io</generator>
        <language>en</language>
        <lastBuildDate>Tue, 23 Sep 2025 15:28:59 +0800</lastBuildDate><atom:link href="https://producthunt.programnotes.cn/en/tags/download/index.xml" rel="self" type="application/rss+xml" /><item>
        <title>youtube-dl</title>
        <link>https://producthunt.programnotes.cn/en/p/youtube-dl/</link>
        <pubDate>Tue, 23 Sep 2025 15:28:59 +0800</pubDate>
        
        <guid>https://producthunt.programnotes.cn/en/p/youtube-dl/</guid>
        <description>&lt;img src="https://images.unsplash.com/photo-1647021555913-b7a45ce179e3?ixid=M3w0NjAwMjJ8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NTg2MTI0NzN8&amp;ixlib=rb-4.1.0" alt="Featured image of post youtube-dl" /&gt;&lt;h1 id=&#34;ytdl-orgyoutube-dl&#34;&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/ytdl-org/youtube-dl&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;ytdl-org/youtube-dl&lt;/a&gt;
&lt;/h1&gt;&lt;p&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/ytdl-org/youtube-dl/actions?query=workflow%3ACI&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://github.com/ytdl-org/youtube-dl/workflows/CI/badge.svg&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;Build Status&#34;
	
	
&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;youtube-dl - download videos from youtube.com or other video platforms&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#installation&#34; &gt;INSTALLATION&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#description&#34; &gt;DESCRIPTION&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#options&#34; &gt;OPTIONS&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#configuration&#34; &gt;CONFIGURATION&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#output-template&#34; &gt;OUTPUT TEMPLATE&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#format-selection&#34; &gt;FORMAT SELECTION&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#video-selection&#34; &gt;VIDEO SELECTION&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#faq&#34; &gt;FAQ&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#developer-instructions&#34; &gt;DEVELOPER INSTRUCTIONS&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#embedding-youtube-dl&#34; &gt;EMBEDDING YOUTUBE-DL&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#bugs&#34; &gt;BUGS&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#copyright&#34; &gt;COPYRIGHT&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h1 id=&#34;installation&#34;&gt;INSTALLATION
&lt;/h1&gt;&lt;p&gt;To install it right away for all UNIX users (Linux, macOS, etc.), type:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo curl -L https://yt-dl.org/downloads/latest/youtube-dl -o /usr/local/bin/youtube-dl
sudo chmod a+rx /usr/local/bin/youtube-dl
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;If you do not have curl, you can alternatively use a recent wget:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo wget https://yt-dl.org/downloads/latest/youtube-dl -O /usr/local/bin/youtube-dl
sudo chmod a+rx /usr/local/bin/youtube-dl
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Windows users can &lt;a class=&#34;link&#34; href=&#34;https://yt-dl.org/latest/youtube-dl.exe&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;download an .exe file&lt;/a&gt; and place it in any location on their &lt;a class=&#34;link&#34; href=&#34;https://en.wikipedia.org/wiki/PATH_%28variable%29&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;PATH&lt;/a&gt; except for &lt;code&gt;%SYSTEMROOT%\System32&lt;/code&gt; (e.g. &lt;strong&gt;do not&lt;/strong&gt; put in &lt;code&gt;C:\Windows\System32&lt;/code&gt;).&lt;/p&gt;
&lt;p&gt;You can also use pip:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo -H pip install --upgrade youtube-dl
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;This command will update youtube-dl if you have already installed it. See the &lt;a class=&#34;link&#34; href=&#34;https://pypi.python.org/pypi/youtube_dl&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;pypi page&lt;/a&gt; for more information.&lt;/p&gt;
&lt;p&gt;macOS users can install youtube-dl with &lt;a class=&#34;link&#34; href=&#34;https://brew.sh/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Homebrew&lt;/a&gt;:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;brew install youtube-dl
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Or with &lt;a class=&#34;link&#34; href=&#34;https://www.macports.org/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;MacPorts&lt;/a&gt;:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo port install youtube-dl
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Alternatively, refer to the &lt;a class=&#34;link&#34; href=&#34;#developer-instructions&#34; &gt;developer instructions&lt;/a&gt; for how to check out and work with the git repository. For further options, including PGP signatures, see the &lt;a class=&#34;link&#34; href=&#34;https://ytdl-org.github.io/youtube-dl/download.html&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;youtube-dl Download Page&lt;/a&gt;.&lt;/p&gt;
&lt;h1 id=&#34;description&#34;&gt;DESCRIPTION
&lt;/h1&gt;&lt;p&gt;&lt;strong&gt;youtube-dl&lt;/strong&gt; is a command-line program to download videos from YouTube.com and a few more sites. It requires the Python interpreter, version 2.6, 2.7, or 3.2+, and it is not platform specific. It should work on your Unix box, on Windows or on macOS. It is released to the public domain, which means you can modify it, redistribute it or use it however you like.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;youtube-dl [OPTIONS] URL [URL...]
&lt;/code&gt;&lt;/pre&gt;
&lt;h1 id=&#34;options&#34;&gt;OPTIONS
&lt;/h1&gt;&lt;pre&gt;&lt;code&gt;-h, --help                           Print this help text and exit
--version                            Print program version and exit
-U, --update                         Update this program to latest version.
                                     Make sure that you have sufficient
                                     permissions (run with sudo if needed)
-i, --ignore-errors                  Continue on download errors, for
                                     example to skip unavailable videos in a
                                     playlist
--abort-on-error                     Abort downloading of further videos (in
                                     the playlist or the command line) if an
                                     error occurs
--dump-user-agent                    Display the current browser
                                     identification
--list-extractors                    List all supported extractors
--extractor-descriptions             Output descriptions of all supported
                                     extractors
--force-generic-extractor            Force extraction to use the generic
                                     extractor
--default-search PREFIX              Use this prefix for unqualified URLs.
                                     For example &amp;quot;gvsearch2:&amp;quot; downloads two
                                     videos from google videos for youtube-
                                     dl &amp;quot;large apple&amp;quot;. Use the value &amp;quot;auto&amp;quot;
                                     to let youtube-dl guess (&amp;quot;auto_warning&amp;quot;
                                     to emit a warning when guessing).
                                     &amp;quot;error&amp;quot; just throws an error. The
                                     default value &amp;quot;fixup_error&amp;quot; repairs
                                     broken URLs, but emits an error if this
                                     is not possible instead of searching.
--ignore-config                      Do not read configuration files. When
                                     given in the global configuration file
                                     /etc/youtube-dl.conf: Do not read the
                                     user configuration in
                                     ~/.config/youtube-dl/config
                                     (%APPDATA%/youtube-dl/config.txt on
                                     Windows)
--config-location PATH               Location of the configuration file;
                                     either the path to the config or its
                                     containing directory.
--flat-playlist                      Do not extract the videos of a
                                     playlist, only list them.
--mark-watched                       Mark videos watched (YouTube only)
--no-mark-watched                    Do not mark videos watched (YouTube
                                     only)
--no-color                           Do not emit color codes in output
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&#34;network-options&#34;&gt;Network Options:
&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;--proxy URL                          Use the specified HTTP/HTTPS/SOCKS
                                     proxy. To enable SOCKS proxy, specify a
                                     proper scheme. For example
                                     socks5://127.0.0.1:1080/. Pass in an
                                     empty string (--proxy &amp;quot;&amp;quot;) for direct
                                     connection
--socket-timeout SECONDS             Time to wait before giving up, in
                                     seconds
--source-address IP                  Client-side IP address to bind to
-4, --force-ipv4                     Make all connections via IPv4
-6, --force-ipv6                     Make all connections via IPv6
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&#34;geo-restriction&#34;&gt;Geo Restriction:
&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;--geo-verification-proxy URL         Use this proxy to verify the IP address
                                     for some geo-restricted sites. The
                                     default proxy specified by --proxy (or
                                     none, if the option is not present) is
                                     used for the actual downloading.
--geo-bypass                         Bypass geographic restriction via
                                     faking X-Forwarded-For HTTP header
--no-geo-bypass                      Do not bypass geographic restriction
                                     via faking X-Forwarded-For HTTP header
--geo-bypass-country CODE            Force bypass geographic restriction
                                     with explicitly provided two-letter ISO
                                     3166-2 country code
--geo-bypass-ip-block IP_BLOCK       Force bypass geographic restriction
                                     with explicitly provided IP block in
                                     CIDR notation
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&#34;video-selection&#34;&gt;Video Selection:
&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;--playlist-start NUMBER              Playlist video to start at (default is
                                     1)
--playlist-end NUMBER                Playlist video to end at (default is
                                     last)
--playlist-items ITEM_SPEC           Playlist video items to download.
                                     Specify indices of the videos in the
                                     playlist separated by commas like: &amp;quot;--
                                     playlist-items 1,2,5,8&amp;quot; if you want to
                                     download videos indexed 1, 2, 5, 8 in
                                     the playlist. You can specify range: &amp;quot;
                                     --playlist-items 1-3,7,10-13&amp;quot;, it will
                                     download the videos at index 1, 2, 3,
                                     7, 10, 11, 12 and 13.
--match-title REGEX                  Download only matching titles (regex or
                                     caseless sub-string)
--reject-title REGEX                 Skip download for matching titles
                                     (regex or caseless sub-string)
--max-downloads NUMBER               Abort after downloading NUMBER files
--min-filesize SIZE                  Do not download any videos smaller than
                                     SIZE (e.g. 50k or 44.6m)
--max-filesize SIZE                  Do not download any videos larger than
                                     SIZE (e.g. 50k or 44.6m)
--date DATE                          Download only videos uploaded in this
                                     date
--datebefore DATE                    Download only videos uploaded on or
                                     before this date (i.e. inclusive)
--dateafter DATE                     Download only videos uploaded on or
                                     after this date (i.e. inclusive)
--min-views COUNT                    Do not download any videos with less
                                     than COUNT views
--max-views COUNT                    Do not download any videos with more
                                     than COUNT views
--match-filter FILTER                Generic video filter. Specify any key
                                     (see the &amp;quot;OUTPUT TEMPLATE&amp;quot; for a list
                                     of available keys) to match if the key
                                     is present, !key to check if the key is
                                     not present, key &amp;gt; NUMBER (like
                                     &amp;quot;comment_count &amp;gt; 12&amp;quot;, also works with
                                     &amp;gt;=, &amp;lt;, &amp;lt;=, !=, =) to compare against a
                                     number, key = &#39;LITERAL&#39; (like &amp;quot;uploader
                                     = &#39;Mike Smith&#39;&amp;quot;, also works with !=) to
                                     match against a string literal and &amp;amp; to
                                     require multiple matches. Values which
                                     are not known are excluded unless you
                                     put a question mark (?) after the
                                     operator. For example, to only match
                                     videos that have been liked more than
                                     100 times and disliked less than 50
                                     times (or the dislike functionality is
                                     not available at the given service),
                                     but who also have a description, use
                                     --match-filter &amp;quot;like_count &amp;gt; 100 &amp;amp;
                                     dislike_count &amp;lt;? 50 &amp;amp; description&amp;quot; .
--no-playlist                        Download only the video, if the URL
                                     refers to a video and a playlist.
--yes-playlist                       Download the playlist, if the URL
                                     refers to a video and a playlist.
--age-limit YEARS                    Download only videos suitable for the
                                     given age
--download-archive FILE              Download only videos not listed in the
                                     archive file. Record the IDs of all
                                     downloaded videos in it.
--include-ads                        Download advertisements as well
                                     (experimental)
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&#34;download-options&#34;&gt;Download Options:
&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;-r, --limit-rate RATE                Maximum download rate in bytes per
                                     second (e.g. 50K or 4.2M)
-R, --retries RETRIES                Number of retries (default is 10), or
                                     &amp;quot;infinite&amp;quot;.
--fragment-retries RETRIES           Number of retries for a fragment
                                     (default is 10), or &amp;quot;infinite&amp;quot; (DASH,
                                     hlsnative and ISM)
--skip-unavailable-fragments         Skip unavailable fragments (DASH,
                                     hlsnative and ISM)
--abort-on-unavailable-fragment      Abort downloading when some fragment is
                                     not available
--keep-fragments                     Keep downloaded fragments on disk after
                                     downloading is finished; fragments are
                                     erased by default
--buffer-size SIZE                   Size of download buffer (e.g. 1024 or
                                     16K) (default is 1024)
--no-resize-buffer                   Do not automatically adjust the buffer
                                     size. By default, the buffer size is
                                     automatically resized from an initial
                                     value of SIZE.
--http-chunk-size SIZE               Size of a chunk for chunk-based HTTP
                                     downloading (e.g. 10485760 or 10M)
                                     (default is disabled). May be useful
                                     for bypassing bandwidth throttling
                                     imposed by a webserver (experimental)
--playlist-reverse                   Download playlist videos in reverse
                                     order
--playlist-random                    Download playlist videos in random
                                     order
--xattr-set-filesize                 Set file xattribute ytdl.filesize with
                                     expected file size
--hls-prefer-native                  Use the native HLS downloader instead
                                     of ffmpeg
--hls-prefer-ffmpeg                  Use ffmpeg instead of the native HLS
                                     downloader
--hls-use-mpegts                     Use the mpegts container for HLS
                                     videos, allowing to play the video
                                     while downloading (some players may not
                                     be able to play it)
--external-downloader COMMAND        Use the specified external downloader.
                                     Currently supports aria2c,avconv,axel,c
                                     url,ffmpeg,httpie,wget
--external-downloader-args ARGS      Give these arguments to the external
                                     downloader
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&#34;filesystem-options&#34;&gt;Filesystem Options:
&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;-a, --batch-file FILE                File containing URLs to download (&#39;-&#39;
                                     for stdin), one URL per line. Lines
                                     starting with &#39;#&#39;, &#39;;&#39; or &#39;]&#39; are
                                     considered as comments and ignored.
--id                                 Use only video ID in file name
-o, --output TEMPLATE                Output filename template, see the
                                     &amp;quot;OUTPUT TEMPLATE&amp;quot; for all the info
--output-na-placeholder PLACEHOLDER  Placeholder value for unavailable meta
                                     fields in output filename template
                                     (default is &amp;quot;NA&amp;quot;)
--autonumber-start NUMBER            Specify the start value for
                                     %(autonumber)s (default is 1)
--restrict-filenames                 Restrict filenames to only ASCII
                                     characters, and avoid &amp;quot;&amp;amp;&amp;quot; and spaces in
                                     filenames
-w, --no-overwrites                  Do not overwrite files
-c, --continue                       Force resume of partially downloaded
                                     files. By default, youtube-dl will
                                     resume downloads if possible.
--no-continue                        Do not resume partially downloaded
                                     files (restart from beginning)
--no-part                            Do not use .part files - write directly
                                     into output file
--no-mtime                           Do not use the Last-modified header to
                                     set the file modification time
--write-description                  Write video description to a
                                     .description file
--write-info-json                    Write video metadata to a .info.json
                                     file
--write-annotations                  Write video annotations to a
                                     .annotations.xml file
--load-info-json FILE                JSON file containing the video
                                     information (created with the &amp;quot;--write-
                                     info-json&amp;quot; option)
--cookies FILE                       File to read cookies from and dump
                                     cookie jar in
--cache-dir DIR                      Location in the filesystem where
                                     youtube-dl can store some downloaded
                                     information permanently. By default
                                     $XDG_CACHE_HOME/youtube-dl or
                                     ~/.cache/youtube-dl . At the moment,
                                     only YouTube player files (for videos
                                     with obfuscated signatures) are cached,
                                     but that may change.
--no-cache-dir                       Disable filesystem caching
--rm-cache-dir                       Delete all filesystem cache files
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&#34;thumbnail-options&#34;&gt;Thumbnail Options:
&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;--write-thumbnail                    Write thumbnail image to disk
--write-all-thumbnails               Write all thumbnail image formats to
                                     disk
--list-thumbnails                    Simulate and list all available
                                     thumbnail formats
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&#34;verbosity--simulation-options&#34;&gt;Verbosity / Simulation Options:
&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;-q, --quiet                          Activate quiet mode
--no-warnings                        Ignore warnings
-s, --simulate                       Do not download the video and do not
                                     write anything to disk
--skip-download                      Do not download the video
-g, --get-url                        Simulate, quiet but print URL
-e, --get-title                      Simulate, quiet but print title
--get-id                             Simulate, quiet but print id
--get-thumbnail                      Simulate, quiet but print thumbnail URL
--get-description                    Simulate, quiet but print video
                                     description
--get-duration                       Simulate, quiet but print video length
--get-filename                       Simulate, quiet but print output
                                     filename
--get-format                         Simulate, quiet but print output format
-j, --dump-json                      Simulate, quiet but print JSON
                                     information. See the &amp;quot;OUTPUT TEMPLATE&amp;quot;
                                     for a description of available keys.
-J, --dump-single-json               Simulate, quiet but print JSON
                                     information for each command-line
                                     argument. If the URL refers to a
                                     playlist, dump the whole playlist
                                     information in a single line.
--print-json                         Be quiet and print the video
                                     information as JSON (video is still
                                     being downloaded).
--newline                            Output progress bar as new lines
--no-progress                        Do not print progress bar
--console-title                      Display progress in console titlebar
-v, --verbose                        Print various debugging information
--dump-pages                         Print downloaded pages encoded using
                                     base64 to debug problems (very verbose)
--write-pages                        Write downloaded intermediary pages to
                                     files in the current directory to debug
                                     problems
--print-traffic                      Display sent and read HTTP traffic
-C, --call-home                      Contact the youtube-dl server for
                                     debugging
--no-call-home                       Do NOT contact the youtube-dl server
                                     for debugging
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&#34;workarounds&#34;&gt;Workarounds:
&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;--encoding ENCODING                  Force the specified encoding
                                     (experimental)
--no-check-certificate               Suppress HTTPS certificate validation
--prefer-insecure                    Use an unencrypted connection to
                                     retrieve information about the video.
                                     (Currently supported only for YouTube)
--user-agent UA                      Specify a custom user agent
--referer URL                        Specify a custom referer, use if the
                                     video access is restricted to one
                                     domain
--add-header FIELD:VALUE             Specify a custom HTTP header and its
                                     value, separated by a colon &#39;:&#39;. You
                                     can use this option multiple times
--bidi-workaround                    Work around terminals that lack
                                     bidirectional text support. Requires
                                     bidiv or fribidi executable in PATH
--sleep-interval SECONDS             Number of seconds to sleep before each
                                     download when used alone or a lower
                                     bound of a range for randomized sleep
                                     before each download (minimum possible
                                     number of seconds to sleep) when used
                                     along with --max-sleep-interval.
--max-sleep-interval SECONDS         Upper bound of a range for randomized
                                     sleep before each download (maximum
                                     possible number of seconds to sleep).
                                     Must only be used along with --min-
                                     sleep-interval.
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&#34;video-format-options&#34;&gt;Video Format Options:
&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;-f, --format FORMAT                  Video format code, see the &amp;quot;FORMAT
                                     SELECTION&amp;quot; for all the info
--all-formats                        Download all available video formats
--prefer-free-formats                Prefer free video formats unless a
                                     specific one is requested
-F, --list-formats                   List all available formats of requested
                                     videos
--youtube-skip-dash-manifest         Do not download the DASH manifests and
                                     related data on YouTube videos
--merge-output-format FORMAT         If a merge is required (e.g.
                                     bestvideo+bestaudio), output to given
                                     container format. One of mkv, mp4, ogg,
                                     webm, flv. Ignored if no merge is
                                     required
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&#34;subtitle-options&#34;&gt;Subtitle Options:
&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;--write-sub                          Write subtitle file
--write-auto-sub                     Write automatically generated subtitle
                                     file (YouTube only)
--all-subs                           Download all the available subtitles of
                                     the video
--list-subs                          List all available subtitles for the
                                     video
--sub-format FORMAT                  Subtitle format, accepts formats
                                     preference, for example: &amp;quot;srt&amp;quot; or
                                     &amp;quot;ass/srt/best&amp;quot;
--sub-lang LANGS                     Languages of the subtitles to download
                                     (optional) separated by commas, use
                                     --list-subs for available language tags
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&#34;authentication-options&#34;&gt;Authentication Options:
&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;-u, --username USERNAME              Login with this account ID
-p, --password PASSWORD              Account password. If this option is
                                     left out, youtube-dl will ask
                                     interactively.
-2, --twofactor TWOFACTOR            Two-factor authentication code
-n, --netrc                          Use .netrc authentication data
--video-password PASSWORD            Video password (vimeo, youku)
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&#34;adobe-pass-options&#34;&gt;Adobe Pass Options:
&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;--ap-mso MSO                         Adobe Pass multiple-system operator (TV
                                     provider) identifier, use --ap-list-mso
                                     for a list of available MSOs
--ap-username USERNAME               Multiple-system operator account login
--ap-password PASSWORD               Multiple-system operator account
                                     password. If this option is left out,
                                     youtube-dl will ask interactively.
--ap-list-mso                        List all supported multiple-system
                                     operators
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&#34;post-processing-options&#34;&gt;Post-processing Options:
&lt;/h2&gt;&lt;pre&gt;&lt;code&gt;-x, --extract-audio                  Convert video files to audio-only files
                                     (requires ffmpeg/avconv and
                                     ffprobe/avprobe)
--audio-format FORMAT                Specify audio format: &amp;quot;best&amp;quot;, &amp;quot;aac&amp;quot;,
                                     &amp;quot;flac&amp;quot;, &amp;quot;mp3&amp;quot;, &amp;quot;m4a&amp;quot;, &amp;quot;opus&amp;quot;, &amp;quot;vorbis&amp;quot;,
                                     or &amp;quot;wav&amp;quot;; &amp;quot;best&amp;quot; by default; No effect
                                     without -x
--audio-quality QUALITY              Specify ffmpeg/avconv audio quality,
                                     insert a value between 0 (better) and 9
                                     (worse) for VBR or a specific bitrate
                                     like 128K (default 5)
--recode-video FORMAT                Encode the video to another format if
                                     necessary (currently supported:
                                     mp4|flv|ogg|webm|mkv|avi)
--postprocessor-args ARGS            Give these arguments to the
                                     postprocessor
-k, --keep-video                     Keep the video file on disk after the
                                     post-processing; the video is erased by
                                     default
--no-post-overwrites                 Do not overwrite post-processed files;
                                     the post-processed files are
                                     overwritten by default
--embed-subs                         Embed subtitles in the video (only for
                                     mp4, webm and mkv videos)
--embed-thumbnail                    Embed thumbnail in the audio as cover
                                     art
--add-metadata                       Write metadata to the video file
--metadata-from-title FORMAT         Parse additional metadata like song
                                     title / artist from the video title.
                                     The format syntax is the same as
                                     --output. Regular expression with named
                                     capture groups may also be used. The
                                     parsed parameters replace existing
                                     values. Example: --metadata-from-title
                                     &amp;quot;%(artist)s - %(title)s&amp;quot; matches a
                                     title like &amp;quot;Coldplay - Paradise&amp;quot;.
                                     Example (regex): --metadata-from-title
                                     &amp;quot;(?P&amp;lt;artist&amp;gt;.+?) - (?P&amp;lt;title&amp;gt;.+)&amp;quot;
--xattrs                             Write metadata to the video file&#39;s
                                     xattrs (using dublin core and xdg
                                     standards)
--fixup POLICY                       Automatically correct known faults of
                                     the file. One of never (do nothing),
                                     warn (only emit a warning),
                                     detect_or_warn (the default; fix file
                                     if we can, warn otherwise)
--prefer-avconv                      Prefer avconv over ffmpeg for running
                                     the postprocessors
--prefer-ffmpeg                      Prefer ffmpeg over avconv for running
                                     the postprocessors (default)
--ffmpeg-location PATH               Location of the ffmpeg/avconv binary;
                                     either the path to the binary or its
                                     containing directory.
--exec CMD                           Execute a command on the file after
                                     downloading and post-processing,
                                     similar to find&#39;s -exec syntax.
                                     Example: --exec &#39;adb push {}
                                     /sdcard/Music/ &amp;amp;&amp;amp; rm {}&#39;
--convert-subs FORMAT                Convert the subtitles to other format
                                     (currently supported: srt|ass|vtt|lrc)
&lt;/code&gt;&lt;/pre&gt;
&lt;h1 id=&#34;configuration&#34;&gt;CONFIGURATION
&lt;/h1&gt;&lt;p&gt;You can configure youtube-dl by placing any supported command line option to a configuration file. On Linux and macOS, the system wide configuration file is located at &lt;code&gt;/etc/youtube-dl.conf&lt;/code&gt; and the user wide configuration file at &lt;code&gt;~/.config/youtube-dl/config&lt;/code&gt;. On Windows, the user wide configuration file locations are &lt;code&gt;%APPDATA%\youtube-dl\config.txt&lt;/code&gt; or &lt;code&gt;C:\Users\&amp;lt;user name&amp;gt;\youtube-dl.conf&lt;/code&gt;. Note that by default configuration file may not exist so you may need to create it yourself.&lt;/p&gt;
&lt;p&gt;For example, with the following configuration file youtube-dl will always extract the audio, not copy the mtime, use a proxy and save all videos under &lt;code&gt;Movies&lt;/code&gt; directory in your home directory:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt; 1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 3
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 4
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 5
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 6
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 7
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 8
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 9
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;10
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;11
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;12
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;13
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-fallback&#34; data-lang=&#34;fallback&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;# Lines starting with # are comments
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;# Always extract audio
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;-x
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;# Do not copy the mtime
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;--no-mtime
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;# Use this proxy
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;--proxy 127.0.0.1:3128
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;# Save all videos under Movies directory in your home directory
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;-o ~/Movies/%(title)s.%(ext)s
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Note that options in configuration file are just the same options aka switches used in regular command line calls thus there &lt;strong&gt;must be no whitespace&lt;/strong&gt; after &lt;code&gt;-&lt;/code&gt; or &lt;code&gt;--&lt;/code&gt;, e.g. &lt;code&gt;-o&lt;/code&gt; or &lt;code&gt;--proxy&lt;/code&gt; but not &lt;code&gt;- o&lt;/code&gt; or &lt;code&gt;-- proxy&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;You can use &lt;code&gt;--ignore-config&lt;/code&gt; if you want to disable the configuration file for a particular youtube-dl run.&lt;/p&gt;
&lt;p&gt;You can also use &lt;code&gt;--config-location&lt;/code&gt; if you want to use custom configuration file for a particular youtube-dl run.&lt;/p&gt;
&lt;h3 id=&#34;authentication-with-netrc-file&#34;&gt;Authentication with &lt;code&gt;.netrc&lt;/code&gt; file
&lt;/h3&gt;&lt;p&gt;You may also want to configure automatic credentials storage for extractors that support authentication (by providing login and password with &lt;code&gt;--username&lt;/code&gt; and &lt;code&gt;--password&lt;/code&gt;) in order not to pass credentials as command line arguments on every youtube-dl execution and prevent tracking plain text passwords in the shell command history. You can achieve this using a &lt;a class=&#34;link&#34; href=&#34;https://stackoverflow.com/tags/.netrc/info&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;code&gt;.netrc&lt;/code&gt; file&lt;/a&gt; on a per extractor basis. For that you will need to create a &lt;code&gt;.netrc&lt;/code&gt; file in your &lt;code&gt;$HOME&lt;/code&gt; and restrict permissions to read/write by only you:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-fallback&#34; data-lang=&#34;fallback&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;touch $HOME/.netrc
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;chmod a-rwx,u+rw $HOME/.netrc
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;After that you can add credentials for an extractor in the following format, where &lt;em&gt;extractor&lt;/em&gt; is the name of the extractor in lowercase:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-fallback&#34; data-lang=&#34;fallback&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;machine &amp;lt;extractor&amp;gt; login &amp;lt;login&amp;gt; password &amp;lt;password&amp;gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;For example:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-fallback&#34; data-lang=&#34;fallback&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;machine youtube login myaccount@gmail.com password my_youtube_password
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;machine twitch login my_twitch_account_name password my_twitch_password
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;To activate authentication with the &lt;code&gt;.netrc&lt;/code&gt; file you should pass &lt;code&gt;--netrc&lt;/code&gt; to youtube-dl or place it in the &lt;a class=&#34;link&#34; href=&#34;#configuration&#34; &gt;configuration file&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;On Windows you may also need to setup the &lt;code&gt;%HOME%&lt;/code&gt; environment variable manually. For example:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-fallback&#34; data-lang=&#34;fallback&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;set HOME=%USERPROFILE%
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;h1 id=&#34;output-template&#34;&gt;OUTPUT TEMPLATE
&lt;/h1&gt;&lt;p&gt;The &lt;code&gt;-o&lt;/code&gt; option allows users to indicate a template for the output file names.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;tl;dr:&lt;/strong&gt; &lt;a class=&#34;link&#34; href=&#34;#output-template-examples&#34; &gt;navigate me to examples&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The basic usage is not to set any template arguments when downloading a single file, like in &lt;code&gt;youtube-dl -o funny_video.flv &amp;quot;https://some/video&amp;quot;&lt;/code&gt;. However, it may contain special sequences that will be replaced when downloading each video. The special sequences may be formatted according to &lt;a class=&#34;link&#34; href=&#34;https://docs.python.org/2/library/stdtypes.html#string-formatting&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;python string formatting operations&lt;/a&gt;. For example, &lt;code&gt;%(NAME)s&lt;/code&gt; or &lt;code&gt;%(NAME)05d&lt;/code&gt;. To clarify, that is a percent symbol followed by a name in parentheses, followed by formatting operations. Allowed names along with sequence type are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;id&lt;/code&gt; (string): Video identifier&lt;/li&gt;
&lt;li&gt;&lt;code&gt;title&lt;/code&gt; (string): Video title&lt;/li&gt;
&lt;li&gt;&lt;code&gt;url&lt;/code&gt; (string): Video URL&lt;/li&gt;
&lt;li&gt;&lt;code&gt;ext&lt;/code&gt; (string): Video filename extension&lt;/li&gt;
&lt;li&gt;&lt;code&gt;alt_title&lt;/code&gt; (string): A secondary title of the video&lt;/li&gt;
&lt;li&gt;&lt;code&gt;display_id&lt;/code&gt; (string): An alternative identifier for the video&lt;/li&gt;
&lt;li&gt;&lt;code&gt;uploader&lt;/code&gt; (string): Full name of the video uploader&lt;/li&gt;
&lt;li&gt;&lt;code&gt;license&lt;/code&gt; (string): License name the video is licensed under&lt;/li&gt;
&lt;li&gt;&lt;code&gt;creator&lt;/code&gt; (string): The creator of the video&lt;/li&gt;
&lt;li&gt;&lt;code&gt;release_date&lt;/code&gt; (string): The date (YYYYMMDD) when the video was released&lt;/li&gt;
&lt;li&gt;&lt;code&gt;timestamp&lt;/code&gt; (numeric): UNIX timestamp of the moment the video became available&lt;/li&gt;
&lt;li&gt;&lt;code&gt;upload_date&lt;/code&gt; (string): Video upload date (YYYYMMDD)&lt;/li&gt;
&lt;li&gt;&lt;code&gt;uploader_id&lt;/code&gt; (string): Nickname or id of the video uploader&lt;/li&gt;
&lt;li&gt;&lt;code&gt;channel&lt;/code&gt; (string): Full name of the channel the video is uploaded on&lt;/li&gt;
&lt;li&gt;&lt;code&gt;channel_id&lt;/code&gt; (string): Id of the channel&lt;/li&gt;
&lt;li&gt;&lt;code&gt;location&lt;/code&gt; (string): Physical location where the video was filmed&lt;/li&gt;
&lt;li&gt;&lt;code&gt;duration&lt;/code&gt; (numeric): Length of the video in seconds&lt;/li&gt;
&lt;li&gt;&lt;code&gt;view_count&lt;/code&gt; (numeric): How many users have watched the video on the platform&lt;/li&gt;
&lt;li&gt;&lt;code&gt;like_count&lt;/code&gt; (numeric): Number of positive ratings of the video&lt;/li&gt;
&lt;li&gt;&lt;code&gt;dislike_count&lt;/code&gt; (numeric): Number of negative ratings of the video&lt;/li&gt;
&lt;li&gt;&lt;code&gt;repost_count&lt;/code&gt; (numeric): Number of reposts of the video&lt;/li&gt;
&lt;li&gt;&lt;code&gt;average_rating&lt;/code&gt; (numeric): Average rating give by users, the scale used depends on the webpage&lt;/li&gt;
&lt;li&gt;&lt;code&gt;comment_count&lt;/code&gt; (numeric): Number of comments on the video&lt;/li&gt;
&lt;li&gt;&lt;code&gt;age_limit&lt;/code&gt; (numeric): Age restriction for the video (years)&lt;/li&gt;
&lt;li&gt;&lt;code&gt;is_live&lt;/code&gt; (boolean): Whether this video is a live stream or a fixed-length video&lt;/li&gt;
&lt;li&gt;&lt;code&gt;start_time&lt;/code&gt; (numeric): Time in seconds where the reproduction should start, as specified in the URL&lt;/li&gt;
&lt;li&gt;&lt;code&gt;end_time&lt;/code&gt; (numeric): Time in seconds where the reproduction should end, as specified in the URL&lt;/li&gt;
&lt;li&gt;&lt;code&gt;format&lt;/code&gt; (string): A human-readable description of the format&lt;/li&gt;
&lt;li&gt;&lt;code&gt;format_id&lt;/code&gt; (string): Format code specified by &lt;code&gt;--format&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;format_note&lt;/code&gt; (string): Additional info about the format&lt;/li&gt;
&lt;li&gt;&lt;code&gt;width&lt;/code&gt; (numeric): Width of the video&lt;/li&gt;
&lt;li&gt;&lt;code&gt;height&lt;/code&gt; (numeric): Height of the video&lt;/li&gt;
&lt;li&gt;&lt;code&gt;resolution&lt;/code&gt; (string): Textual description of width and height&lt;/li&gt;
&lt;li&gt;&lt;code&gt;tbr&lt;/code&gt; (numeric): Average bitrate of audio and video in KBit/s&lt;/li&gt;
&lt;li&gt;&lt;code&gt;abr&lt;/code&gt; (numeric): Average audio bitrate in KBit/s&lt;/li&gt;
&lt;li&gt;&lt;code&gt;acodec&lt;/code&gt; (string): Name of the audio codec in use&lt;/li&gt;
&lt;li&gt;&lt;code&gt;asr&lt;/code&gt; (numeric): Audio sampling rate in Hertz&lt;/li&gt;
&lt;li&gt;&lt;code&gt;vbr&lt;/code&gt; (numeric): Average video bitrate in KBit/s&lt;/li&gt;
&lt;li&gt;&lt;code&gt;fps&lt;/code&gt; (numeric): Frame rate&lt;/li&gt;
&lt;li&gt;&lt;code&gt;vcodec&lt;/code&gt; (string): Name of the video codec in use&lt;/li&gt;
&lt;li&gt;&lt;code&gt;container&lt;/code&gt; (string): Name of the container format&lt;/li&gt;
&lt;li&gt;&lt;code&gt;filesize&lt;/code&gt; (numeric): The number of bytes, if known in advance&lt;/li&gt;
&lt;li&gt;&lt;code&gt;filesize_approx&lt;/code&gt; (numeric): An estimate for the number of bytes&lt;/li&gt;
&lt;li&gt;&lt;code&gt;protocol&lt;/code&gt; (string): The protocol that will be used for the actual download&lt;/li&gt;
&lt;li&gt;&lt;code&gt;extractor&lt;/code&gt; (string): Name of the extractor&lt;/li&gt;
&lt;li&gt;&lt;code&gt;extractor_key&lt;/code&gt; (string): Key name of the extractor&lt;/li&gt;
&lt;li&gt;&lt;code&gt;epoch&lt;/code&gt; (numeric): Unix epoch when creating the file&lt;/li&gt;
&lt;li&gt;&lt;code&gt;autonumber&lt;/code&gt; (numeric): Number that will be increased with each download, starting at &lt;code&gt;--autonumber-start&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;playlist&lt;/code&gt; (string): Name or id of the playlist that contains the video&lt;/li&gt;
&lt;li&gt;&lt;code&gt;playlist_index&lt;/code&gt; (numeric): Index of the video in the playlist padded with leading zeros according to the total length of the playlist&lt;/li&gt;
&lt;li&gt;&lt;code&gt;playlist_id&lt;/code&gt; (string): Playlist identifier&lt;/li&gt;
&lt;li&gt;&lt;code&gt;playlist_title&lt;/code&gt; (string): Playlist title&lt;/li&gt;
&lt;li&gt;&lt;code&gt;playlist_uploader&lt;/code&gt; (string): Full name of the playlist uploader&lt;/li&gt;
&lt;li&gt;&lt;code&gt;playlist_uploader_id&lt;/code&gt; (string): Nickname or id of the playlist uploader&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Available for the video that belongs to some logical chapter or section:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;chapter&lt;/code&gt; (string): Name or title of the chapter the video belongs to&lt;/li&gt;
&lt;li&gt;&lt;code&gt;chapter_number&lt;/code&gt; (numeric): Number of the chapter the video belongs to&lt;/li&gt;
&lt;li&gt;&lt;code&gt;chapter_id&lt;/code&gt; (string): Id of the chapter the video belongs to&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Available for the video that is an episode of some series or programme:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;series&lt;/code&gt; (string): Title of the series or programme the video episode belongs to&lt;/li&gt;
&lt;li&gt;&lt;code&gt;season&lt;/code&gt; (string): Title of the season the video episode belongs to&lt;/li&gt;
&lt;li&gt;&lt;code&gt;season_number&lt;/code&gt; (numeric): Number of the season the video episode belongs to&lt;/li&gt;
&lt;li&gt;&lt;code&gt;season_id&lt;/code&gt; (string): Id of the season the video episode belongs to&lt;/li&gt;
&lt;li&gt;&lt;code&gt;episode&lt;/code&gt; (string): Title of the video episode&lt;/li&gt;
&lt;li&gt;&lt;code&gt;episode_number&lt;/code&gt; (numeric): Number of the video episode within a season&lt;/li&gt;
&lt;li&gt;&lt;code&gt;episode_id&lt;/code&gt; (string): Id of the video episode&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Available for the media that is a track or a part of a music album:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;track&lt;/code&gt; (string): Title of the track&lt;/li&gt;
&lt;li&gt;&lt;code&gt;track_number&lt;/code&gt; (numeric): Number of the track within an album or a disc&lt;/li&gt;
&lt;li&gt;&lt;code&gt;track_id&lt;/code&gt; (string): Id of the track&lt;/li&gt;
&lt;li&gt;&lt;code&gt;artist&lt;/code&gt; (string): Artist(s) of the track&lt;/li&gt;
&lt;li&gt;&lt;code&gt;genre&lt;/code&gt; (string): Genre(s) of the track&lt;/li&gt;
&lt;li&gt;&lt;code&gt;album&lt;/code&gt; (string): Title of the album the track belongs to&lt;/li&gt;
&lt;li&gt;&lt;code&gt;album_type&lt;/code&gt; (string): Type of the album&lt;/li&gt;
&lt;li&gt;&lt;code&gt;album_artist&lt;/code&gt; (string): List of all artists appeared on the album&lt;/li&gt;
&lt;li&gt;&lt;code&gt;disc_number&lt;/code&gt; (numeric): Number of the disc or other physical medium the track belongs to&lt;/li&gt;
&lt;li&gt;&lt;code&gt;release_year&lt;/code&gt; (numeric): Year (YYYY) when the album was released&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Each aforementioned sequence when referenced in an output template will be replaced by the actual value corresponding to the sequence name. Note that some of the sequences are not guaranteed to be present since they depend on the metadata obtained by a particular extractor. Such sequences will be replaced with placeholder value provided with &lt;code&gt;--output-na-placeholder&lt;/code&gt; (&lt;code&gt;NA&lt;/code&gt; by default).&lt;/p&gt;
&lt;p&gt;For example for &lt;code&gt;-o %(title)s-%(id)s.%(ext)s&lt;/code&gt; and an mp4 video with title &lt;code&gt;youtube-dl test video&lt;/code&gt; and id &lt;code&gt;BaW_jenozKcj&lt;/code&gt;, this will result in a &lt;code&gt;youtube-dl test video-BaW_jenozKcj.mp4&lt;/code&gt; file created in the current directory.&lt;/p&gt;
&lt;p&gt;For numeric sequences you can use numeric related formatting, for example, &lt;code&gt;%(view_count)05d&lt;/code&gt; will result in a string with view count padded with zeros up to 5 characters, like in &lt;code&gt;00042&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Output templates can also contain arbitrary hierarchical path, e.g. &lt;code&gt;-o &#39;%(playlist)s/%(playlist_index)s - %(title)s.%(ext)s&#39;&lt;/code&gt; which will result in downloading each video in a directory corresponding to this path template. Any missing directory will be automatically created for you.&lt;/p&gt;
&lt;p&gt;To use percent literals in an output template use &lt;code&gt;%%&lt;/code&gt;. To output to stdout use &lt;code&gt;-o -&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;The current default template is &lt;code&gt;%(title)s-%(id)s.%(ext)s&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;In some cases, you don&amp;rsquo;t want special characters such as 中, spaces, or &amp;amp;, such as when transferring the downloaded filename to a Windows system or the filename through an 8bit-unsafe channel. In these cases, add the &lt;code&gt;--restrict-filenames&lt;/code&gt; flag to get a shorter title.&lt;/p&gt;
&lt;h4 id=&#34;output-template-and-windows-batch-files&#34;&gt;Output template and Windows batch files
&lt;/h4&gt;&lt;p&gt;If you are using an output template inside a Windows batch file then you must escape plain percent characters (&lt;code&gt;%&lt;/code&gt;) by doubling, so that &lt;code&gt;-o &amp;quot;%(title)s-%(id)s.%(ext)s&amp;quot;&lt;/code&gt; should become &lt;code&gt;-o &amp;quot;%%(title)s-%%(id)s.%%(ext)s&amp;quot;&lt;/code&gt;. However you should not touch &lt;code&gt;%&lt;/code&gt;&amp;rsquo;s that are not plain characters, e.g. environment variables for expansion should stay intact: &lt;code&gt;-o &amp;quot;C:\%HOMEPATH%\Desktop\%%(title)s.%%(ext)s&amp;quot;&lt;/code&gt;.&lt;/p&gt;
&lt;h4 id=&#34;output-template-examples&#34;&gt;Output template examples
&lt;/h4&gt;&lt;p&gt;Note that on Windows you may need to use double quotes instead of single.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt; 1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 3
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 4
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 5
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 6
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 7
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 8
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 9
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;10
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;11
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;12
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;13
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;14
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;15
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;16
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;17
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;18
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;19
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;20
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ youtube-dl --get-filename -o &lt;span class=&#34;s1&#34;&gt;&amp;#39;%(title)s.%(ext)s&amp;#39;&lt;/span&gt; BaW_jenozKc
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;youtube-dl &lt;span class=&#34;nb&#34;&gt;test&lt;/span&gt; video &lt;span class=&#34;s1&#34;&gt;&amp;#39;&amp;#39;&lt;/span&gt;_ä↭𝕐.mp4    &lt;span class=&#34;c1&#34;&gt;# All kinds of weird characters&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ youtube-dl --get-filename -o &lt;span class=&#34;s1&#34;&gt;&amp;#39;%(title)s.%(ext)s&amp;#39;&lt;/span&gt; BaW_jenozKc --restrict-filenames
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;youtube-dl_test_video_.mp4          &lt;span class=&#34;c1&#34;&gt;# A simple file name&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# Download YouTube playlist videos in separate directory indexed by video order in a playlist&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ youtube-dl -o &lt;span class=&#34;s1&#34;&gt;&amp;#39;%(playlist)s/%(playlist_index)s - %(title)s.%(ext)s&amp;#39;&lt;/span&gt; https://www.youtube.com/playlist?list&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;PLwiyx1dc3P2JR9N8gQaQN_BCvlSlap7re
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# Download all playlists of YouTube channel/user keeping each playlist in separate directory:&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ youtube-dl -o &lt;span class=&#34;s1&#34;&gt;&amp;#39;%(uploader)s/%(playlist)s/%(playlist_index)s - %(title)s.%(ext)s&amp;#39;&lt;/span&gt; https://www.youtube.com/user/TheLinuxFoundation/playlists
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# Download Udemy course keeping each chapter in separate directory under MyVideos directory in your home&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ youtube-dl -u user -p password -o &lt;span class=&#34;s1&#34;&gt;&amp;#39;~/MyVideos/%(playlist)s/%(chapter_number)s - %(chapter)s/%(title)s.%(ext)s&amp;#39;&lt;/span&gt; https://www.udemy.com/java-tutorial/
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# Download entire series season keeping each series and each season in separate directory under C:/MyVideos&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ youtube-dl -o &lt;span class=&#34;s2&#34;&gt;&amp;#34;C:/MyVideos/%(series)s/%(season_number)s - %(season)s/%(episode_number)s - %(episode)s.%(ext)s&amp;#34;&lt;/span&gt; https://videomore.ru/kino_v_detalayah/5_sezon/367617
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# Stream the video being downloaded to stdout&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ youtube-dl -o - BaW_jenozKc
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;h1 id=&#34;format-selection&#34;&gt;FORMAT SELECTION
&lt;/h1&gt;&lt;p&gt;By default youtube-dl tries to download the best available quality, i.e. if you want the best quality you &lt;strong&gt;don&amp;rsquo;t need&lt;/strong&gt; to pass any special options, youtube-dl will guess it for you by &lt;strong&gt;default&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;But sometimes you may want to download in a different format, for example when you are on a slow or intermittent connection. The key mechanism for achieving this is so-called &lt;em&gt;format selection&lt;/em&gt; based on which you can explicitly specify desired format, select formats based on some criterion or criteria, setup precedence and much more.&lt;/p&gt;
&lt;p&gt;The general syntax for format selection is &lt;code&gt;--format FORMAT&lt;/code&gt; or shorter &lt;code&gt;-f FORMAT&lt;/code&gt; where &lt;code&gt;FORMAT&lt;/code&gt; is a &lt;em&gt;selector expression&lt;/em&gt;, i.e. an expression that describes format or formats you would like to download.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;tl;dr:&lt;/strong&gt; &lt;a class=&#34;link&#34; href=&#34;#format-selection-examples&#34; &gt;navigate me to examples&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The simplest case is requesting a specific format, for example with &lt;code&gt;-f 22&lt;/code&gt; you can download the format with format code equal to 22. You can get the list of available format codes for particular video using &lt;code&gt;--list-formats&lt;/code&gt; or &lt;code&gt;-F&lt;/code&gt;. Note that these format codes are extractor specific.&lt;/p&gt;
&lt;p&gt;You can also use a file extension (currently &lt;code&gt;3gp&lt;/code&gt;, &lt;code&gt;aac&lt;/code&gt;, &lt;code&gt;flv&lt;/code&gt;, &lt;code&gt;m4a&lt;/code&gt;, &lt;code&gt;mp3&lt;/code&gt;, &lt;code&gt;mp4&lt;/code&gt;, &lt;code&gt;ogg&lt;/code&gt;, &lt;code&gt;wav&lt;/code&gt;, &lt;code&gt;webm&lt;/code&gt; are supported) to download the best quality format of a particular file extension served as a single file, e.g. &lt;code&gt;-f webm&lt;/code&gt; will download the best quality format with the &lt;code&gt;webm&lt;/code&gt; extension served as a single file.&lt;/p&gt;
&lt;p&gt;You can also use special names to select particular edge case formats:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;best&lt;/code&gt;: Select the best quality format represented by a single file with video and audio.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;worst&lt;/code&gt;: Select the worst quality format represented by a single file with video and audio.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;bestvideo&lt;/code&gt;: Select the best quality video-only format (e.g. DASH video). May not be available.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;worstvideo&lt;/code&gt;: Select the worst quality video-only format. May not be available.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;bestaudio&lt;/code&gt;: Select the best quality audio only-format. May not be available.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;worstaudio&lt;/code&gt;: Select the worst quality audio only-format. May not be available.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;For example, to download the worst quality video-only format you can use &lt;code&gt;-f worstvideo&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;If you want to download multiple videos and they don&amp;rsquo;t have the same formats available, you can specify the order of preference using slashes. Note that slash is left-associative, i.e. formats on the left hand side are preferred, for example &lt;code&gt;-f 22/17/18&lt;/code&gt; will download format 22 if it&amp;rsquo;s available, otherwise it will download format 17 if it&amp;rsquo;s available, otherwise it will download format 18 if it&amp;rsquo;s available, otherwise it will complain that no suitable formats are available for download.&lt;/p&gt;
&lt;p&gt;If you want to download several formats of the same video use a comma as a separator, e.g. &lt;code&gt;-f 22,17,18&lt;/code&gt; will download all these three formats, of course if they are available. Or a more sophisticated example combined with the precedence feature: &lt;code&gt;-f 136/137/mp4/bestvideo,140/m4a/bestaudio&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;You can also filter the video formats by putting a condition in brackets, as in &lt;code&gt;-f &amp;quot;best[height=720]&amp;quot;&lt;/code&gt; (or &lt;code&gt;-f &amp;quot;[filesize&amp;gt;10M]&amp;quot;&lt;/code&gt;).&lt;/p&gt;
&lt;p&gt;The following numeric meta fields can be used with comparisons &lt;code&gt;&amp;lt;&lt;/code&gt;, &lt;code&gt;&amp;lt;=&lt;/code&gt;, &lt;code&gt;&amp;gt;&lt;/code&gt;, &lt;code&gt;&amp;gt;=&lt;/code&gt;, &lt;code&gt;=&lt;/code&gt; (equals), &lt;code&gt;!=&lt;/code&gt; (not equals):&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;filesize&lt;/code&gt;: The number of bytes, if known in advance&lt;/li&gt;
&lt;li&gt;&lt;code&gt;width&lt;/code&gt;: Width of the video, if known&lt;/li&gt;
&lt;li&gt;&lt;code&gt;height&lt;/code&gt;: Height of the video, if known&lt;/li&gt;
&lt;li&gt;&lt;code&gt;tbr&lt;/code&gt;: Average bitrate of audio and video in KBit/s&lt;/li&gt;
&lt;li&gt;&lt;code&gt;abr&lt;/code&gt;: Average audio bitrate in KBit/s&lt;/li&gt;
&lt;li&gt;&lt;code&gt;vbr&lt;/code&gt;: Average video bitrate in KBit/s&lt;/li&gt;
&lt;li&gt;&lt;code&gt;asr&lt;/code&gt;: Audio sampling rate in Hertz&lt;/li&gt;
&lt;li&gt;&lt;code&gt;fps&lt;/code&gt;: Frame rate&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Also filtering work for comparisons &lt;code&gt;=&lt;/code&gt; (equals), &lt;code&gt;^=&lt;/code&gt; (starts with), &lt;code&gt;$=&lt;/code&gt; (ends with), &lt;code&gt;*=&lt;/code&gt; (contains) and following string meta fields:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;ext&lt;/code&gt;: File extension&lt;/li&gt;
&lt;li&gt;&lt;code&gt;acodec&lt;/code&gt;: Name of the audio codec in use&lt;/li&gt;
&lt;li&gt;&lt;code&gt;vcodec&lt;/code&gt;: Name of the video codec in use&lt;/li&gt;
&lt;li&gt;&lt;code&gt;container&lt;/code&gt;: Name of the container format&lt;/li&gt;
&lt;li&gt;&lt;code&gt;protocol&lt;/code&gt;: The protocol that will be used for the actual download, lower-case (&lt;code&gt;http&lt;/code&gt;, &lt;code&gt;https&lt;/code&gt;, &lt;code&gt;rtsp&lt;/code&gt;, &lt;code&gt;rtmp&lt;/code&gt;, &lt;code&gt;rtmpe&lt;/code&gt;, &lt;code&gt;mms&lt;/code&gt;, &lt;code&gt;f4m&lt;/code&gt;, &lt;code&gt;ism&lt;/code&gt;, &lt;code&gt;http_dash_segments&lt;/code&gt;, &lt;code&gt;m3u8&lt;/code&gt;, or &lt;code&gt;m3u8_native&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;&lt;code&gt;format_id&lt;/code&gt;: A short description of the format&lt;/li&gt;
&lt;li&gt;&lt;code&gt;language&lt;/code&gt;: Language code&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Any string comparison may be prefixed with negation &lt;code&gt;!&lt;/code&gt; in order to produce an opposite comparison, e.g. &lt;code&gt;!*=&lt;/code&gt; (does not contain).&lt;/p&gt;
&lt;p&gt;Note that none of the aforementioned meta fields are guaranteed to be present since this solely depends on the metadata obtained by particular extractor, i.e. the metadata offered by the video hoster.&lt;/p&gt;
&lt;p&gt;Formats for which the value is not known are excluded unless you put a question mark (&lt;code&gt;?&lt;/code&gt;) after the operator. You can combine format filters, so &lt;code&gt;-f &amp;quot;[height &amp;lt;=? 720][tbr&amp;gt;500]&amp;quot;&lt;/code&gt; selects up to 720p videos (or videos where the height is not known) with a bitrate of at least 500 KBit/s.&lt;/p&gt;
&lt;p&gt;You can merge the video and audio of two formats into a single file using &lt;code&gt;-f &amp;lt;video-format&amp;gt;+&amp;lt;audio-format&amp;gt;&lt;/code&gt; (requires ffmpeg or avconv installed), for example &lt;code&gt;-f bestvideo+bestaudio&lt;/code&gt; will download the best video-only format, the best audio-only format and mux them together with ffmpeg/avconv.&lt;/p&gt;
&lt;p&gt;Format selectors can also be grouped using parentheses, for example if you want to download the best mp4 and webm formats with a height lower than 480 you can use &lt;code&gt;-f &#39;(mp4,webm)[height&amp;lt;480]&#39;&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Since the end of April 2015 and version 2015.04.26, youtube-dl uses &lt;code&gt;-f bestvideo+bestaudio/best&lt;/code&gt; as the default format selection (see &lt;a class=&#34;link&#34; href=&#34;https://github.com/ytdl-org/youtube-dl/issues/5447&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;#5447&lt;/a&gt;, &lt;a class=&#34;link&#34; href=&#34;https://github.com/ytdl-org/youtube-dl/issues/5456&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;#5456&lt;/a&gt;). If ffmpeg or avconv are installed this results in downloading &lt;code&gt;bestvideo&lt;/code&gt; and &lt;code&gt;bestaudio&lt;/code&gt; separately and muxing them together into a single file giving the best overall quality available. Otherwise it falls back to &lt;code&gt;best&lt;/code&gt; and results in downloading the best available quality served as a single file. &lt;code&gt;best&lt;/code&gt; is also needed for videos that don&amp;rsquo;t come from YouTube because they don&amp;rsquo;t provide the audio and video in two different files. If you want to only download some DASH formats (for example if you are not interested in getting videos with a resolution higher than 1080p), you can add &lt;code&gt;-f bestvideo[height&amp;lt;=?1080]+bestaudio/best&lt;/code&gt; to your configuration file. Note that if you use youtube-dl to stream to &lt;code&gt;stdout&lt;/code&gt; (and most likely to pipe it to your media player then), i.e. you explicitly specify output template as &lt;code&gt;-o -&lt;/code&gt;, youtube-dl still uses &lt;code&gt;-f best&lt;/code&gt; format selection in order to start content delivery immediately to your player and not to wait until &lt;code&gt;bestvideo&lt;/code&gt; and &lt;code&gt;bestaudio&lt;/code&gt; are downloaded and muxed.&lt;/p&gt;
&lt;p&gt;If you want to preserve the old format selection behavior (prior to youtube-dl 2015.04.26), i.e. you want to download the best available quality media served as a single file, you should explicitly specify your choice with &lt;code&gt;-f best&lt;/code&gt;. You may want to add it to the &lt;a class=&#34;link&#34; href=&#34;#configuration&#34; &gt;configuration file&lt;/a&gt; in order not to type it every time you run youtube-dl.&lt;/p&gt;
&lt;h4 id=&#34;format-selection-examples&#34;&gt;Format selection examples
&lt;/h4&gt;&lt;p&gt;Note that on Windows you may need to use double quotes instead of single.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt; 1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 3
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 4
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 5
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 6
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 7
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 8
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 9
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;10
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;11
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;12
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;13
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;14
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# Download best mp4 format available or any other best if no mp4 available&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ youtube-dl -f &lt;span class=&#34;s1&#34;&gt;&amp;#39;bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# Download best format available but no better than 480p&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ youtube-dl -f &lt;span class=&#34;s1&#34;&gt;&amp;#39;bestvideo[height&amp;lt;=480]+bestaudio/best[height&amp;lt;=480]&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# Download best video only format but no bigger than 50 MB&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ youtube-dl -f &lt;span class=&#34;s1&#34;&gt;&amp;#39;best[filesize&amp;lt;50M]&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# Download best format available via direct link over HTTP/HTTPS protocol&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ youtube-dl -f &lt;span class=&#34;s1&#34;&gt;&amp;#39;(bestvideo+bestaudio/best)[protocol^=http]&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# Download the best video format and the best audio format without merging them&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ youtube-dl -f &lt;span class=&#34;s1&#34;&gt;&amp;#39;bestvideo,bestaudio&amp;#39;&lt;/span&gt; -o &lt;span class=&#34;s1&#34;&gt;&amp;#39;%(title)s.f%(format_id)s.%(ext)s&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Note that in the last example, an output template is recommended as bestvideo and bestaudio may have the same file name.&lt;/p&gt;
&lt;h1 id=&#34;video-selection-1&#34;&gt;VIDEO SELECTION
&lt;/h1&gt;&lt;p&gt;Videos can be filtered by their upload date using the options &lt;code&gt;--date&lt;/code&gt;, &lt;code&gt;--datebefore&lt;/code&gt; or &lt;code&gt;--dateafter&lt;/code&gt;. They accept dates in two formats:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Absolute dates: Dates in the format &lt;code&gt;YYYYMMDD&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Relative dates: Dates in the format &lt;code&gt;(now|today)[+-][0-9](day|week|month|year)(s)?&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Examples:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;3
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;4
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;5
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;6
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;7
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;8
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# Download only the videos uploaded in the last 6 months&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ youtube-dl --dateafter now-6months
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# Download only the videos uploaded on January 1, 1970&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ youtube-dl --date &lt;span class=&#34;m&#34;&gt;19700101&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ &lt;span class=&#34;c1&#34;&gt;# Download only the videos uploaded in the 200x decade&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ youtube-dl --dateafter &lt;span class=&#34;m&#34;&gt;20000101&lt;/span&gt; --datebefore &lt;span class=&#34;m&#34;&gt;20091231&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;h1 id=&#34;faq&#34;&gt;FAQ
&lt;/h1&gt;&lt;h3 id=&#34;how-do-i-update-youtube-dl&#34;&gt;How do I update youtube-dl?
&lt;/h3&gt;&lt;p&gt;If you&amp;rsquo;ve followed &lt;a class=&#34;link&#34; href=&#34;https://ytdl-org.github.io/youtube-dl/download.html&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;our manual installation instructions&lt;/a&gt;, you can simply run &lt;code&gt;youtube-dl -U&lt;/code&gt; (or, on Linux, &lt;code&gt;sudo youtube-dl -U&lt;/code&gt;).&lt;/p&gt;
&lt;p&gt;If you have used pip, a simple &lt;code&gt;sudo pip install -U youtube-dl&lt;/code&gt; is sufficient to update.&lt;/p&gt;
&lt;p&gt;If you have installed youtube-dl using a package manager like &lt;em&gt;apt-get&lt;/em&gt; or &lt;em&gt;yum&lt;/em&gt;, use the standard system update mechanism to update. Note that distribution packages are often outdated. As a rule of thumb, youtube-dl releases at least once a month, and often weekly or even daily. Simply go to &lt;a class=&#34;link&#34; href=&#34;https://yt-dl.org&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;https://yt-dl.org&lt;/a&gt; to find out the current version. Unfortunately, there is nothing we youtube-dl developers can do if your distribution serves a really outdated version. You can (and should) complain to your distribution in their bugtracker or support forum.&lt;/p&gt;
&lt;p&gt;As a last resort, you can also uninstall the version installed by your package manager and follow our manual installation instructions. For that, remove the distribution&amp;rsquo;s package, with a line like&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo apt-get remove -y youtube-dl
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Afterwards, simply follow &lt;a class=&#34;link&#34; href=&#34;https://ytdl-org.github.io/youtube-dl/download.html&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;our manual installation instructions&lt;/a&gt;:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;3
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-gdscript3&#34; data-lang=&#34;gdscript3&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;sudo&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;wget&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;https&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;//&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;yt&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;-&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;dl&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;org&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;/&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;downloads&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;/&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;latest&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;/&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;youtube&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;-&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;dl&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;-&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;O&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;/&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;usr&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;/&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;local&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;/&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;bin&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;/&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;youtube&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;-&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;dl&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;sudo&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;chmod&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;a&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;+&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;rx&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;/&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;usr&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;/&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;local&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;/&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;bin&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;/&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;youtube&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;-&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;dl&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;nb&#34;&gt;hash&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;-&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;r&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Again, from then on you&amp;rsquo;ll be able to update with &lt;code&gt;sudo youtube-dl -U&lt;/code&gt;.&lt;/p&gt;
&lt;h3 id=&#34;youtube-dl-is-extremely-slow-to-start-on-windows&#34;&gt;youtube-dl is extremely slow to start on Windows
&lt;/h3&gt;&lt;p&gt;Add a file exclusion for &lt;code&gt;youtube-dl.exe&lt;/code&gt; in Windows Defender settings.&lt;/p&gt;
&lt;h3 id=&#34;im-getting-an-error-unable-to-extract-opengraph-title-on-youtube-playlists&#34;&gt;I&amp;rsquo;m getting an error &lt;code&gt;Unable to extract OpenGraph title&lt;/code&gt; on YouTube playlists
&lt;/h3&gt;&lt;p&gt;YouTube changed their playlist format in March 2014 and later on, so you&amp;rsquo;ll need at least youtube-dl 2014.07.25 to download all YouTube videos.&lt;/p&gt;
&lt;p&gt;If you have installed youtube-dl with a package manager, pip, setup.py or a tarball, please use that to update. Note that Ubuntu packages do not seem to get updated anymore. Since we are not affiliated with Ubuntu, there is little we can do. Feel free to &lt;a class=&#34;link&#34; href=&#34;https://bugs.launchpad.net/ubuntu/&amp;#43;source/youtube-dl/&amp;#43;filebug&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;report bugs&lt;/a&gt; to the &lt;a class=&#34;link&#34; href=&#34;mailto:ubuntu-motu@lists.ubuntu.com?subject=outdated%20version%20of%20youtube-dl&#34; &gt;Ubuntu packaging people&lt;/a&gt; - all they have to do is update the package to a somewhat recent version. See above for a way to update.&lt;/p&gt;
&lt;h3 id=&#34;im-getting-an-error-when-trying-to-use-output-template-error-using-output-template-conflicts-with-using-title-video-id-or-auto-number&#34;&gt;I&amp;rsquo;m getting an error when trying to use output template: &lt;code&gt;error: using output template conflicts with using title, video ID or auto number&lt;/code&gt;
&lt;/h3&gt;&lt;p&gt;Make sure you are not using &lt;code&gt;-o&lt;/code&gt; with any of these options &lt;code&gt;-t&lt;/code&gt;, &lt;code&gt;--title&lt;/code&gt;, &lt;code&gt;--id&lt;/code&gt;, &lt;code&gt;-A&lt;/code&gt; or &lt;code&gt;--auto-number&lt;/code&gt; set in command line or in a configuration file. Remove the latter if any.&lt;/p&gt;
&lt;h3 id=&#34;do-i-always-have-to-pass--citw&#34;&gt;Do I always have to pass &lt;code&gt;-citw&lt;/code&gt;?
&lt;/h3&gt;&lt;p&gt;By default, youtube-dl intends to have the best options (incidentally, if you have a convincing case that these should be different, &lt;a class=&#34;link&#34; href=&#34;https://yt-dl.org/bug&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;please file an issue where you explain that&lt;/a&gt;). Therefore, it is unnecessary and sometimes harmful to copy long option strings from webpages. In particular, the only option out of &lt;code&gt;-citw&lt;/code&gt; that is regularly useful is &lt;code&gt;-i&lt;/code&gt;.&lt;/p&gt;
&lt;h3 id=&#34;can-you-please-put-the--b-option-back&#34;&gt;Can you please put the &lt;code&gt;-b&lt;/code&gt; option back?
&lt;/h3&gt;&lt;p&gt;Most people asking this question are not aware that youtube-dl now defaults to downloading the highest available quality as reported by YouTube, which will be 1080p or 720p in some cases, so you no longer need the &lt;code&gt;-b&lt;/code&gt; option. For some specific videos, maybe YouTube does not report them to be available in a specific high quality format you&amp;rsquo;re interested in. In that case, simply request it with the &lt;code&gt;-f&lt;/code&gt; option and youtube-dl will try to download it.&lt;/p&gt;
&lt;h3 id=&#34;i-get-http-error-402-when-trying-to-download-a-video-whats-this&#34;&gt;I get HTTP error 402 when trying to download a video. What&amp;rsquo;s this?
&lt;/h3&gt;&lt;p&gt;Apparently YouTube requires you to pass a CAPTCHA test if you download too much. We&amp;rsquo;re &lt;a class=&#34;link&#34; href=&#34;https://github.com/ytdl-org/youtube-dl/issues/154&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;considering to provide a way to let you solve the CAPTCHA&lt;/a&gt;, but at the moment, your best course of action is pointing a web browser to the youtube URL, solving the CAPTCHA, and restart youtube-dl.&lt;/p&gt;
&lt;h3 id=&#34;do-i-need-any-other-programs&#34;&gt;Do I need any other programs?
&lt;/h3&gt;&lt;p&gt;youtube-dl works fine on its own on most sites. However, if you want to convert video/audio, you&amp;rsquo;ll need &lt;a class=&#34;link&#34; href=&#34;https://libav.org/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;avconv&lt;/a&gt; or &lt;a class=&#34;link&#34; href=&#34;https://www.ffmpeg.org/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;ffmpeg&lt;/a&gt;. On some sites - most notably YouTube - videos can be retrieved in a higher quality format without sound. youtube-dl will detect whether avconv/ffmpeg is present and automatically pick the best option.&lt;/p&gt;
&lt;p&gt;Videos or video formats streamed via RTMP protocol can only be downloaded when &lt;a class=&#34;link&#34; href=&#34;https://rtmpdump.mplayerhq.hu/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;rtmpdump&lt;/a&gt; is installed. Downloading MMS and RTSP videos requires either &lt;a class=&#34;link&#34; href=&#34;https://mplayerhq.hu/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;mplayer&lt;/a&gt; or &lt;a class=&#34;link&#34; href=&#34;https://mpv.io/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;mpv&lt;/a&gt; to be installed.&lt;/p&gt;
&lt;h3 id=&#34;i-have-downloaded-a-video-but-how-can-i-play-it&#34;&gt;I have downloaded a video but how can I play it?
&lt;/h3&gt;&lt;p&gt;Once the video is fully downloaded, use any video player, such as &lt;a class=&#34;link&#34; href=&#34;https://mpv.io/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;mpv&lt;/a&gt;, &lt;a class=&#34;link&#34; href=&#34;https://www.videolan.org/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;vlc&lt;/a&gt; or &lt;a class=&#34;link&#34; href=&#34;https://www.mplayerhq.hu/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;mplayer&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&#34;i-extracted-a-video-url-with--g-but-it-does-not-play-on-another-machine--in-my-web-browser&#34;&gt;I extracted a video URL with &lt;code&gt;-g&lt;/code&gt;, but it does not play on another machine / in my web browser.
&lt;/h3&gt;&lt;p&gt;It depends a lot on the service. In many cases, requests for the video (to download/play it) must come from the same IP address and with the same cookies and/or HTTP headers. Use the &lt;code&gt;--cookies&lt;/code&gt; option to write the required cookies into a file, and advise your downloader to read cookies from that file. Some sites also require a common user agent to be used, use &lt;code&gt;--dump-user-agent&lt;/code&gt; to see the one in use by youtube-dl. You can also get necessary cookies and HTTP headers from JSON output obtained with &lt;code&gt;--dump-json&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;It may be beneficial to use IPv6; in some cases, the restrictions are only applied to IPv4. Some services (sometimes only for a subset of videos) do not restrict the video URL by IP address, cookie, or user-agent, but these are the exception rather than the rule.&lt;/p&gt;
&lt;p&gt;Please bear in mind that some URL protocols are &lt;strong&gt;not&lt;/strong&gt; supported by browsers out of the box, including RTMP. If you are using &lt;code&gt;-g&lt;/code&gt;, your own downloader must support these as well.&lt;/p&gt;
&lt;p&gt;If you want to play the video on a machine that is not running youtube-dl, you can relay the video content from the machine that runs youtube-dl. You can use &lt;code&gt;-o -&lt;/code&gt; to let youtube-dl stream a video to stdout, or simply allow the player to download the files written by youtube-dl in turn.&lt;/p&gt;
&lt;h3 id=&#34;error-no-fmt_url_map-or-conn-information-found-in-video-info&#34;&gt;ERROR: no fmt_url_map or conn information found in video info
&lt;/h3&gt;&lt;p&gt;YouTube has switched to a new video info format in July 2011 which is not supported by old versions of youtube-dl. See &lt;a class=&#34;link&#34; href=&#34;#how-do-i-update-youtube-dl&#34; &gt;above&lt;/a&gt; for how to update youtube-dl.&lt;/p&gt;
&lt;h3 id=&#34;error-unable-to-download-video&#34;&gt;ERROR: unable to download video
&lt;/h3&gt;&lt;p&gt;YouTube requires an additional signature since September 2012 which is not supported by old versions of youtube-dl. See &lt;a class=&#34;link&#34; href=&#34;#how-do-i-update-youtube-dl&#34; &gt;above&lt;/a&gt; for how to update youtube-dl.&lt;/p&gt;
&lt;h3 id=&#34;video-url-contains-an-ampersand-and-im-getting-some-strange-output-1-2839-or-v-is-not-recognized-as-an-internal-or-external-command&#34;&gt;Video URL contains an ampersand and I&amp;rsquo;m getting some strange output &lt;code&gt;[1] 2839&lt;/code&gt; or &lt;code&gt;&#39;v&#39; is not recognized as an internal or external command&lt;/code&gt;
&lt;/h3&gt;&lt;p&gt;That&amp;rsquo;s actually the output from your shell. Since ampersand is one of the special shell characters it&amp;rsquo;s interpreted by the shell preventing you from passing the whole URL to youtube-dl. To disable your shell from interpreting the ampersands (or any other special characters) you have to either put the whole URL in quotes or escape them with a backslash (which approach will work depends on your shell).&lt;/p&gt;
&lt;p&gt;For example if your URL is &lt;a class=&#34;link&#34; href=&#34;https://www.youtube.com/watch?t=4&amp;amp;v=BaW_jenozKc&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;https://www.youtube.com/watch?t=4&amp;v=BaW_jenozKc&lt;/a&gt; you should end up with following command:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;youtube-dl &#39;https://www.youtube.com/watch?t=4&amp;amp;v=BaW_jenozKc&#39;&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;or&lt;/p&gt;
&lt;p&gt;&lt;code&gt;youtube-dl https://www.youtube.com/watch?t=4\&amp;amp;v=BaW_jenozKc&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;For Windows you have to use the double quotes:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;youtube-dl &amp;quot;https://www.youtube.com/watch?t=4&amp;amp;v=BaW_jenozKc&amp;quot;&lt;/code&gt;&lt;/p&gt;
&lt;h3 id=&#34;extractorerror-could-not-find-js-function-uof&#34;&gt;ExtractorError: Could not find JS function u&amp;rsquo;OF&#39;
&lt;/h3&gt;&lt;p&gt;In February 2015, the new YouTube player contained a character sequence in a string that was misinterpreted by old versions of youtube-dl. See &lt;a class=&#34;link&#34; href=&#34;#how-do-i-update-youtube-dl&#34; &gt;above&lt;/a&gt; for how to update youtube-dl.&lt;/p&gt;
&lt;h3 id=&#34;http-error-429-too-many-requests-or-402-payment-required&#34;&gt;HTTP Error 429: Too Many Requests or 402: Payment Required
&lt;/h3&gt;&lt;p&gt;These two error codes indicate that the service is blocking your IP address because of overuse. Usually this is a soft block meaning that you can gain access again after solving CAPTCHA. Just open a browser and solve a CAPTCHA the service suggests you and after that &lt;a class=&#34;link&#34; href=&#34;#how-do-i-pass-cookies-to-youtube-dl&#34; &gt;pass cookies&lt;/a&gt; to youtube-dl. Note that if your machine has multiple external IPs then you should also pass exactly the same IP you&amp;rsquo;ve used for solving CAPTCHA with &lt;a class=&#34;link&#34; href=&#34;#network-options&#34; &gt;&lt;code&gt;--source-address&lt;/code&gt;&lt;/a&gt;. Also you may need to pass a &lt;code&gt;User-Agent&lt;/code&gt; HTTP header of your browser with &lt;a class=&#34;link&#34; href=&#34;#workarounds&#34; &gt;&lt;code&gt;--user-agent&lt;/code&gt;&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;If this is not the case (no CAPTCHA suggested to solve by the service) then you can contact the service and ask them to unblock your IP address, or - if you have acquired a whitelisted IP address already - use the &lt;a class=&#34;link&#34; href=&#34;#network-options&#34; &gt;&lt;code&gt;--proxy&lt;/code&gt; or &lt;code&gt;--source-address&lt;/code&gt; options&lt;/a&gt; to select another IP address.&lt;/p&gt;
&lt;h3 id=&#34;syntaxerror-non-ascii-character&#34;&gt;SyntaxError: Non-ASCII character
&lt;/h3&gt;&lt;p&gt;The error&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;File &amp;quot;youtube-dl&amp;quot;, line 2
SyntaxError: Non-ASCII character &#39;\x93&#39; ...
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;means you&amp;rsquo;re using an outdated version of Python. Please update to Python 2.6 or 2.7.&lt;/p&gt;
&lt;h3 id=&#34;what-is-this-binary-file-where-has-the-code-gone&#34;&gt;What is this binary file? Where has the code gone?
&lt;/h3&gt;&lt;p&gt;Since June 2012 (&lt;a class=&#34;link&#34; href=&#34;https://github.com/ytdl-org/youtube-dl/issues/342&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;#342&lt;/a&gt;) youtube-dl is packed as an executable zipfile, simply unzip it (might need renaming to &lt;code&gt;youtube-dl.zip&lt;/code&gt; first on some systems) or clone the git repository, as laid out above. If you modify the code, you can run it by executing the &lt;code&gt;__main__.py&lt;/code&gt; file. To recompile the executable, run &lt;code&gt;make youtube-dl&lt;/code&gt;.&lt;/p&gt;
&lt;h3 id=&#34;the-exe-throws-an-error-due-to-missing-msvcr100dll&#34;&gt;The exe throws an error due to missing &lt;code&gt;MSVCR100.dll&lt;/code&gt;
&lt;/h3&gt;&lt;p&gt;To run the exe you need to install first the &lt;a class=&#34;link&#34; href=&#34;https://download.microsoft.com/download/1/6/5/165255E7-1014-4D0A-B094-B6A430A6BFFC/vcredist_x86.exe&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Microsoft Visual C++ 2010 Service Pack 1 Redistributable Package (x86)&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&#34;on-windows-how-should-i-set-up-ffmpeg-and-youtube-dl-where-should-i-put-the-exe-files&#34;&gt;On Windows, how should I set up ffmpeg and youtube-dl? Where should I put the exe files?
&lt;/h3&gt;&lt;p&gt;If you put youtube-dl and ffmpeg in the same directory that you&amp;rsquo;re running the command from, it will work, but that&amp;rsquo;s rather cumbersome.&lt;/p&gt;
&lt;p&gt;To make a different directory work - either for ffmpeg, or for youtube-dl, or for both - simply create the directory (say, &lt;code&gt;C:\bin&lt;/code&gt;, or &lt;code&gt;C:\Users\&amp;lt;User name&amp;gt;\bin&lt;/code&gt;), put all the executables directly in there, and then &lt;a class=&#34;link&#34; href=&#34;https://www.java.com/en/download/help/path.xml&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;set your PATH environment variable&lt;/a&gt; to include that directory.&lt;/p&gt;
&lt;p&gt;From then on, after restarting your shell, you will be able to access both youtube-dl and ffmpeg (and youtube-dl will be able to find ffmpeg) by simply typing &lt;code&gt;youtube-dl&lt;/code&gt; or &lt;code&gt;ffmpeg&lt;/code&gt;, no matter what directory you&amp;rsquo;re in.&lt;/p&gt;
&lt;h3 id=&#34;how-do-i-put-downloads-into-a-specific-folder&#34;&gt;How do I put downloads into a specific folder?
&lt;/h3&gt;&lt;p&gt;Use the &lt;code&gt;-o&lt;/code&gt; to specify an &lt;a class=&#34;link&#34; href=&#34;#output-template&#34; &gt;output template&lt;/a&gt;, for example &lt;code&gt;-o &amp;quot;/home/user/videos/%(title)s-%(id)s.%(ext)s&amp;quot;&lt;/code&gt;. If you want this for all of your downloads, put the option into your &lt;a class=&#34;link&#34; href=&#34;#configuration&#34; &gt;configuration file&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&#34;how-do-i-download-a-video-starting-with-a--&#34;&gt;How do I download a video starting with a &lt;code&gt;-&lt;/code&gt;?
&lt;/h3&gt;&lt;p&gt;Either prepend &lt;code&gt;https://www.youtube.com/watch?v=&lt;/code&gt; or separate the ID from the options with &lt;code&gt;--&lt;/code&gt;:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;youtube-dl -- -wNyEUrxzFU
youtube-dl &amp;quot;https://www.youtube.com/watch?v=-wNyEUrxzFU&amp;quot;
&lt;/code&gt;&lt;/pre&gt;
&lt;h3 id=&#34;how-do-i-pass-cookies-to-youtube-dl&#34;&gt;How do I pass cookies to youtube-dl?
&lt;/h3&gt;&lt;p&gt;Use the &lt;code&gt;--cookies&lt;/code&gt; option, for example &lt;code&gt;--cookies /path/to/cookies/file.txt&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;In order to extract cookies from browser use any conforming browser extension for exporting cookies. For example, &lt;a class=&#34;link&#34; href=&#34;https://chrome.google.com/webstore/detail/get-cookiestxt-locally/cclelndahbckbenkjhflpdbgdldlbecc&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Get cookies.txt LOCALLY&lt;/a&gt; (for Chrome) or &lt;a class=&#34;link&#34; href=&#34;https://addons.mozilla.org/en-US/firefox/addon/cookies-txt/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;cookies.txt&lt;/a&gt; (for Firefox).&lt;/p&gt;
&lt;p&gt;Note that the cookies file must be in Mozilla/Netscape format and the first line of the cookies file must be either &lt;code&gt;# HTTP Cookie File&lt;/code&gt; or &lt;code&gt;# Netscape HTTP Cookie File&lt;/code&gt;. Make sure you have correct &lt;a class=&#34;link&#34; href=&#34;https://en.wikipedia.org/wiki/Newline&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;newline format&lt;/a&gt; in the cookies file and convert newlines if necessary to correspond with your OS, namely &lt;code&gt;CRLF&lt;/code&gt; (&lt;code&gt;\r\n&lt;/code&gt;) for Windows and &lt;code&gt;LF&lt;/code&gt; (&lt;code&gt;\n&lt;/code&gt;) for Unix and Unix-like systems (Linux, macOS, etc.). &lt;code&gt;HTTP Error 400: Bad Request&lt;/code&gt; when using &lt;code&gt;--cookies&lt;/code&gt; is a good sign of invalid newline format.&lt;/p&gt;
&lt;p&gt;Passing cookies to youtube-dl is a good way to workaround login when a particular extractor does not implement it explicitly. Another use case is working around &lt;a class=&#34;link&#34; href=&#34;https://en.wikipedia.org/wiki/CAPTCHA&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;CAPTCHA&lt;/a&gt; some websites require you to solve in particular cases in order to get access (e.g. YouTube, CloudFlare).&lt;/p&gt;
&lt;h3 id=&#34;how-do-i-stream-directly-to-media-player&#34;&gt;How do I stream directly to media player?
&lt;/h3&gt;&lt;p&gt;You will first need to tell youtube-dl to stream media to stdout with &lt;code&gt;-o -&lt;/code&gt;, and also tell your media player to read from stdin (it must be capable of this for streaming) and then pipe former to latter. For example, streaming to &lt;a class=&#34;link&#34; href=&#34;https://www.videolan.org/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;vlc&lt;/a&gt; can be achieved with:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;youtube-dl -o - &amp;quot;https://www.youtube.com/watch?v=BaW_jenozKcj&amp;quot; | vlc -
&lt;/code&gt;&lt;/pre&gt;
&lt;h3 id=&#34;how-do-i-download-only-new-videos-from-a-playlist&#34;&gt;How do I download only new videos from a playlist?
&lt;/h3&gt;&lt;p&gt;Use download-archive feature. With this feature you should initially download the complete playlist with &lt;code&gt;--download-archive /path/to/download/archive/file.txt&lt;/code&gt; that will record identifiers of all the videos in a special file. Each subsequent run with the same &lt;code&gt;--download-archive&lt;/code&gt; will download only new videos and skip all videos that have been downloaded before. Note that only successful downloads are recorded in the file.&lt;/p&gt;
&lt;p&gt;For example, at first,&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;youtube-dl --download-archive archive.txt &amp;quot;https://www.youtube.com/playlist?list=PLwiyx1dc3P2JR9N8gQaQN_BCvlSlap7re&amp;quot;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;will download the complete &lt;code&gt;PLwiyx1dc3P2JR9N8gQaQN_BCvlSlap7re&lt;/code&gt; playlist and create a file &lt;code&gt;archive.txt&lt;/code&gt;. Each subsequent run will only download new videos if any:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;youtube-dl --download-archive archive.txt &amp;quot;https://www.youtube.com/playlist?list=PLwiyx1dc3P2JR9N8gQaQN_BCvlSlap7re&amp;quot;
&lt;/code&gt;&lt;/pre&gt;
&lt;h3 id=&#34;should-i-add---hls-prefer-native-into-my-config&#34;&gt;Should I add &lt;code&gt;--hls-prefer-native&lt;/code&gt; into my config?
&lt;/h3&gt;&lt;p&gt;When youtube-dl detects an HLS video, it can download it either with the built-in downloader or ffmpeg. Since many HLS streams are slightly invalid and ffmpeg/youtube-dl each handle some invalid cases better than the other, there is an option to switch the downloader if needed.&lt;/p&gt;
&lt;p&gt;When youtube-dl knows that one particular downloader works better for a given website, that downloader will be picked. Otherwise, youtube-dl will pick the best downloader for general compatibility, which at the moment happens to be ffmpeg. This choice may change in future versions of youtube-dl, with improvements of the built-in downloader and/or ffmpeg.&lt;/p&gt;
&lt;p&gt;In particular, the generic extractor (used when your website is not in the &lt;a class=&#34;link&#34; href=&#34;https://ytdl-org.github.io/youtube-dl/supportedsites.html&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;list of supported sites by youtube-dl&lt;/a&gt; cannot mandate one specific downloader.&lt;/p&gt;
&lt;p&gt;If you put either &lt;code&gt;--hls-prefer-native&lt;/code&gt; or &lt;code&gt;--hls-prefer-ffmpeg&lt;/code&gt; into your configuration, a different subset of videos will fail to download correctly. Instead, it is much better to &lt;a class=&#34;link&#34; href=&#34;https://yt-dl.org/bug&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;file an issue&lt;/a&gt; or a pull request which details why the native or the ffmpeg HLS downloader is a better choice for your use case.&lt;/p&gt;
&lt;h3 id=&#34;can-you-add-support-for-this-anime-video-site-or-site-which-shows-current-movies-for-free&#34;&gt;Can you add support for this anime video site, or site which shows current movies for free?
&lt;/h3&gt;&lt;p&gt;As a matter of policy (as well as legality), youtube-dl does not include support for services that specialize in infringing copyright. As a rule of thumb, if you cannot easily find a video that the service is quite obviously allowed to distribute (i.e. that has been uploaded by the creator, the creator&amp;rsquo;s distributor, or is published under a free license), the service is probably unfit for inclusion to youtube-dl.&lt;/p&gt;
&lt;p&gt;A note on the service that they don&amp;rsquo;t host the infringing content, but just link to those who do, is evidence that the service should &lt;strong&gt;not&lt;/strong&gt; be included into youtube-dl. The same goes for any DMCA note when the whole front page of the service is filled with videos they are not allowed to distribute. A &amp;ldquo;fair use&amp;rdquo; note is equally unconvincing if the service shows copyright-protected videos in full without authorization.&lt;/p&gt;
&lt;p&gt;Support requests for services that &lt;strong&gt;do&lt;/strong&gt; purchase the rights to distribute their content are perfectly fine though. If in doubt, you can simply include a source that mentions the legitimate purchase of content.&lt;/p&gt;
&lt;h3 id=&#34;how-can-i-speed-up-work-on-my-issue&#34;&gt;How can I speed up work on my issue?
&lt;/h3&gt;&lt;p&gt;(Also known as: Help, my important issue not being solved!) The youtube-dl core developer team is quite small. While we do our best to solve as many issues as possible, sometimes that can take quite a while. To speed up your issue, here&amp;rsquo;s what you can do:&lt;/p&gt;
&lt;p&gt;First of all, please do report the issue &lt;a class=&#34;link&#34; href=&#34;https://yt-dl.org/bugs&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;at our issue tracker&lt;/a&gt;. That allows us to coordinate all efforts by users and developers, and serves as a unified point. Unfortunately, the youtube-dl project has grown too large to use personal email as an effective communication channel.&lt;/p&gt;
&lt;p&gt;Please read the &lt;a class=&#34;link&#34; href=&#34;#bugs&#34; &gt;bug reporting instructions&lt;/a&gt; below. A lot of bugs lack all the necessary information. If you can, offer proxy, VPN, or shell access to the youtube-dl developers. If you are able to, test the issue from multiple computers in multiple countries to exclude local censorship or misconfiguration issues.&lt;/p&gt;
&lt;p&gt;If nobody is interested in solving your issue, you are welcome to take matters into your own hands and submit a pull request (or coerce/pay somebody else to do so).&lt;/p&gt;
&lt;p&gt;Feel free to bump the issue from time to time by writing a small comment (&amp;ldquo;Issue is still present in youtube-dl version &amp;hellip;from France, but fixed from Belgium&amp;rdquo;), but please not more than once a month. Please do not declare your issue as &lt;code&gt;important&lt;/code&gt; or &lt;code&gt;urgent&lt;/code&gt;.&lt;/p&gt;
&lt;h3 id=&#34;how-can-i-detect-whether-a-given-url-is-supported-by-youtube-dl&#34;&gt;How can I detect whether a given URL is supported by youtube-dl?
&lt;/h3&gt;&lt;p&gt;For one, have a look at the &lt;a class=&#34;link&#34; href=&#34;docs/supportedsites.md&#34; &gt;list of supported sites&lt;/a&gt;. Note that it can sometimes happen that the site changes its URL scheme (say, from &lt;a class=&#34;link&#34; href=&#34;https://example.com/video/1234567&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;https://example.com/video/1234567&lt;/a&gt; to &lt;a class=&#34;link&#34; href=&#34;https://example.com/v/1234567&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;https://example.com/v/1234567&lt;/a&gt; ) and youtube-dl reports an URL of a service in that list as unsupported. In that case, simply report a bug.&lt;/p&gt;
&lt;p&gt;It is &lt;em&gt;not&lt;/em&gt; possible to detect whether a URL is supported or not. That&amp;rsquo;s because youtube-dl contains a generic extractor which matches &lt;strong&gt;all&lt;/strong&gt; URLs. You may be tempted to disable, exclude, or remove the generic extractor, but the generic extractor not only allows users to extract videos from lots of websites that embed a video from another service, but may also be used to extract video from a service that it&amp;rsquo;s hosting itself. Therefore, we neither recommend nor support disabling, excluding, or removing the generic extractor.&lt;/p&gt;
&lt;p&gt;If you want to find out whether a given URL is supported, simply call youtube-dl with it. If you get no videos back, chances are the URL is either not referring to a video or unsupported. You can find out which by examining the output (if you run youtube-dl on the console) or catching an &lt;code&gt;UnsupportedError&lt;/code&gt; exception if you run it from a Python program.&lt;/p&gt;
&lt;h1 id=&#34;why-do-i-need-to-go-through-that-much-red-tape-when-filing-bugs&#34;&gt;Why do I need to go through that much red tape when filing bugs?
&lt;/h1&gt;&lt;p&gt;Before we had the issue template, despite our extensive &lt;a class=&#34;link&#34; href=&#34;#bugs&#34; &gt;bug reporting instructions&lt;/a&gt;, about 80% of the issue reports we got were useless, for instance because people used ancient versions hundreds of releases old, because of simple syntactic errors (not in youtube-dl but in general shell usage), because the problem was already reported multiple times before, because people did not actually read an error message, even if it said &amp;ldquo;please install ffmpeg&amp;rdquo;, because people did not mention the URL they were trying to download and many more simple, easy-to-avoid problems, many of whom were totally unrelated to youtube-dl.&lt;/p&gt;
&lt;p&gt;youtube-dl is an open-source project manned by too few volunteers, so we&amp;rsquo;d rather spend time fixing bugs where we are certain none of those simple problems apply, and where we can be reasonably confident to be able to reproduce the issue without asking the reporter repeatedly. As such, the output of &lt;code&gt;youtube-dl -v YOUR_URL_HERE&lt;/code&gt; is really all that&amp;rsquo;s required to file an issue. The issue template also guides you through some basic steps you can do, such as checking that your version of youtube-dl is current.&lt;/p&gt;
&lt;h1 id=&#34;developer-instructions&#34;&gt;DEVELOPER INSTRUCTIONS
&lt;/h1&gt;&lt;p&gt;Most users do not need to build youtube-dl and can &lt;a class=&#34;link&#34; href=&#34;https://ytdl-org.github.io/youtube-dl/download.html&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;download the builds&lt;/a&gt; or get them from their distribution.&lt;/p&gt;
&lt;p&gt;To run youtube-dl as a developer, you don&amp;rsquo;t need to build anything either. Simply execute&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;python -m youtube_dl
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;To run the test, simply invoke your favorite test runner, or execute a test file directly; any of the following work:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;python -m unittest discover
python test/test_download.py
nosetests
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;For Python versions 3.6 and later, you can use &lt;a class=&#34;link&#34; href=&#34;https://pypi.org/project/pynose/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;pynose&lt;/a&gt; to implement &lt;code&gt;nosetests&lt;/code&gt;. The original &lt;a class=&#34;link&#34; href=&#34;https://pypi.org/project/nose/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;nose&lt;/a&gt; has not been upgraded for 3.10 and later.&lt;/p&gt;
&lt;p&gt;See item 6 of &lt;a class=&#34;link&#34; href=&#34;#adding-support-for-a-new-site&#34; &gt;new extractor tutorial&lt;/a&gt; for how to run extractor specific test cases.&lt;/p&gt;
&lt;p&gt;If you want to create a build of youtube-dl yourself, you&amp;rsquo;ll need&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;python&lt;/li&gt;
&lt;li&gt;make (only GNU make is supported)&lt;/li&gt;
&lt;li&gt;pandoc&lt;/li&gt;
&lt;li&gt;zip&lt;/li&gt;
&lt;li&gt;nosetests&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;adding-support-for-a-new-site&#34;&gt;Adding support for a new site
&lt;/h3&gt;&lt;p&gt;If you want to add support for a new site, first of all &lt;strong&gt;make sure&lt;/strong&gt; this site is &lt;strong&gt;not dedicated to &lt;a class=&#34;link&#34; href=&#34;README.md#can-you-add-support-for-this-anime-video-site-or-site-which-shows-current-movies-for-free&#34; &gt;copyright infringement&lt;/a&gt;&lt;/strong&gt;. youtube-dl does &lt;strong&gt;not support&lt;/strong&gt; such sites thus pull requests adding support for them &lt;strong&gt;will be rejected&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;After you have ensured this site is distributing its content legally, you can follow this quick list (assuming your service is called &lt;code&gt;yourextractor&lt;/code&gt;):&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/ytdl-org/youtube-dl/fork&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Fork this repository&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Check out the source code with:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt; git clone git@github.com:YOUR_GITHUB_USERNAME/youtube-dl.git
&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Start a new git branch with&lt;/p&gt;
&lt;pre&gt;&lt;code&gt; cd youtube-dl
 git checkout -b yourextractor
&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Start with this simple template and save it to &lt;code&gt;youtube_dl/extractor/yourextractor.py&lt;/code&gt;:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt; 1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 3
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 4
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 5
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 6
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 7
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 8
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 9
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;10
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;11
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;12
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;13
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;14
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;15
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;16
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;17
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;18
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;19
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;20
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;21
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;22
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;23
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;24
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;25
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;26
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;27
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;28
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;29
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;30
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;31
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;32
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;33
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;34
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;35
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;36
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;37
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;38
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# coding: utf-8&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;kn&#34;&gt;from&lt;/span&gt; &lt;span class=&#34;nn&#34;&gt;__future__&lt;/span&gt; &lt;span class=&#34;kn&#34;&gt;import&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;unicode_literals&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;kn&#34;&gt;from&lt;/span&gt; &lt;span class=&#34;nn&#34;&gt;.common&lt;/span&gt; &lt;span class=&#34;kn&#34;&gt;import&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;InfoExtractor&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;k&#34;&gt;class&lt;/span&gt; &lt;span class=&#34;nc&#34;&gt;YourExtractorIE&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;InfoExtractor&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;):&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;_VALID_URL&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;sa&#34;&gt;r&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;https?://(?:www\.)?yourextractor\.com/watch/(?P&amp;lt;id&amp;gt;[0-9]+)&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;_TEST&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;s1&#34;&gt;&amp;#39;url&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;https://yourextractor.com/watch/42&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;s1&#34;&gt;&amp;#39;md5&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;TODO: md5 sum of the first 10241 bytes of the video file (use --test)&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;s1&#34;&gt;&amp;#39;info_dict&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;            &lt;span class=&#34;s1&#34;&gt;&amp;#39;id&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;42&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;            &lt;span class=&#34;s1&#34;&gt;&amp;#39;ext&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;mp4&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;            &lt;span class=&#34;s1&#34;&gt;&amp;#39;title&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;Video title goes here&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;            &lt;span class=&#34;s1&#34;&gt;&amp;#39;thumbnail&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;sa&#34;&gt;r&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;re:^https?://.*\.jpg$&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;            &lt;span class=&#34;c1&#34;&gt;# TODO more properties, either as:&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;            &lt;span class=&#34;c1&#34;&gt;# * A value&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;            &lt;span class=&#34;c1&#34;&gt;# * MD5 checksum; start the string with md5:&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;            &lt;span class=&#34;c1&#34;&gt;# * A regular expression; start the string with re:&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;            &lt;span class=&#34;c1&#34;&gt;# * Any Python type (for example int or float)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;k&#34;&gt;def&lt;/span&gt; &lt;span class=&#34;nf&#34;&gt;_real_extract&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;bp&#34;&gt;self&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;url&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;):&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;n&#34;&gt;video_id&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;bp&#34;&gt;self&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;_match_id&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;url&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;n&#34;&gt;webpage&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;bp&#34;&gt;self&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;_download_webpage&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;url&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;video_id&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;c1&#34;&gt;# TODO more code goes here, for example ...&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;n&#34;&gt;title&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;bp&#34;&gt;self&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;_html_search_regex&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;sa&#34;&gt;r&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;&amp;lt;h1&amp;gt;(.+?)&amp;lt;/h1&amp;gt;&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;webpage&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;title&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;k&#34;&gt;return&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;            &lt;span class=&#34;s1&#34;&gt;&amp;#39;id&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;video_id&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;            &lt;span class=&#34;s1&#34;&gt;&amp;#39;title&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;title&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;            &lt;span class=&#34;s1&#34;&gt;&amp;#39;description&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;bp&#34;&gt;self&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;_og_search_description&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;webpage&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;),&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;            &lt;span class=&#34;s1&#34;&gt;&amp;#39;uploader&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;bp&#34;&gt;self&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;_search_regex&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;sa&#34;&gt;r&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;&amp;lt;div[^&amp;gt;]+id=&amp;#34;uploader&amp;#34;[^&amp;gt;]*&amp;gt;([^&amp;lt;]+)&amp;lt;&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;webpage&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;uploader&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;fatal&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;kc&#34;&gt;False&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;),&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;            &lt;span class=&#34;c1&#34;&gt;# TODO more properties (see youtube_dl/extractor/common.py)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Add an import in &lt;a class=&#34;link&#34; href=&#34;https://github.com/ytdl-org/youtube-dl/blob/master/youtube_dl/extractor/extractors.py&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;code&gt;youtube_dl/extractor/extractors.py&lt;/code&gt;&lt;/a&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Run &lt;code&gt;python test/test_download.py TestDownload.test_YourExtractor&lt;/code&gt;. This &lt;em&gt;should fail&lt;/em&gt; at first, but you can continually re-run it until you&amp;rsquo;re done. If you decide to add more than one test (actually, test case) then rename &lt;code&gt;_TEST&lt;/code&gt; to &lt;code&gt;_TESTS&lt;/code&gt; and make it into a list of dictionaries. The tests will then be named &lt;code&gt;TestDownload.test_YourExtractor&lt;/code&gt;, &lt;code&gt;TestDownload.test_YourExtractor_1&lt;/code&gt;, &lt;code&gt;TestDownload.test_YourExtractor_2&lt;/code&gt;, etc. Note:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;the test names use the extractor class name &lt;strong&gt;without the trailing &lt;code&gt;IE&lt;/code&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;tests with &lt;code&gt;only_matching&lt;/code&gt; key in test&amp;rsquo;s dict are not counted.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Have a look at &lt;a class=&#34;link&#34; href=&#34;https://github.com/ytdl-org/youtube-dl/blob/master/youtube_dl/extractor/common.py&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;code&gt;youtube_dl/extractor/common.py&lt;/code&gt;&lt;/a&gt; for possible helper methods and a &lt;a class=&#34;link&#34; href=&#34;https://github.com/ytdl-org/youtube-dl/blob/7f41a598b3fba1bcab2817de64a08941200aa3c8/youtube_dl/extractor/common.py#L94-L303&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;detailed description of what your extractor should and may return&lt;/a&gt;. Add tests and code for as many as you want.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Make sure your code follows &lt;a class=&#34;link&#34; href=&#34;#youtube-dl-coding-conventions&#34; &gt;youtube-dl coding conventions&lt;/a&gt; and check the code with &lt;a class=&#34;link&#34; href=&#34;https://flake8.pycqa.org/en/latest/index.html#quickstart&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;flake8&lt;/a&gt;:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt; $ flake8 youtube_dl/extractor/yourextractor.py
&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Make sure your code works under all &lt;a class=&#34;link&#34; href=&#34;https://www.python.org/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Python&lt;/a&gt; versions claimed supported by youtube-dl, namely 2.6, 2.7, and 3.2+.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When the tests pass, &lt;a class=&#34;link&#34; href=&#34;https://git-scm.com/docs/git-add&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;add&lt;/a&gt; the new files and &lt;a class=&#34;link&#34; href=&#34;https://git-scm.com/docs/git-commit&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;commit&lt;/a&gt; them and &lt;a class=&#34;link&#34; href=&#34;https://git-scm.com/docs/git-push&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;push&lt;/a&gt; the result, like this:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$ git add youtube_dl/extractor/extractors.py
$ git add youtube_dl/extractor/yourextractor.py
$ git commit -m &#39;[yourextractor] Add new extractor&#39;
$ git push origin yourextractor
&lt;/code&gt;&lt;/pre&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Finally, &lt;a class=&#34;link&#34; href=&#34;https://help.github.com/articles/creating-a-pull-request&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;create a pull request&lt;/a&gt;. We&amp;rsquo;ll then review and merge it.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;In any case, thank you very much for your contributions!&lt;/p&gt;
&lt;h2 id=&#34;youtube-dl-coding-conventions&#34;&gt;youtube-dl coding conventions
&lt;/h2&gt;&lt;p&gt;This section introduces guidelines for writing idiomatic, robust and future-proof extractor code.&lt;/p&gt;
&lt;p&gt;Extractors are very fragile by nature since they depend on the layout of the source data provided by 3rd party media hosters out of your control and this layout tends to change. As an extractor implementer your task is not only to write code that will extract media links and metadata correctly but also to minimize dependency on the source&amp;rsquo;s layout and even to make the code foresee potential future changes and be ready for that. This is important because it will allow the extractor not to break on minor layout changes thus keeping old youtube-dl versions working. Even though this breakage issue is easily fixed by emitting a new version of youtube-dl with a fix incorporated, all the previous versions become broken in all repositories and distros&amp;rsquo; packages that may not be so prompt in fetching the update from us. Needless to say, some non rolling release distros may never receive an update at all.&lt;/p&gt;
&lt;h3 id=&#34;mandatory-and-optional-metafields&#34;&gt;Mandatory and optional metafields
&lt;/h3&gt;&lt;p&gt;For extraction to work youtube-dl relies on metadata your extractor extracts and provides to youtube-dl expressed by an &lt;a class=&#34;link&#34; href=&#34;https://github.com/ytdl-org/youtube-dl/blob/7f41a598b3fba1bcab2817de64a08941200aa3c8/youtube_dl/extractor/common.py#L94-L303&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;information dictionary&lt;/a&gt; or simply &lt;em&gt;info dict&lt;/em&gt;. Only the following meta fields in the &lt;em&gt;info dict&lt;/em&gt; are considered mandatory for a successful extraction process by youtube-dl:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;id&lt;/code&gt; (media identifier)&lt;/li&gt;
&lt;li&gt;&lt;code&gt;title&lt;/code&gt; (media title)&lt;/li&gt;
&lt;li&gt;&lt;code&gt;url&lt;/code&gt; (media download URL) or &lt;code&gt;formats&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;In fact only the last option is technically mandatory (i.e. if you can&amp;rsquo;t figure out the download location of the media the extraction does not make any sense). But by convention youtube-dl also treats &lt;code&gt;id&lt;/code&gt; and &lt;code&gt;title&lt;/code&gt; as mandatory. Thus the aforementioned metafields are the critical data that the extraction does not make any sense without and if any of them fail to be extracted then the extractor is considered completely broken.&lt;/p&gt;
&lt;p&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/ytdl-org/youtube-dl/blob/7f41a598b3fba1bcab2817de64a08941200aa3c8/youtube_dl/extractor/common.py#L188-L303&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Any field&lt;/a&gt; apart from the aforementioned ones are considered &lt;strong&gt;optional&lt;/strong&gt;. That means that extraction should be &lt;strong&gt;tolerant&lt;/strong&gt; to situations when sources for these fields can potentially be unavailable (even if they are always available at the moment) and &lt;strong&gt;future-proof&lt;/strong&gt; in order not to break the extraction of general purpose mandatory fields.&lt;/p&gt;
&lt;h4 id=&#34;example&#34;&gt;Example
&lt;/h4&gt;&lt;p&gt;Say you have some source dictionary &lt;code&gt;meta&lt;/code&gt; that you&amp;rsquo;ve fetched as JSON with HTTP request and it has a key &lt;code&gt;summary&lt;/code&gt;:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;meta&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;bp&#34;&gt;self&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;_download_json&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;url&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;video_id&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Assume at this point &lt;code&gt;meta&lt;/code&gt;&amp;rsquo;s layout is:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;3
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;4
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;5
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;o&#34;&gt;...&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;s2&#34;&gt;&amp;#34;summary&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;some fancy summary text&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;o&#34;&gt;...&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Assume you want to extract &lt;code&gt;summary&lt;/code&gt; and put it into the resulting info dict as &lt;code&gt;description&lt;/code&gt;. Since &lt;code&gt;description&lt;/code&gt; is an optional meta field you should be ready that this key may be missing from the &lt;code&gt;meta&lt;/code&gt; dict, so that you should extract it like:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;description&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;meta&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;get&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;summary&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;  &lt;span class=&#34;c1&#34;&gt;# correct&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;and not like:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;description&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;meta&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;summary&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;]&lt;/span&gt;  &lt;span class=&#34;c1&#34;&gt;# incorrect&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;The latter will break extraction process with &lt;code&gt;KeyError&lt;/code&gt; if &lt;code&gt;summary&lt;/code&gt; disappears from &lt;code&gt;meta&lt;/code&gt; at some later time but with the former approach extraction will just go ahead with &lt;code&gt;description&lt;/code&gt; set to &lt;code&gt;None&lt;/code&gt; which is perfectly fine (remember &lt;code&gt;None&lt;/code&gt; is equivalent to the absence of data).&lt;/p&gt;
&lt;p&gt;Similarly, you should pass &lt;code&gt;fatal=False&lt;/code&gt; when extracting optional data from a webpage with &lt;code&gt;_search_regex&lt;/code&gt;, &lt;code&gt;_html_search_regex&lt;/code&gt; or similar methods, for instance:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;3
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;description&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;bp&#34;&gt;self&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;_search_regex&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;sa&#34;&gt;r&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;&amp;lt;span[^&amp;gt;]+id=&amp;#34;title&amp;#34;[^&amp;gt;]*&amp;gt;([^&amp;lt;]+)&amp;lt;&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;webpage&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;description&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;fatal&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;kc&#34;&gt;False&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;With &lt;code&gt;fatal&lt;/code&gt; set to &lt;code&gt;False&lt;/code&gt; if &lt;code&gt;_search_regex&lt;/code&gt; fails to extract &lt;code&gt;description&lt;/code&gt; it will emit a warning and continue extraction.&lt;/p&gt;
&lt;p&gt;You can also pass &lt;code&gt;default=&amp;lt;some fallback value&amp;gt;&lt;/code&gt;, for example:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;3
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;description&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;bp&#34;&gt;self&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;_search_regex&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;sa&#34;&gt;r&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;&amp;lt;span[^&amp;gt;]+id=&amp;#34;title&amp;#34;[^&amp;gt;]*&amp;gt;([^&amp;lt;]+)&amp;lt;&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;webpage&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;description&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;default&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;kc&#34;&gt;None&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;On failure this code will silently continue the extraction with &lt;code&gt;description&lt;/code&gt; set to &lt;code&gt;None&lt;/code&gt;. That is useful for metafields that may or may not be present.&lt;/p&gt;
&lt;h3 id=&#34;provide-fallbacks&#34;&gt;Provide fallbacks
&lt;/h3&gt;&lt;p&gt;When extracting metadata try to do so from multiple sources. For example if &lt;code&gt;title&lt;/code&gt; is present in several places, try extracting from at least some of them. This makes it more future-proof in case some of the sources become unavailable.&lt;/p&gt;
&lt;h4 id=&#34;example-1&#34;&gt;Example
&lt;/h4&gt;&lt;p&gt;Say &lt;code&gt;meta&lt;/code&gt; from the previous example has a &lt;code&gt;title&lt;/code&gt; and you are about to extract it. Since &lt;code&gt;title&lt;/code&gt; is a mandatory meta field you should end up with something like:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;title&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;meta&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;title&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;]&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;If &lt;code&gt;title&lt;/code&gt; disappears from &lt;code&gt;meta&lt;/code&gt; in future due to some changes on the hoster&amp;rsquo;s side the extraction would fail since &lt;code&gt;title&lt;/code&gt; is mandatory. That&amp;rsquo;s expected.&lt;/p&gt;
&lt;p&gt;Assume that you have some another source you can extract &lt;code&gt;title&lt;/code&gt; from, for example &lt;code&gt;og:title&lt;/code&gt; HTML meta of a &lt;code&gt;webpage&lt;/code&gt;. In this case you can provide a fallback scenario:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;title&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;meta&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;get&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;title&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt; &lt;span class=&#34;ow&#34;&gt;or&lt;/span&gt; &lt;span class=&#34;bp&#34;&gt;self&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;_og_search_title&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;webpage&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;This code will try to extract from &lt;code&gt;meta&lt;/code&gt; first and if it fails it will try extracting &lt;code&gt;og:title&lt;/code&gt; from a &lt;code&gt;webpage&lt;/code&gt;.&lt;/p&gt;
&lt;h3 id=&#34;regular-expressions&#34;&gt;Regular expressions
&lt;/h3&gt;&lt;h4 id=&#34;dont-capture-groups-you-dont-use&#34;&gt;Don&amp;rsquo;t capture groups you don&amp;rsquo;t use
&lt;/h4&gt;&lt;p&gt;Capturing group must be an indication that it&amp;rsquo;s used somewhere in the code. Any group that is not used must be non capturing.&lt;/p&gt;
&lt;h5 id=&#34;example-2&#34;&gt;Example
&lt;/h5&gt;&lt;p&gt;Don&amp;rsquo;t capture id attribute name here since you can&amp;rsquo;t use it for anything anyway.&lt;/p&gt;
&lt;p&gt;Correct:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;sa&#34;&gt;r&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;(?:id|ID)=(?P&amp;lt;id&amp;gt;\d+)&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Incorrect:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;sa&#34;&gt;r&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;(id|ID)=(?P&amp;lt;id&amp;gt;\d+)&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;h4 id=&#34;make-regular-expressions-relaxed-and-flexible&#34;&gt;Make regular expressions relaxed and flexible
&lt;/h4&gt;&lt;p&gt;When using regular expressions try to write them fuzzy, relaxed and flexible, skipping insignificant parts that are more likely to change, allowing both single and double quotes for quoted values and so on.&lt;/p&gt;
&lt;h5 id=&#34;example-3&#34;&gt;Example
&lt;/h5&gt;&lt;p&gt;Say you need to extract &lt;code&gt;title&lt;/code&gt; from the following HTML code:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-html&#34; data-lang=&#34;html&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;span&lt;/span&gt; &lt;span class=&#34;na&#34;&gt;style&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;position: absolute; left: 910px; width: 90px; float: right; z-index: 9999;&amp;#34;&lt;/span&gt; &lt;span class=&#34;na&#34;&gt;class&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;s&#34;&gt;&amp;#34;title&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;&amp;gt;&lt;/span&gt;some fancy title&lt;span class=&#34;p&#34;&gt;&amp;lt;/&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;span&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;&amp;gt;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;The code for that task should look similar to:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;title&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;bp&#34;&gt;self&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;_search_regex&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;sa&#34;&gt;r&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;&amp;lt;span[^&amp;gt;]+class=&amp;#34;title&amp;#34;[^&amp;gt;]*&amp;gt;([^&amp;lt;]+)&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;webpage&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;title&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Or even better:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;3
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;title&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;bp&#34;&gt;self&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;_search_regex&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;sa&#34;&gt;r&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;&amp;lt;span[^&amp;gt;]+class=([&amp;#34;&lt;/span&gt;&lt;span class=&#34;se&#34;&gt;\&amp;#39;&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;])title\1[^&amp;gt;]*&amp;gt;(?P&amp;lt;title&amp;gt;[^&amp;lt;]+)&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;webpage&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;title&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;group&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;title&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Note how you tolerate potential changes in the &lt;code&gt;style&lt;/code&gt; attribute&amp;rsquo;s value or switch from using double quotes to single for &lt;code&gt;class&lt;/code&gt; attribute:&lt;/p&gt;
&lt;p&gt;The code definitely should not look like:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;3
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;title&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;bp&#34;&gt;self&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;_search_regex&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;sa&#34;&gt;r&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;&amp;lt;span style=&amp;#34;position: absolute; left: 910px; width: 90px; float: right; z-index: 9999;&amp;#34; class=&amp;#34;title&amp;#34;&amp;gt;(.*?)&amp;lt;/span&amp;gt;&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;webpage&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;title&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;group&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;title&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;h3 id=&#34;long-lines-policy&#34;&gt;Long lines policy
&lt;/h3&gt;&lt;p&gt;There is a soft limit to keep lines of code under 80 characters long. This means it should be respected if possible and if it does not make readability and code maintenance worse.&lt;/p&gt;
&lt;p&gt;For example, you should &lt;strong&gt;never&lt;/strong&gt; split long string literals like URLs or some other often copied entities over multiple lines to fit this limit:&lt;/p&gt;
&lt;p&gt;Correct:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;https://www.youtube.com/watch?v=FqZTN594JQw&amp;amp;list=PLMYEtVRpaqY00V9W81Cwmzp6N6vZqfUKD4&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Incorrect:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;https://www.youtube.com/watch?v=FqZTN594JQw&amp;amp;list=&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;PLMYEtVRpaqY00V9W81Cwmzp6N6vZqfUKD4&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;h3 id=&#34;inline-values&#34;&gt;Inline values
&lt;/h3&gt;&lt;p&gt;Extracting variables is acceptable for reducing code duplication and improving readability of complex expressions. However, you should avoid extracting variables used only once and moving them to opposite parts of the extractor file, which makes reading the linear flow difficult.&lt;/p&gt;
&lt;h4 id=&#34;example-4&#34;&gt;Example
&lt;/h4&gt;&lt;p&gt;Correct:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;title&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;bp&#34;&gt;self&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;_html_search_regex&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;sa&#34;&gt;r&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;&amp;lt;title&amp;gt;([^&amp;lt;]+)&amp;lt;/title&amp;gt;&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;webpage&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;title&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Incorrect:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;3
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;TITLE_RE&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;sa&#34;&gt;r&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;&amp;lt;title&amp;gt;([^&amp;lt;]+)&amp;lt;/title&amp;gt;&amp;#39;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# ...some lines of code...&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;title&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;bp&#34;&gt;self&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;_html_search_regex&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;TITLE_RE&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;webpage&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;title&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;h3 id=&#34;collapse-fallbacks&#34;&gt;Collapse fallbacks
&lt;/h3&gt;&lt;p&gt;Multiple fallback values can quickly become unwieldy. Collapse multiple fallback values into a single expression via a list of patterns.&lt;/p&gt;
&lt;h4 id=&#34;example-5&#34;&gt;Example
&lt;/h4&gt;&lt;p&gt;Good:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;3
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;description&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;bp&#34;&gt;self&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;_html_search_meta&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;og:description&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;description&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;twitter:description&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;],&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;webpage&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;description&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;default&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;kc&#34;&gt;None&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Unwieldy:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;3
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;4
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;description&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;bp&#34;&gt;self&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;_og_search_description&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;webpage&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;default&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;kc&#34;&gt;None&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;ow&#34;&gt;or&lt;/span&gt; &lt;span class=&#34;bp&#34;&gt;self&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;_html_search_meta&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;description&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;webpage&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;default&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;kc&#34;&gt;None&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;ow&#34;&gt;or&lt;/span&gt; &lt;span class=&#34;bp&#34;&gt;self&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;_html_search_meta&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;twitter:description&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;webpage&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;default&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;kc&#34;&gt;None&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;))&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Methods supporting list of patterns are: &lt;code&gt;_search_regex&lt;/code&gt;, &lt;code&gt;_html_search_regex&lt;/code&gt;, &lt;code&gt;_og_search_property&lt;/code&gt;, &lt;code&gt;_html_search_meta&lt;/code&gt;.&lt;/p&gt;
&lt;h3 id=&#34;trailing-parentheses&#34;&gt;Trailing parentheses
&lt;/h3&gt;&lt;p&gt;Always move trailing parentheses after the last argument.&lt;/p&gt;
&lt;h4 id=&#34;example-6&#34;&gt;Example
&lt;/h4&gt;&lt;p&gt;Correct:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;k&#34;&gt;lambda&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;x&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;x&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;ResultSet&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;][&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;Result&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;][&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;0&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;][&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;VideoUrlSet&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;][&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;VideoUrl&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;],&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;nb&#34;&gt;list&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Incorrect:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;3
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;k&#34;&gt;lambda&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;x&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;x&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;ResultSet&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;][&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;Result&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;][&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;0&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;][&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;VideoUrlSet&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;][&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;VideoUrl&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;],&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;nb&#34;&gt;list&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;h3 id=&#34;use-convenience-conversion-and-parsing-functions&#34;&gt;Use convenience conversion and parsing functions
&lt;/h3&gt;&lt;p&gt;Wrap all extracted numeric data into safe functions from &lt;a class=&#34;link&#34; href=&#34;https://github.com/ytdl-org/youtube-dl/blob/master/youtube_dl/utils.py&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;code&gt;youtube_dl/utils.py&lt;/code&gt;&lt;/a&gt;: &lt;code&gt;int_or_none&lt;/code&gt;, &lt;code&gt;float_or_none&lt;/code&gt;. Use them for string to number conversions as well.&lt;/p&gt;
&lt;p&gt;Use &lt;code&gt;url_or_none&lt;/code&gt; for safe URL processing.&lt;/p&gt;
&lt;p&gt;Use &lt;code&gt;traverse_obj&lt;/code&gt; for safe metadata extraction from parsed JSON.&lt;/p&gt;
&lt;p&gt;Use &lt;code&gt;unified_strdate&lt;/code&gt; for uniform &lt;code&gt;upload_date&lt;/code&gt; or any &lt;code&gt;YYYYMMDD&lt;/code&gt; meta field extraction, &lt;code&gt;unified_timestamp&lt;/code&gt; for uniform &lt;code&gt;timestamp&lt;/code&gt; extraction, &lt;code&gt;parse_filesize&lt;/code&gt; for &lt;code&gt;filesize&lt;/code&gt; extraction, &lt;code&gt;parse_count&lt;/code&gt; for count meta fields extraction, &lt;code&gt;parse_resolution&lt;/code&gt;, &lt;code&gt;parse_duration&lt;/code&gt; for &lt;code&gt;duration&lt;/code&gt; extraction, &lt;code&gt;parse_age_limit&lt;/code&gt; for &lt;code&gt;age_limit&lt;/code&gt; extraction.&lt;/p&gt;
&lt;p&gt;Explore &lt;a class=&#34;link&#34; href=&#34;https://github.com/ytdl-org/youtube-dl/blob/master/youtube_dl/utils.py&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;code&gt;youtube_dl/utils.py&lt;/code&gt;&lt;/a&gt; for more useful convenience functions.&lt;/p&gt;
&lt;h4 id=&#34;more-examples&#34;&gt;More examples
&lt;/h4&gt;&lt;h5 id=&#34;safely-extract-optional-description-from-parsed-json&#34;&gt;Safely extract optional description from parsed JSON
&lt;/h5&gt;&lt;p&gt;When processing complex JSON, as often returned by site API requests or stashed in web pages for &amp;ldquo;hydration&amp;rdquo;, you can use the &lt;code&gt;traverse_obj()&lt;/code&gt; utility function to handle multiple fallback values and to ensure the expected type of metadata items. The function&amp;rsquo;s docstring defines how the function works: also review usage in the codebase for more examples.&lt;/p&gt;
&lt;p&gt;In this example, a text &lt;code&gt;description&lt;/code&gt;, or &lt;code&gt;None&lt;/code&gt;, is pulled from the &lt;code&gt;.result.video[0].summary&lt;/code&gt; member of the parsed JSON &lt;code&gt;response&lt;/code&gt;, if available.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;description&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;traverse_obj&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;response&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;result&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;video&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;mi&#34;&gt;0&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;summary&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;T&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;compat_str&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)))&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;&lt;code&gt;T(...)&lt;/code&gt; is a shorthand for a set literal; if you hate people who still run Python 2.6, &lt;code&gt;T(type_or_transformation)&lt;/code&gt; could be written as a set literal &lt;code&gt;{type_or_transformation}&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Some extractors use the older and less capable &lt;code&gt;try_get()&lt;/code&gt; function in the same way.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;description&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;try_get&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;response&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;k&#34;&gt;lambda&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;x&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;x&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;result&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;][&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;video&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;][&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;0&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;][&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;summary&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;],&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;compat_str&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;h5 id=&#34;safely-extract-more-optional-metadata&#34;&gt;Safely extract more optional metadata
&lt;/h5&gt;&lt;p&gt;In this example, various optional metadata values are extracted from the &lt;code&gt;.result.video[0]&lt;/code&gt; member of the parsed JSON &lt;code&gt;response&lt;/code&gt;, which is expected to be a JS object, parsed into a &lt;code&gt;dict&lt;/code&gt;, with no crash if that isn&amp;rsquo;t so, or if any of the target values are missing or invalid.&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;3
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;4
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;5
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;6
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;video&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;traverse_obj&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;response&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;result&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;video&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;mi&#34;&gt;0&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;T&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;nb&#34;&gt;dict&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)))&lt;/span&gt; &lt;span class=&#34;ow&#34;&gt;or&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;{}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# formerly:&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;c1&#34;&gt;# video = try_get(response, lambda x: x[&amp;#39;result&amp;#39;][&amp;#39;video&amp;#39;][0], dict) or {}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;description&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;video&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;get&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;summary&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;duration&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;float_or_none&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;video&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;get&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;durationMs&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;),&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;scale&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;mi&#34;&gt;1000&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;view_count&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;int_or_none&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;video&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;get&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;views&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;))&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;h4 id=&#34;safely-extract-nested-lists&#34;&gt;Safely extract nested lists
&lt;/h4&gt;&lt;p&gt;Suppose you&amp;rsquo;ve extracted JSON like this into a Python data structure named &lt;code&gt;media_json&lt;/code&gt; using, say, the &lt;code&gt;_download_json()&lt;/code&gt; or &lt;code&gt;_parse_json()&lt;/code&gt; methods of &lt;code&gt;InfoExtractor&lt;/code&gt;:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt; 1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 3
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 4
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 5
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 6
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 7
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 8
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 9
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;10
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;11
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;12
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;13
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;14
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;15
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;16
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;17
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;18
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-json&#34; data-lang=&#34;json&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;nt&#34;&gt;&amp;#34;title&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;Example video&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;nt&#34;&gt;&amp;#34;comment&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;try extracting this&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;nt&#34;&gt;&amp;#34;media&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;[{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;nt&#34;&gt;&amp;#34;type&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;bad&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;nt&#34;&gt;&amp;#34;size&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;mi&#34;&gt;320&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;nt&#34;&gt;&amp;#34;url&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;https://some.cdn.site/bad.mp4&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;p&#34;&gt;},&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;nt&#34;&gt;&amp;#34;type&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;streaming&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;nt&#34;&gt;&amp;#34;url&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;https://some.cdn.site/hls.m3u8&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;p&#34;&gt;},&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;nt&#34;&gt;&amp;#34;type&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;super&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;nt&#34;&gt;&amp;#34;size&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;mi&#34;&gt;1280&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;nt&#34;&gt;&amp;#34;url&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;https://some.cdn.site/good.webm&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;p&#34;&gt;}],&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;nt&#34;&gt;&amp;#34;moreStuff&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;more values&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;err&#34;&gt;...&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Then extractor code like this can collect the various fields of the JSON:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt; 1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 3
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 4
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 5
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 6
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 7
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 8
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 9
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;10
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;11
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;12
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;13
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;14
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;15
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;16
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;17
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;18
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;19
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;20
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;21
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;22
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;23
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;24
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;25
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;26
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;27
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;28
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;29
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;30
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;31
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;32
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;33
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;34
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;35
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;36
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;37
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;38
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;39
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;40
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;41
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;o&#34;&gt;...&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;kn&#34;&gt;from&lt;/span&gt; &lt;span class=&#34;nn&#34;&gt;..utils&lt;/span&gt; &lt;span class=&#34;kn&#34;&gt;import&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;determine_ext&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;int_or_none&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;T&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;traverse_obj&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;txt_or_none&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;url_or_none&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;o&#34;&gt;...&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;o&#34;&gt;...&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;n&#34;&gt;info_dict&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;{}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;c1&#34;&gt;# extract title and description if valid and not empty&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;n&#34;&gt;info_dict&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;update&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;traverse_obj&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;media_json&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;            &lt;span class=&#34;s1&#34;&gt;&amp;#39;title&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;title&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;T&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;txt_or_none&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)),&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;            &lt;span class=&#34;s1&#34;&gt;&amp;#39;description&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;comment&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;T&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;txt_or_none&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)),&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;p&#34;&gt;}))&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;c1&#34;&gt;# extract any recognisable media formats&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;n&#34;&gt;fmts&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;[]&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;c1&#34;&gt;# traverse into &amp;#34;media&amp;#34; list, extract `dict`s with desired keys&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;k&#34;&gt;for&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;fmt&lt;/span&gt; &lt;span class=&#34;ow&#34;&gt;in&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;traverse_obj&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;media_json&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;media&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;bp&#34;&gt;Ellipsis&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;                &lt;span class=&#34;s1&#34;&gt;&amp;#39;format_id&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;type&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;T&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;txt_or_none&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)),&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;                &lt;span class=&#34;s1&#34;&gt;&amp;#39;url&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;url&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;T&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;url_or_none&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)),&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;                &lt;span class=&#34;s1&#34;&gt;&amp;#39;width&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;size&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;T&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;int_or_none&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)),&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;})):&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;            &lt;span class=&#34;c1&#34;&gt;# bad `fmt` values were `None` and removed&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;            &lt;span class=&#34;k&#34;&gt;if&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;url&amp;#39;&lt;/span&gt; &lt;span class=&#34;ow&#34;&gt;not&lt;/span&gt; &lt;span class=&#34;ow&#34;&gt;in&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;fmt&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;                &lt;span class=&#34;k&#34;&gt;continue&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;            &lt;span class=&#34;n&#34;&gt;fmt_url&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;fmt&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;url&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;]&lt;/span&gt;  &lt;span class=&#34;c1&#34;&gt;# known to be valid URL&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;            &lt;span class=&#34;n&#34;&gt;ext&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;determine_ext&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;fmt_url&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;            &lt;span class=&#34;k&#34;&gt;if&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;ext&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;==&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;m3u8&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;                &lt;span class=&#34;n&#34;&gt;fmts&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;extend&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;bp&#34;&gt;self&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;_extract_m3u8_formats&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;fmt_url&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;video_id&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;mp4&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;fatal&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;=&lt;/span&gt;&lt;span class=&#34;kc&#34;&gt;False&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;))&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;            &lt;span class=&#34;k&#34;&gt;else&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;                &lt;span class=&#34;n&#34;&gt;fmt&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;ext&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;]&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;ext&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;                &lt;span class=&#34;n&#34;&gt;fmts&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;append&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;fmt&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;c1&#34;&gt;# sort, raise if no formats&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;bp&#34;&gt;self&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;_sort_formats&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;fmts&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;n&#34;&gt;info_dict&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;formats&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;]&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;fmts&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;o&#34;&gt;...&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;The extractor raises an exception rather than random crashes if the JSON structure changes so that no formats are found.&lt;/p&gt;
&lt;h1 id=&#34;embedding-youtube-dl&#34;&gt;EMBEDDING YOUTUBE-DL
&lt;/h1&gt;&lt;p&gt;youtube-dl makes the best effort to be a good command-line program, and thus should be callable from any programming language. If you encounter any problems parsing its output, feel free to &lt;a class=&#34;link&#34; href=&#34;https://github.com/ytdl-org/youtube-dl/issues/new&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;create a report&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;From a Python program, you can embed youtube-dl in a more powerful fashion, like this:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;3
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;4
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;5
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;6
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;kn&#34;&gt;from&lt;/span&gt; &lt;span class=&#34;nn&#34;&gt;__future__&lt;/span&gt; &lt;span class=&#34;kn&#34;&gt;import&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;unicode_literals&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;kn&#34;&gt;import&lt;/span&gt; &lt;span class=&#34;nn&#34;&gt;youtube_dl&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;ydl_opts&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;{}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;k&#34;&gt;with&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;youtube_dl&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;YoutubeDL&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;ydl_opts&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt; &lt;span class=&#34;k&#34;&gt;as&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;ydl&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;ydl&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;download&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;([&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;https://www.youtube.com/watch?v=BaW_jenozKc&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;])&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Most likely, you&amp;rsquo;ll want to use various options. For a list of options available, have a look at &lt;a class=&#34;link&#34; href=&#34;https://github.com/ytdl-org/youtube-dl/blob/3e4cedf9e8cd3157df2457df7274d0c842421945/youtube_dl/YoutubeDL.py#L137-L312&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;code&gt;youtube_dl/YoutubeDL.py&lt;/code&gt;&lt;/a&gt;. For a start, if you want to intercept youtube-dl&amp;rsquo;s output, set a &lt;code&gt;logger&lt;/code&gt; object.&lt;/p&gt;
&lt;p&gt;Here&amp;rsquo;s a more complete example of a program that outputs only errors (and a short message after the download is finished), and downloads/converts the video to an mp3 file:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt; 1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 3
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 4
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 5
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 6
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 7
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 8
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 9
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;10
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;11
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;12
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;13
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;14
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;15
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;16
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;17
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;18
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;19
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;20
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;21
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;22
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;23
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;24
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;25
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;26
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;27
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;28
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;29
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;30
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;31
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;32
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-python&#34; data-lang=&#34;python&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;kn&#34;&gt;from&lt;/span&gt; &lt;span class=&#34;nn&#34;&gt;__future__&lt;/span&gt; &lt;span class=&#34;kn&#34;&gt;import&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;unicode_literals&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;kn&#34;&gt;import&lt;/span&gt; &lt;span class=&#34;nn&#34;&gt;youtube_dl&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;k&#34;&gt;class&lt;/span&gt; &lt;span class=&#34;nc&#34;&gt;MyLogger&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;nb&#34;&gt;object&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;):&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;k&#34;&gt;def&lt;/span&gt; &lt;span class=&#34;nf&#34;&gt;debug&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;bp&#34;&gt;self&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;msg&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;):&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;k&#34;&gt;pass&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;k&#34;&gt;def&lt;/span&gt; &lt;span class=&#34;nf&#34;&gt;warning&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;bp&#34;&gt;self&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;msg&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;):&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;k&#34;&gt;pass&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;k&#34;&gt;def&lt;/span&gt; &lt;span class=&#34;nf&#34;&gt;error&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;bp&#34;&gt;self&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;msg&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;):&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;nb&#34;&gt;print&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;msg&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;k&#34;&gt;def&lt;/span&gt; &lt;span class=&#34;nf&#34;&gt;my_hook&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;d&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;):&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;k&#34;&gt;if&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;d&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;status&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;]&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;==&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;finished&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;nb&#34;&gt;print&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;Done downloading, now converting ...&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;n&#34;&gt;ydl_opts&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;s1&#34;&gt;&amp;#39;format&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;bestaudio/best&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;s1&#34;&gt;&amp;#39;postprocessors&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;[{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;s1&#34;&gt;&amp;#39;key&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;FFmpegExtractAudio&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;s1&#34;&gt;&amp;#39;preferredcodec&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;mp3&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;        &lt;span class=&#34;s1&#34;&gt;&amp;#39;preferredquality&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s1&#34;&gt;&amp;#39;192&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;p&#34;&gt;}],&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;s1&#34;&gt;&amp;#39;logger&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;MyLogger&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(),&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;s1&#34;&gt;&amp;#39;progress_hooks&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;[&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;my_hook&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;],&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;k&#34;&gt;with&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;youtube_dl&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;YoutubeDL&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;ydl_opts&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt; &lt;span class=&#34;k&#34;&gt;as&lt;/span&gt; &lt;span class=&#34;n&#34;&gt;ydl&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;n&#34;&gt;ydl&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;n&#34;&gt;download&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;([&lt;/span&gt;&lt;span class=&#34;s1&#34;&gt;&amp;#39;https://www.youtube.com/watch?v=BaW_jenozKc&amp;#39;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;])&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;h1 id=&#34;bugs&#34;&gt;BUGS
&lt;/h1&gt;&lt;p&gt;Bugs and suggestions should be reported in the issue tracker: &lt;a class=&#34;link&#34; href=&#34;https://github.com/ytdl-org/youtube-dl/issues&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;https://github.com/ytdl-org/youtube-dl/issues&lt;/a&gt; (&lt;a class=&#34;link&#34; href=&#34;https://yt-dl.org/bug&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;https://yt-dl.org/bug&lt;/a&gt; is an alias for this). Unless you were prompted to or there is another pertinent reason (e.g. GitHub fails to accept the bug report), please do not send bug reports via personal email. For discussions, join us in the IRC channel &lt;a class=&#34;link&#34; href=&#34;irc://chat.freenode.net/#youtube-dl&#34; &gt;#youtube-dl&lt;/a&gt; on freenode (&lt;a class=&#34;link&#34; href=&#34;https://webchat.freenode.net/?randomnick=1&amp;amp;channels=youtube-dl&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;webchat&lt;/a&gt;).&lt;/p&gt;
&lt;h2 id=&#34;opening-a-bug-report-or-suggestion&#34;&gt;Opening a bug report or suggestion
&lt;/h2&gt;&lt;p&gt;Be sure to follow instructions provided &lt;strong&gt;below&lt;/strong&gt; and &lt;strong&gt;in the issue tracker&lt;/strong&gt;. Complete the appropriate issue template fully. Consider whether your problem is covered by an existing issue: if so, follow the discussion there. Avoid commenting on existing duplicate issues as such comments do not add to the discussion of the issue and are liable to be treated as spam.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Please include the full output of youtube-dl when run with &lt;code&gt;-v&lt;/code&gt;&lt;/strong&gt;, i.e. &lt;strong&gt;add&lt;/strong&gt; &lt;code&gt;-v&lt;/code&gt; flag to &lt;strong&gt;your command line&lt;/strong&gt;, copy the &lt;strong&gt;whole&lt;/strong&gt; output and post it in the issue body wrapped in ``` for better formatting. It should look similar to this:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt; 1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 3
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 4
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 5
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 6
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 7
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 8
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 9
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;10
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;11
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-fallback&#34; data-lang=&#34;fallback&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;$ youtube-dl -v &amp;lt;your command line&amp;gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;[debug] System config: []
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;[debug] User config: []
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;[debug] Command-line args: [u&amp;#39;-v&amp;#39;, u&amp;#39;https://www.youtube.com/watch?v=BaW_jenozKcj&amp;#39;]
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;[debug] Encodings: locale cp1251, fs mbcs, out cp866, pref cp1251
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;[debug] youtube-dl version 2015.12.06
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;[debug] Git HEAD: 135392e
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;[debug] Python version 2.6.6 - Windows-2003Server-5.2.3790-SP2
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;[debug] exe versions: ffmpeg N-75573-g1d0487f, ffprobe N-75573-g1d0487f, rtmpdump 2.4
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;[debug] Proxy map: {}
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;...
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;&lt;strong&gt;Do not post screenshots of verbose logs; only plain text is acceptable.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The output (including the first lines) contains important debugging information. Issues without the full output are often not reproducible and therefore do not get solved in short order, if ever.&lt;/p&gt;
&lt;p&gt;Finally please review your issue to avoid various common mistakes (you can and should use this as a checklist) listed below.&lt;/p&gt;
&lt;h3 id=&#34;is-the-description-of-the-issue-itself-sufficient&#34;&gt;Is the description of the issue itself sufficient?
&lt;/h3&gt;&lt;p&gt;We often get issue reports that are hard to understand. To avoid subsequent clarifications, and to assist participants who are not native English speakers, please elaborate on what feature you are requesting, or what bug you want to be fixed.&lt;/p&gt;
&lt;p&gt;Make sure that it&amp;rsquo;s obvious&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;What the problem is&lt;/li&gt;
&lt;li&gt;How it could be fixed&lt;/li&gt;
&lt;li&gt;How your proposed solution would look&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;If your report is shorter than two lines, it is almost certainly missing some of these, which makes it hard for us to respond to it. We&amp;rsquo;re often too polite to close the issue outright, but the missing info makes misinterpretation likely. As a committer myself, I often get frustrated by these issues, since the only possible way for me to move forward on them is to ask for clarification over and over.&lt;/p&gt;
&lt;p&gt;For bug reports, this means that your report should contain the &lt;em&gt;complete&lt;/em&gt; output of youtube-dl when called with the &lt;code&gt;-v&lt;/code&gt; flag. The error message you get for (most) bugs even says so, but you would not believe how many of our bug reports do not contain this information.&lt;/p&gt;
&lt;p&gt;If your server has multiple IPs or you suspect censorship, adding &lt;code&gt;--call-home&lt;/code&gt; may be a good idea to get more diagnostics. If the error is &lt;code&gt;ERROR: Unable to extract ...&lt;/code&gt; and you cannot reproduce it from multiple countries, add &lt;code&gt;--dump-pages&lt;/code&gt; (warning: this will yield a rather large output, redirect it to the file &lt;code&gt;log.txt&lt;/code&gt; by adding &lt;code&gt;&amp;gt;log.txt 2&amp;gt;&amp;amp;1&lt;/code&gt; to your command-line) or upload the &lt;code&gt;.dump&lt;/code&gt; files you get when you add &lt;code&gt;--write-pages&lt;/code&gt; &lt;a class=&#34;link&#34; href=&#34;https://gist.github.com/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;somewhere&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Site support requests must contain an example URL&lt;/strong&gt;. An example URL is a URL you might want to download, like &lt;code&gt;https://www.youtube.com/watch?v=BaW_jenozKc&lt;/code&gt;. There should be an obvious video present. Except under very special circumstances, the main page of a video service (e.g. &lt;code&gt;https://www.youtube.com/&lt;/code&gt;) is &lt;em&gt;not&lt;/em&gt; an example URL.&lt;/p&gt;
&lt;h3 id=&#34;is-the-issue-already-documented&#34;&gt;Is the issue already documented?
&lt;/h3&gt;&lt;p&gt;Make sure that someone has not already opened the issue you&amp;rsquo;re trying to open. Search at the top of the window or browse the &lt;a class=&#34;link&#34; href=&#34;https://github.com/ytdl-org/youtube-dl/search?type=Issues&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;GitHub Issues&lt;/a&gt; of this repository. Initially, at least, use the search term &lt;code&gt;-label:duplicate&lt;/code&gt; to focus on active issues. If there is an issue, feel free to write something along the lines of &amp;ldquo;This affects me as well, with version 2015.01.01. Here is some more information on the issue: &amp;hellip;&amp;rdquo;. While some issues may be old, a new post into them often spurs rapid activity.&lt;/p&gt;
&lt;h3 id=&#34;are-you-using-the-latest-version&#34;&gt;Are you using the latest version?
&lt;/h3&gt;&lt;p&gt;Before reporting any issue, type &lt;code&gt;youtube-dl -U&lt;/code&gt;. This should report that you&amp;rsquo;re up-to-date. About 20% of the reports we receive are already fixed, but people are using outdated versions. This goes for feature requests as well.&lt;/p&gt;
&lt;h3 id=&#34;why-are-existing-options-not-enough&#34;&gt;Why are existing options not enough?
&lt;/h3&gt;&lt;p&gt;Before requesting a new feature, please have a quick peek at &lt;a class=&#34;link&#34; href=&#34;https://github.com/ytdl-org/youtube-dl/blob/master/README.md#options&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;the list of supported options&lt;/a&gt;. Many feature requests are for features that actually exist already! Please, absolutely do show off your work in the issue report and detail how the existing similar options do &lt;em&gt;not&lt;/em&gt; solve your problem.&lt;/p&gt;
&lt;h3 id=&#34;is-there-enough-context-in-your-bug-report&#34;&gt;Is there enough context in your bug report?
&lt;/h3&gt;&lt;p&gt;People want to solve problems, and often think they do us a favor by breaking down their larger problems (e.g. wanting to skip already downloaded files) to a specific request (e.g. requesting us to look whether the file exists before downloading the info page). However, what often happens is that they break down the problem into two steps: One simple, and one impossible (or extremely complicated one).&lt;/p&gt;
&lt;p&gt;We are then presented with a very complicated request when the original problem could be solved far easier, e.g. by recording the downloaded video IDs in a separate file. To avoid this, you must include the greater context where it is non-obvious. In particular, every feature request that does not consist of adding support for a new site should contain a use case scenario that explains in what situation the missing feature would be useful.&lt;/p&gt;
&lt;h3 id=&#34;does-the-issue-involve-one-problem-and-one-problem-only&#34;&gt;Does the issue involve one problem, and one problem only?
&lt;/h3&gt;&lt;p&gt;Some of our users seem to think there is a limit of issues they can or should open. There is no limit of issues they can or should open. While it may seem appealing to be able to dump all your issues into one ticket, that means that someone who solves one of your issues cannot mark the issue as closed. Typically, reporting a bunch of issues leads to the ticket lingering since nobody wants to attack that behemoth, until someone mercifully splits the issue into multiple ones.&lt;/p&gt;
&lt;p&gt;In particular, every site support request issue should only pertain to services at one site (generally under a common domain, but always using the same backend technology). Do not request support for vimeo user videos, White house podcasts, and Google Plus pages in the same issue. Also, make sure that you don&amp;rsquo;t post bug reports alongside feature requests. As a rule of thumb, a feature request does not include outputs of youtube-dl that are not immediately related to the feature at hand. Do not post reports of a network error alongside the request for a new video service.&lt;/p&gt;
&lt;h3 id=&#34;is-anyone-going-to-need-the-feature&#34;&gt;Is anyone going to need the feature?
&lt;/h3&gt;&lt;p&gt;Only post features that you (or an incapacitated friend you can personally talk to) require. Do not post features because they seem like a good idea. If they are really useful, they will be requested by someone who requires them.&lt;/p&gt;
&lt;h3 id=&#34;is-your-question-about-youtube-dl&#34;&gt;Is your question about youtube-dl?
&lt;/h3&gt;&lt;p&gt;It may sound strange, but some bug reports we receive are completely unrelated to youtube-dl and relate to a different, or even the reporter&amp;rsquo;s own, application. Please make sure that you are actually using youtube-dl. If you are using a UI for youtube-dl, report the bug to the maintainer of the actual application providing the UI. On the other hand, if your UI for youtube-dl fails in some way you believe is related to youtube-dl, by all means, go ahead and report the bug.&lt;/p&gt;
&lt;h1 id=&#34;copyright&#34;&gt;COPYRIGHT
&lt;/h1&gt;&lt;p&gt;youtube-dl is released into the public domain by the copyright holders.&lt;/p&gt;
&lt;p&gt;This README file was originally written by &lt;a class=&#34;link&#34; href=&#34;https://github.com/dbbolton&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Daniel Bolton&lt;/a&gt; and is likewise released into the public domain.&lt;/p&gt;
</description>
        </item>
        <item>
        <title>spotify-downloader</title>
        <link>https://producthunt.programnotes.cn/en/p/spotify-downloader/</link>
        <pubDate>Tue, 26 Aug 2025 15:29:12 +0800</pubDate>
        
        <guid>https://producthunt.programnotes.cn/en/p/spotify-downloader/</guid>
        <description>&lt;img src="https://images.unsplash.com/photo-1739987017543-c79061509bc9?ixid=M3w0NjAwMjJ8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NTYxOTMyOTR8&amp;ixlib=rb-4.1.0" alt="Featured image of post spotify-downloader" /&gt;&lt;h1 id=&#34;spotdlspotify-downloader&#34;&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/spotDL/spotify-downloader&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;spotDL/spotify-downloader&lt;/a&gt;
&lt;/h1&gt;&lt;!--- mdformat-toc start --slug=github ---&gt;
&lt;!---
!!! IF EDITING THE README, ENSURE TO COPY THE WHOLE FILE TO index.md in `/docs/` AND REMOVE THE REFERENCES TO ReadTheDocs THERE.
---&gt;
&lt;div align=&#34;center&#34;&gt;
&lt;h1 id=&#34;spotdl-v4&#34;&gt;spotDL v4
&lt;/h1&gt;&lt;p&gt;&lt;strong&gt;spotDL&lt;/strong&gt; finds songs from Spotify playlists on YouTube and downloads them - along with album art, lyrics and metadata.&lt;/p&gt;
&lt;p&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/spotDL/spotify-downloader/blob/master/LICENSE&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://img.shields.io/github/license/spotdl/spotify-downloader?color=44CC11&amp;amp;style=flat-square&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;MIT License&#34;
	
	
&gt;&lt;/a&gt;
&lt;a class=&#34;link&#34; href=&#34;https://pypi.org/project/spotdl/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://img.shields.io/pypi/pyversions/spotDL?color=%2344CC11&amp;amp;style=flat-square&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;PyPI version&#34;
	
	
&gt;&lt;/a&gt;
&lt;a class=&#34;link&#34; href=&#34;https://pypi.org/project/spotdl/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://img.shields.io/pypi/dw/spotDL?label=downloads@pypi&amp;amp;color=344CC11&amp;amp;style=flat-square&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;PyPi downloads&#34;
	
	
&gt;&lt;/a&gt;
&lt;img src=&#34;https://img.shields.io/github/contributors/spotDL/spotify-downloader?style=flat-square&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;Contributors&#34;
	
	
&gt;
&lt;a class=&#34;link&#34; href=&#34;https://discord.gg/xCa23pwJWY&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://img.shields.io/discord/771628785447337985?label=discord&amp;amp;logo=discord&amp;amp;style=flat-square&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;Discord&#34;
	
	
&gt;&lt;/a&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;spotDL: The fastest, easiest and most accurate command-line music downloader.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/div&gt;
&lt;hr&gt;
&lt;p&gt;&lt;strong&gt;&lt;a class=&#34;link&#34; href=&#34;https://spotdl.readthedocs.io&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Read the documentation on ReadTheDocs!&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;hr&gt;
&lt;h2 id=&#34;installation&#34;&gt;Installation
&lt;/h2&gt;&lt;p&gt;Refer to our &lt;a class=&#34;link&#34; href=&#34;docs/installation.md&#34; &gt;Installation Guide&lt;/a&gt; for more details.&lt;/p&gt;
&lt;h3 id=&#34;python-recommended-method&#34;&gt;Python (Recommended Method)
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;em&gt;spotDL&lt;/em&gt; can be installed by running &lt;code&gt;pip install spotdl&lt;/code&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;To update spotDL run &lt;code&gt;pip install --upgrade spotdl&lt;/code&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;On some systems you might have to change &lt;code&gt;pip&lt;/code&gt; to &lt;code&gt;pip3&lt;/code&gt;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;details&gt;
    &lt;summary style=&#34;font-size:1.25em&#34;&gt;&lt;strong&gt;Other options&lt;/strong&gt;&lt;/summary&gt;
&lt;ul&gt;
&lt;li&gt;Prebuilt executable
&lt;ul&gt;
&lt;li&gt;You can download the latest version from the
&lt;a class=&#34;link&#34; href=&#34;https://github.com/spotDL/spotify-downloader/releases&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Releases Tab&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;On Termux
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;curl -L https://raw.githubusercontent.com/spotDL/spotify-downloader/master/scripts/termux.sh | sh&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Arch
&lt;ul&gt;
&lt;li&gt;There is an &lt;a class=&#34;link&#34; href=&#34;https://aur.archlinux.org/packages/spotdl/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Arch User Repository (AUR) package&lt;/a&gt; for
spotDL.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Docker
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Build image:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;docker build -t spotdl .
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Launch container with spotDL parameters (see section below). You need to create mapped
volume to access song files&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;docker run --rm -v &lt;span class=&#34;k&#34;&gt;$(&lt;/span&gt;&lt;span class=&#34;nb&#34;&gt;pwd&lt;/span&gt;&lt;span class=&#34;k&#34;&gt;)&lt;/span&gt;:/music spotdl download &lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;trackUrl&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Build from source&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;3
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;4
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;git clone https://github.com/spotDL/spotify-downloader &lt;span class=&#34;o&#34;&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class=&#34;nb&#34;&gt;cd&lt;/span&gt; spotify-downloader
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;pip install uv
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;uv sync
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;uv run scripts/build.py
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;An executable is created in &lt;code&gt;spotify-downloader/dist/&lt;/code&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/details&gt;
&lt;h3 id=&#34;installing-ffmpeg&#34;&gt;Installing FFmpeg
&lt;/h3&gt;&lt;p&gt;FFmpeg is required for spotDL. If using FFmpeg only for spotDL, you can simply install FFmpeg to your spotDL installation directory:
&lt;code&gt;spotdl --download-ffmpeg&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;We recommend the above option, but if you want to install FFmpeg system-wide,
follow these instructions&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://windowsloop.com/install-ffmpeg-windows-10/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Windows Tutorial&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;OSX - &lt;code&gt;brew install ffmpeg&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Linux - &lt;code&gt;sudo apt install ffmpeg&lt;/code&gt; or use your distro&amp;rsquo;s package manager&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;usage&#34;&gt;Usage
&lt;/h2&gt;&lt;p&gt;Using SpotDL without options:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-sh&#34; data-lang=&#34;sh&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;spotdl &lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;urls&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;You can run &lt;em&gt;spotDL&lt;/em&gt; as a package if running it as a script doesn&amp;rsquo;t work:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-sh&#34; data-lang=&#34;sh&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;python -m spotdl &lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;urls&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;General usage:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-sh&#34; data-lang=&#34;sh&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;spotdl &lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;operation&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;[&lt;/span&gt;options&lt;span class=&#34;o&#34;&gt;]&lt;/span&gt; QUERY
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;There are different &lt;strong&gt;operations&lt;/strong&gt; spotDL can perform. The &lt;em&gt;default&lt;/em&gt; is &lt;code&gt;download&lt;/code&gt;, which simply downloads the songs from YouTube and embeds metadata.&lt;/p&gt;
&lt;p&gt;The &lt;strong&gt;query&lt;/strong&gt; for spotDL is usually a list of Spotify URLs, but for some operations like &lt;strong&gt;sync&lt;/strong&gt;, only a single link or file is required.
For a list of all &lt;strong&gt;options&lt;/strong&gt; use &lt;code&gt;spotdl -h&lt;/code&gt;&lt;/p&gt;
&lt;details&gt;
&lt;summary style=&#34;font-size:1em&#34;&gt;&lt;strong&gt;Supported operations&lt;/strong&gt;&lt;/summary&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;save&lt;/code&gt;: Saves only the metadata from Spotify without downloading anything.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Usage:
&lt;code&gt;spotdl save [query] --save-file {filename}.spotdl&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;web&lt;/code&gt;: Starts a web interface instead of using the command line. However, it has limited features and only supports downloading single songs.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;url&lt;/code&gt;: Get direct download link for each song from the query.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Usage:
&lt;code&gt;spotdl url [query]&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;sync&lt;/code&gt;: Updates directories. Compares the directory with the current state of the playlist. Newly added songs will be downloaded and removed songs will be deleted. No other songs will be downloaded and no other files will be deleted.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Usage:
&lt;code&gt;spotdl sync [query] --save-file {filename}.spotdl&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;This create a new &lt;strong&gt;sync&lt;/strong&gt; file, to update the directory in the future, use:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;spotdl sync {filename}.spotdl&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;code&gt;meta&lt;/code&gt;: Updates metadata for the provided song files.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/details&gt;
&lt;h2 id=&#34;music-sourcing-and-audio-quality&#34;&gt;Music Sourcing and Audio Quality
&lt;/h2&gt;&lt;p&gt;spotDL uses YouTube as a source for music downloads. This method is used to avoid any issues related to downloading music from Spotify.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note&lt;/strong&gt;
Users are responsible for their actions and potential legal consequences. We do not support unauthorized downloading of copyrighted material and take no responsibility for user actions.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3 id=&#34;audio-quality&#34;&gt;Audio Quality
&lt;/h3&gt;&lt;p&gt;spotDL downloads music from YouTube and is designed to always download the highest possible bitrate; which is 128 kbps for regular users and 256 kbps for YouTube Music premium users.&lt;/p&gt;
&lt;p&gt;Check the &lt;a class=&#34;link&#34; href=&#34;docs/usage.md#audio-formats-and-quality&#34; &gt;Audio Formats&lt;/a&gt; page for more info.&lt;/p&gt;
&lt;h2 id=&#34;contributing&#34;&gt;Contributing
&lt;/h2&gt;&lt;p&gt;Interested in contributing? Check out our &lt;a class=&#34;link&#34; href=&#34;docs/CONTRIBUTING.md&#34; &gt;CONTRIBUTING.md&lt;/a&gt; to find
resources around contributing along with a guide on how to set up a development environment.&lt;/p&gt;
&lt;h3 id=&#34;join-our-amazing-community-as-a-code-contributor&#34;&gt;Join our amazing community as a code contributor
&lt;/h3&gt;&lt;a href=&#34;https://github.com/spotDL/spotify-downloader/graphs/contributors&#34;&gt;
  &lt;img class=&#34;dark-light&#34; src=&#34;https://contrib.rocks/image?repo=spotDL/spotify-downloader&amp;anon=0&amp;columns=25&amp;max=100&amp;r=true&#34; /&gt;
&lt;/a&gt;
&lt;h2 id=&#34;license&#34;&gt;License
&lt;/h2&gt;&lt;p&gt;This project is Licensed under the &lt;a class=&#34;link&#34; href=&#34;https://producthunt.programnotes.cn/LICENSE&#34; &gt;MIT&lt;/a&gt; License.&lt;/p&gt;
</description>
        </item>
        <item>
        <title>tchMaterial-parser</title>
        <link>https://producthunt.programnotes.cn/en/p/tchmaterial-parser/</link>
        <pubDate>Sun, 18 May 2025 15:26:34 +0800</pubDate>
        
        <guid>https://producthunt.programnotes.cn/en/p/tchmaterial-parser/</guid>
        <description>&lt;img src="https://images.unsplash.com/photo-1695871136637-5e636f8469af?ixid=M3w0NjAwMjJ8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NDc1NTMxMjl8&amp;ixlib=rb-4.1.0" alt="Featured image of post tchMaterial-parser" /&gt;&lt;h1 id=&#34;happycola233tchmaterial-parser&#34;&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/happycola233/tchMaterial-parser&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;happycola233/tchMaterial-parser&lt;/a&gt;
&lt;/h1&gt;&lt;h1 id=&#34;国家中小学智慧教育平台-电子课本下载工具&#34;&gt;&lt;a class=&#34;link&#34; href=&#34;https://basic.smartedu.cn/tchMaterial/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;国家中小学智慧教育平台&lt;/a&gt; 电子课本下载工具
&lt;/h1&gt;&lt;p&gt;&lt;img src=&#34;https://img.shields.io/badge/Python-3.x-blue.svg&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;Python Version&#34;
	
	
&gt;
&lt;img src=&#34;https://img.shields.io/badge/License-MIT-green.svg&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;License&#34;
	
	
&gt;
&lt;img src=&#34;https://img.shields.io/badge/Made_With-%E2%9D%A4-red.svg&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;Made With Love❤️&#34;
	
	
&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;[!TIP]
🚀最新版本 v3.0 现已发布，欢迎体验！&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;本工具可以帮助您从&lt;a class=&#34;link&#34; href=&#34;https://basic.smartedu.cn/tchMaterial/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;strong&gt;国家中小学智慧教育平台&lt;/strong&gt;&lt;/a&gt;获取电子课本的 PDF 文件网址并进行下载，让您更方便地获取课本内容。&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;[!NOTE]&lt;/p&gt;
&lt;p&gt;自&lt;strong&gt;2025 年 2 月&lt;/strong&gt;起，国家中小学智慧教育平台&lt;strong&gt;需要登录&lt;/strong&gt;才能访问电子课本资源，用户需提供 &lt;strong&gt;Access Token&lt;/strong&gt;（即登录凭据）才可正常使用本工具的下载功能。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;👉请先按照&lt;a class=&#34;link&#34; href=&#34;#2-%e8%ae%be%e7%bd%ae-access-token&#34; &gt;下方指南&lt;/a&gt;设置 Access Token，否则程序将无法解析资源！&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h2 id=&#34;工具特点&#34;&gt;✨工具特点
&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;支持 Access Token 登录&lt;/strong&gt;🔑：支持用户手动输入 Access Token，在 Windows 操作系统下会存入注册表，下次启动可自动加载。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;支持批量下载&lt;/strong&gt;📚：一次输入多个电子课本预览页面网址，即可批量下载 PDF 课本文件。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;自动文件命名&lt;/strong&gt;📂：程序会自动使用教材名称作为文件名，方便管理下载的课本文件。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;高 DPI 适配&lt;/strong&gt;🖥️：优化 UI 以适配高分辨率屏幕，避免界面模糊问题。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;下载进度可视化&lt;/strong&gt;📊：实时显示下载进度，支持暂停/恢复操作。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;跨平台支持&lt;/strong&gt;💻：支持 Windows、Linux、macOS 等操作系统（需要图形界面）。&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;下载与安装方法&#34;&gt;⬇️下载与安装方法
&lt;/h2&gt;&lt;h3 id=&#34;github-releases-页面&#34;&gt;GitHub Releases 页面
&lt;/h3&gt;&lt;p&gt;由于我们的精力有限，本项目的 &lt;a class=&#34;link&#34; href=&#34;https://github.com/happycola233/tchMaterial-parser/releases&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;GitHub Releases 页面&lt;/a&gt;&lt;strong&gt;仅会发布适用于 Windows 与 Linux 操作系统的 x64 架构&lt;/strong&gt;的程序。&lt;/p&gt;
&lt;p&gt;在下载完成之后，即可运行本程序，不需要额外的安装步骤。&lt;/p&gt;
&lt;h3 id=&#34;arch-用户软件仓库aur&#34;&gt;Arch 用户软件仓库（AUR）
&lt;/h3&gt;&lt;p&gt;对于 &lt;strong&gt;Arch Linux&lt;/strong&gt; 操作系统，本程序已发布至&lt;a class=&#34;link&#34; href=&#34;https://aur.archlinux.org/packages/tchmaterial-parser&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Arch 用户软件仓库&lt;/a&gt;，因此您还可以通过在终端中输入以下命令安装：&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-sh&#34; data-lang=&#34;sh&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;yay -S tchmaterial-parser
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;感谢 &lt;a class=&#34;link&#34; href=&#34;https://github.com/iamzhz&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;@iamzhz&lt;/a&gt; 制作了本工具的发行包（&lt;a class=&#34;link&#34; href=&#34;../../issues/26&#34; &gt;#26&lt;/a&gt;）！&lt;/p&gt;
&lt;h2 id=&#34;使用方法&#34;&gt;🛠️使用方法
&lt;/h2&gt;&lt;h3 id=&#34;1-输入教材链接&#34;&gt;1. 输入教材链接📥
&lt;/h3&gt;&lt;p&gt;将电子课本的&lt;strong&gt;预览页面网址&lt;/strong&gt;粘贴到程序文本框中，支持多个 URL（每行一个）。&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;示例网址&lt;/strong&gt;：&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-text&#34; data-lang=&#34;text&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;https://basic.smartedu.cn/tchMaterial/detail?contentType=assets_document&amp;amp;contentId=XXXXXX&amp;amp;catalogType=tchMaterial&amp;amp;subCatalog=tchMaterial
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;h3 id=&#34;2-设置-access-token&#34;&gt;2. 设置 Access Token🔑
&lt;/h3&gt;&lt;p&gt;若您第一次使用本程序，需点击 “&lt;strong&gt;设置 Token&lt;/strong&gt;” 按钮，粘贴 Access Token 并保存。&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;打开浏览器&lt;/strong&gt;，访问&lt;a class=&#34;link&#34; href=&#34;https://auth.smartedu.cn/uias/login&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;国家中小学智慧教育平台&lt;/a&gt;并&lt;strong&gt;登录账号&lt;/strong&gt;。&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;按下 &lt;strong&gt;F12&lt;/strong&gt; 或 &lt;strong&gt;Ctrl+Shift+I&lt;/strong&gt;，或右键——检查（审查元素）打开&lt;strong&gt;开发者工具&lt;/strong&gt;，选择&lt;strong&gt;控制台（Console）&lt;/strong&gt;。&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;在控制台粘贴以下代码后回车（Enter）：&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt; 1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 3
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 4
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 5
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 6
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 7
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 8
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt; 9
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;10
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-js&#34; data-lang=&#34;js&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;kd&#34;&gt;function&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;()&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  &lt;span class=&#34;kr&#34;&gt;const&lt;/span&gt; &lt;span class=&#34;nx&#34;&gt;authKey&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;nb&#34;&gt;Object&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;keys&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;localStorage&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;).&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;find&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;key&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&#34;nx&#34;&gt;key&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;startsWith&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;ND_UC_AUTH&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;));&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  &lt;span class=&#34;k&#34;&gt;if&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;o&#34;&gt;!&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;authKey&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;)&lt;/span&gt; &lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;nx&#34;&gt;console&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;error&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;未找到 Access Token，请确保已登录！&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;);&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    &lt;span class=&#34;k&#34;&gt;return&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  &lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  &lt;span class=&#34;kr&#34;&gt;const&lt;/span&gt; &lt;span class=&#34;nx&#34;&gt;tokenData&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;nx&#34;&gt;JSON&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;parse&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;localStorage&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;getItem&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;authKey&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;));&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  &lt;span class=&#34;kr&#34;&gt;const&lt;/span&gt; &lt;span class=&#34;nx&#34;&gt;accessToken&lt;/span&gt; &lt;span class=&#34;o&#34;&gt;=&lt;/span&gt; &lt;span class=&#34;nx&#34;&gt;JSON&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;parse&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;tokenData&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;value&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;).&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;access_token&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;  &lt;span class=&#34;nx&#34;&gt;console&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;.&lt;/span&gt;&lt;span class=&#34;nx&#34;&gt;log&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;(&lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;%cAccess Token: &amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;color: green; font-weight: bold&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;,&lt;/span&gt; &lt;span class=&#34;nx&#34;&gt;accessToken&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;);&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;})();&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;复制控制台输出的 &lt;strong&gt;Access Token&lt;/strong&gt;，然后在本程序中点击 “&lt;strong&gt;设置 Token&lt;/strong&gt;” 按钮，粘贴并保存 Token。&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;[!NOTE]
Access Token 可能会过期，若下载失败提示 &lt;strong&gt;401 Unauthorized&lt;/strong&gt;，请重新获取并设置新的 Token。&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h3 id=&#34;3-开始下载&#34;&gt;3. 开始下载🚀
&lt;/h3&gt;&lt;p&gt;点击 “&lt;strong&gt;下载&lt;/strong&gt;” 按钮，程序将自动解析并下载 PDF 课本。&lt;/p&gt;
&lt;p&gt;本工具支持&lt;strong&gt;批量下载&lt;/strong&gt;，所有 PDF 文件会自动按课本名称命名并保存在选定目录中。&lt;/p&gt;
&lt;h2 id=&#34;常见问题&#34;&gt;❓常见问题
&lt;/h2&gt;&lt;h3 id=&#34;1-为什么下载失败&#34;&gt;1. 为什么下载失败？⚠️
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;检查是否已&lt;a class=&#34;link&#34; href=&#34;#2-%e8%ae%be%e7%bd%ae-access-token&#34; &gt;&lt;strong&gt;正确设置 Access Token&lt;/strong&gt;&lt;/a&gt;🔑，且没有过期。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;确认网络连接是否正常&lt;/strong&gt;🌐，有时网络不稳定可能导致下载失败。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;确保输入的网址有效&lt;/strong&gt;🔗，部分旧资源可能已被移除。&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;2-access-token-保存在哪里&#34;&gt;2. Access Token 保存在哪里？💾
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Windows 操作系统&lt;/strong&gt;：Token 会存储在&lt;strong&gt;注册表&lt;/strong&gt; &lt;code&gt;HKEY_CURRENT_USER\Software\tchMaterial-parser&lt;/code&gt; 项中的 &lt;code&gt;AccessToken&lt;/code&gt; 值。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Linux 操作系统&lt;/strong&gt;: Token 会存储在 &lt;code&gt;~/.config/tchMaterial-parser/data.json&lt;/code&gt; 的文件中。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;macOS 等操作系统&lt;/strong&gt;：Token 仅在运行时临时存储于内存，不会自动保存，程序重启后需重新输入，目前我们正在努力改进该功能。&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;3-token-会不会泄露&#34;&gt;3. Token 会不会泄露？🔐
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;本程序&lt;strong&gt;不会上传&lt;/strong&gt; Token，也不会存储在云端，仅用于本地请求授权。&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;请勿在公开场合分享 Token&lt;/strong&gt;，以免您的账号被他人使用，造成严重后果。&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;star-history&#34;&gt;⭐Star History
&lt;/h2&gt;&lt;p&gt;&lt;a class=&#34;link&#34; href=&#34;https://star-history.com/#happycola233/tchMaterial-parser&amp;amp;Date&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;&lt;img src=&#34;https://api.star-history.com/svg?repos=happycola233/tchMaterial-parser&amp;amp;type=Date&#34;
	
	
	
	loading=&#34;lazy&#34;
	
		alt=&#34;Star History Chart&#34;
	
	
&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h2 id=&#34;贡献指南&#34;&gt;🤝贡献指南
&lt;/h2&gt;&lt;p&gt;如果您发现 Bug 或有改进建议，欢迎提交 &lt;strong&gt;Issue&lt;/strong&gt; 或 &lt;strong&gt;Pull Request&lt;/strong&gt;，让我们一起完善本工具！&lt;/p&gt;
&lt;h2 id=&#34;许可证&#34;&gt;📜许可证
&lt;/h2&gt;&lt;p&gt;本项目基于 &lt;a class=&#34;link&#34; href=&#34;LICENSE&#34; &gt;MIT 许可证&lt;/a&gt;，欢迎自由使用和二次开发。&lt;/p&gt;
&lt;h2 id=&#34;友情链接&#34;&gt;💌友情链接
&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;📚您也可以在 &lt;a class=&#34;link&#34; href=&#34;https://github.com/TapXWorld/ChinaTextbook&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;ChinaTextbook&lt;/a&gt; 项目中下载归档的教材 PDF。&lt;/li&gt;
&lt;/ul&gt;
</description>
        </item>
        <item>
        <title>node</title>
        <link>https://producthunt.programnotes.cn/en/p/node/</link>
        <pubDate>Mon, 05 May 2025 15:30:06 +0800</pubDate>
        
        <guid>https://producthunt.programnotes.cn/en/p/node/</guid>
        <description>&lt;img src="https://images.unsplash.com/photo-1604208032420-8595afeb49b7?ixid=M3w0NjAwMjJ8MHwxfHJhbmRvbXx8fHx8fHx8fDE3NDY0MzAxMDl8&amp;ixlib=rb-4.0.3" alt="Featured image of post node" /&gt;&lt;h1 id=&#34;nodejsnode&#34;&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/nodejs/node&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;nodejs/node&lt;/a&gt;
&lt;/h1&gt;&lt;h1 id=&#34;nodejs&#34;&gt;Node.js
&lt;/h1&gt;&lt;p&gt;Node.js is an open-source, cross-platform JavaScript runtime environment.&lt;/p&gt;
&lt;p&gt;For information on using Node.js, see the &lt;a class=&#34;link&#34; href=&#34;https://nodejs.org/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Node.js website&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The Node.js project uses an &lt;a class=&#34;link&#34; href=&#34;./GOVERNANCE.md&#34; &gt;open governance model&lt;/a&gt;. The
&lt;a class=&#34;link&#34; href=&#34;https://openjsf.org/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;OpenJS Foundation&lt;/a&gt; provides support for the project.&lt;/p&gt;
&lt;p&gt;Contributors are expected to act in a collaborative manner to move
the project forward. We encourage the constructive exchange of contrary
opinions and compromise. The &lt;a class=&#34;link&#34; href=&#34;./GOVERNANCE.md#technical-steering-committee&#34; &gt;TSC&lt;/a&gt;
reserves the right to limit or block contributors who repeatedly act in ways
that discourage, exhaust, or otherwise negatively affect other participants.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;This project has a &lt;a class=&#34;link&#34; href=&#34;https://github.com/nodejs/admin/blob/HEAD/CODE_OF_CONDUCT.md&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Code of Conduct&lt;/a&gt;.&lt;/strong&gt;&lt;/p&gt;
&lt;h2 id=&#34;table-of-contents&#34;&gt;Table of contents
&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#support&#34; &gt;Support&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#release-types&#34; &gt;Release types&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#download&#34; &gt;Download&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#current-and-lts-releases&#34; &gt;Current and LTS releases&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#nightly-releases&#34; &gt;Nightly releases&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#api-documentation&#34; &gt;API documentation&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#verifying-binaries&#34; &gt;Verifying binaries&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#building-nodejs&#34; &gt;Building Node.js&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#security&#34; &gt;Security&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#contributing-to-nodejs&#34; &gt;Contributing to Node.js&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#current-project-team-members&#34; &gt;Current project team members&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#tsc-technical-steering-committee&#34; &gt;TSC (Technical Steering Committee)&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#collaborators&#34; &gt;Collaborators&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#triagers&#34; &gt;Triagers&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#release-keys&#34; &gt;Release keys&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;#license&#34; &gt;License&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;support&#34;&gt;Support
&lt;/h2&gt;&lt;p&gt;Looking for help? Check out the
&lt;a class=&#34;link&#34; href=&#34;.github/SUPPORT.md&#34; &gt;instructions for getting support&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;release-types&#34;&gt;Release types
&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Current&lt;/strong&gt;: Under active development. Code for the Current release is in the
branch for its major version number (for example,
&lt;a class=&#34;link&#34; href=&#34;https://github.com/nodejs/node/tree/v22.x&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;v22.x&lt;/a&gt;). Node.js releases a new
major version every 6 months, allowing for breaking changes. This happens in
April and October every year. Releases appearing each October have a support
life of 8 months. Releases appearing each April convert to LTS (see below)
each October.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;LTS&lt;/strong&gt;: Releases that receive Long Term Support, with a focus on stability
and security. Every even-numbered major version will become an LTS release.
LTS releases receive 12 months of &lt;em&gt;Active LTS&lt;/em&gt; support and a further 18 months
of &lt;em&gt;Maintenance&lt;/em&gt;. LTS release lines have alphabetically-ordered code names,
beginning with v4 Argon. There are no breaking changes or feature additions,
except in some special circumstances.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Nightly&lt;/strong&gt;: Code from the Current branch built every 24-hours when there are
changes. Use with caution.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Current and LTS releases follow &lt;a class=&#34;link&#34; href=&#34;https://semver.org&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;semantic versioning&lt;/a&gt;. A
member of the Release Team &lt;a class=&#34;link&#34; href=&#34;#release-keys&#34; &gt;signs&lt;/a&gt; each Current and LTS release.
For more information, see the
&lt;a class=&#34;link&#34; href=&#34;https://github.com/nodejs/Release#readme&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Release README&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&#34;download&#34;&gt;Download
&lt;/h3&gt;&lt;p&gt;Binaries, installers, and source tarballs are available at
&lt;a class=&#34;link&#34; href=&#34;https://nodejs.org/en/download/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;https://nodejs.org/en/download/&lt;/a&gt;.&lt;/p&gt;
&lt;h4 id=&#34;current-and-lts-releases&#34;&gt;Current and LTS releases
&lt;/h4&gt;&lt;p&gt;&lt;a class=&#34;link&#34; href=&#34;https://nodejs.org/download/release/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;https://nodejs.org/download/release/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The &lt;a class=&#34;link&#34; href=&#34;https://nodejs.org/download/release/latest/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;latest&lt;/a&gt; directory is an
alias for the latest Current release. The latest-&lt;em&gt;codename&lt;/em&gt; directory is an
alias for the latest release from an LTS line. For example, the
&lt;a class=&#34;link&#34; href=&#34;https://nodejs.org/download/release/latest-hydrogen/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;latest-hydrogen&lt;/a&gt;
directory contains the latest Hydrogen (Node.js 18) release.&lt;/p&gt;
&lt;h4 id=&#34;nightly-releases&#34;&gt;Nightly releases
&lt;/h4&gt;&lt;p&gt;&lt;a class=&#34;link&#34; href=&#34;https://nodejs.org/download/nightly/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;https://nodejs.org/download/nightly/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Each directory and filename includes the version (e.g., &lt;code&gt;v22.0.0&lt;/code&gt;),
followed by the UTC date (e.g., &lt;code&gt;20240424&lt;/code&gt; for April 24, 2024),
and the short commit SHA of the HEAD of the release (e.g., &lt;code&gt;ddd0a9e494&lt;/code&gt;).
For instance, a full directory name might look like &lt;code&gt;v22.0.0-nightly20240424ddd0a9e494&lt;/code&gt;.&lt;/p&gt;
&lt;h4 id=&#34;api-documentation&#34;&gt;API documentation
&lt;/h4&gt;&lt;p&gt;Documentation for the latest Current release is at &lt;a class=&#34;link&#34; href=&#34;https://nodejs.org/api/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;https://nodejs.org/api/&lt;/a&gt;.
Version-specific documentation is available in each release directory in the
&lt;em&gt;docs&lt;/em&gt; subdirectory. Version-specific documentation is also at
&lt;a class=&#34;link&#34; href=&#34;https://nodejs.org/download/docs/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;https://nodejs.org/download/docs/&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&#34;verifying-binaries&#34;&gt;Verifying binaries
&lt;/h3&gt;&lt;p&gt;Download directories contain a &lt;code&gt;SHASUMS256.txt&lt;/code&gt; file with SHA checksums for the
files.&lt;/p&gt;
&lt;p&gt;To download &lt;code&gt;SHASUMS256.txt&lt;/code&gt; using &lt;code&gt;curl&lt;/code&gt;:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;curl -O https://nodejs.org/dist/vx.y.z/SHASUMS256.txt
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;To check that downloaded files match the checksum, use &lt;code&gt;sha256sum&lt;/code&gt;:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;sha256sum -c SHASUMS256.txt --ignore-missing
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;For Current and LTS, the GPG detached signature of &lt;code&gt;SHASUMS256.txt&lt;/code&gt; is in
&lt;code&gt;SHASUMS256.txt.sig&lt;/code&gt;. You can use it with &lt;code&gt;gpg&lt;/code&gt; to verify the integrity of
&lt;code&gt;SHASUMS256.txt&lt;/code&gt;. You will first need to import
&lt;a class=&#34;link&#34; href=&#34;#release-keys&#34; &gt;the GPG keys of individuals authorized to create releases&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;See &lt;a class=&#34;link&#34; href=&#34;#release-keys&#34; &gt;Release keys&lt;/a&gt; for commands to import active release keys.&lt;/p&gt;
&lt;p&gt;Next, download the &lt;code&gt;SHASUMS256.txt.sig&lt;/code&gt; for the release:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;curl -O https://nodejs.org/dist/vx.y.z/SHASUMS256.txt.sig
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Then use &lt;code&gt;gpg --verify SHASUMS256.txt.sig SHASUMS256.txt&lt;/code&gt; to verify
the file&amp;rsquo;s signature.&lt;/p&gt;
&lt;h2 id=&#34;building-nodejs&#34;&gt;Building Node.js
&lt;/h2&gt;&lt;p&gt;See &lt;a class=&#34;link&#34; href=&#34;BUILDING.md&#34; &gt;BUILDING.md&lt;/a&gt; for instructions on how to build Node.js from
source and a list of supported platforms.&lt;/p&gt;
&lt;h2 id=&#34;security&#34;&gt;Security
&lt;/h2&gt;&lt;p&gt;For information on reporting security vulnerabilities in Node.js, see
&lt;a class=&#34;link&#34; href=&#34;./SECURITY.md&#34; &gt;SECURITY.md&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&#34;contributing-to-nodejs&#34;&gt;Contributing to Node.js
&lt;/h2&gt;&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;CONTRIBUTING.md&#34; &gt;Contributing to the project&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/nodejs/TSC/blob/HEAD/WORKING_GROUPS.md&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Working Groups&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;doc/contributing/strategic-initiatives.md&#34; &gt;Strategic initiatives&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;doc/contributing/technical-values.md&#34; &gt;Technical values and prioritization&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;current-project-team-members&#34;&gt;Current project team members
&lt;/h2&gt;&lt;p&gt;For information about the governance of the Node.js project, see
&lt;a class=&#34;link&#34; href=&#34;./GOVERNANCE.md&#34; &gt;GOVERNANCE.md&lt;/a&gt;.&lt;/p&gt;
&lt;!-- node-core-utils and find-inactive-tsc.mjs depend on the format of the TSC
     list. If the format changes, those utilities need to be tested and
     updated. --&gt;
&lt;h3 id=&#34;tsc-technical-steering-committee&#34;&gt;TSC (Technical Steering Committee)
&lt;/h3&gt;&lt;h4 id=&#34;tsc-voting-members&#34;&gt;TSC voting members
&lt;/h4&gt;&lt;!--lint disable prohibited-strings--&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/aduh95&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;aduh95&lt;/a&gt; -
&lt;strong&gt;Antoine du Hamel&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:duhamelantoine1995@gmail.com&#34; &gt;duhamelantoine1995@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/anonrig&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;anonrig&lt;/a&gt; -
&lt;strong&gt;Yagiz Nizipli&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:yagiz@nizipli.com&#34; &gt;yagiz@nizipli.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/benjamingr&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;benjamingr&lt;/a&gt; -
&lt;strong&gt;Benjamin Gruenbaum&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:benjamingr@gmail.com&#34; &gt;benjamingr@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/BridgeAR&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;BridgeAR&lt;/a&gt; -
&lt;strong&gt;Ruben Bridgewater&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:ruben@bridgewater.de&#34; &gt;ruben@bridgewater.de&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/gireeshpunathil&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;gireeshpunathil&lt;/a&gt; -
&lt;strong&gt;Gireesh Punathil&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:gpunathi@in.ibm.com&#34; &gt;gpunathi@in.ibm.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/jasnell&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;jasnell&lt;/a&gt; -
&lt;strong&gt;James M Snell&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:jasnell@gmail.com&#34; &gt;jasnell@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/joyeecheung&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;joyeecheung&lt;/a&gt; -
&lt;strong&gt;Joyee Cheung&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:joyeec9h3@gmail.com&#34; &gt;joyeec9h3@gmail.com&lt;/a&gt;&amp;raquo; (she/her)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/legendecas&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;legendecas&lt;/a&gt; -
&lt;strong&gt;Chengzhong Wu&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:legendecas@gmail.com&#34; &gt;legendecas@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/marco-ippolito&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;marco-ippolito&lt;/a&gt; -
&lt;strong&gt;Marco Ippolito&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:marcoippolito54@gmail.com&#34; &gt;marcoippolito54@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/mcollina&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;mcollina&lt;/a&gt; -
&lt;strong&gt;Matteo Collina&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:matteo.collina@gmail.com&#34; &gt;matteo.collina@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/mhdawson&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;mhdawson&lt;/a&gt; -
&lt;strong&gt;Michael Dawson&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:midawson@redhat.com&#34; &gt;midawson@redhat.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/RafaelGSS&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;RafaelGSS&lt;/a&gt; -
&lt;strong&gt;Rafael Gonzaga&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:rafael.nunu@hotmail.com&#34; &gt;rafael.nunu@hotmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/RaisinTen&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;RaisinTen&lt;/a&gt; -
&lt;strong&gt;Darshan Sen&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:raisinten@gmail.com&#34; &gt;raisinten@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/richardlau&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;richardlau&lt;/a&gt; -
&lt;strong&gt;Richard Lau&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:rlau@redhat.com&#34; &gt;rlau@redhat.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/ronag&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;ronag&lt;/a&gt; -
&lt;strong&gt;Robert Nagy&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:ronagy@icloud.com&#34; &gt;ronagy@icloud.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/ruyadorno&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;ruyadorno&lt;/a&gt; -
&lt;strong&gt;Ruy Adorno&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:ruy@vlt.sh&#34; &gt;ruy@vlt.sh&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/ShogunPanda&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;ShogunPanda&lt;/a&gt; -
&lt;strong&gt;Paolo Insogna&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:paolo@cowtech.it&#34; &gt;paolo@cowtech.it&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/targos&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;targos&lt;/a&gt; -
&lt;strong&gt;Michaël Zasso&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:targos@protonmail.com&#34; &gt;targos@protonmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/tniessen&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;tniessen&lt;/a&gt; -
&lt;strong&gt;Tobias Nießen&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:tniessen@tnie.de&#34; &gt;tniessen@tnie.de&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;/ul&gt;
&lt;h4 id=&#34;tsc-regular-members&#34;&gt;TSC regular members
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/BethGriggs&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;BethGriggs&lt;/a&gt; -
&lt;strong&gt;Beth Griggs&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:bethanyngriggs@gmail.com&#34; &gt;bethanyngriggs@gmail.com&lt;/a&gt;&amp;raquo; (she/her)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/bnoordhuis&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;bnoordhuis&lt;/a&gt; -
&lt;strong&gt;Ben Noordhuis&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:info@bnoordhuis.nl&#34; &gt;info@bnoordhuis.nl&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/cjihrig&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;cjihrig&lt;/a&gt; -
&lt;strong&gt;Colin Ihrig&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:cjihrig@gmail.com&#34; &gt;cjihrig@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/codebytere&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;codebytere&lt;/a&gt; -
&lt;strong&gt;Shelley Vohr&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:shelley.vohr@gmail.com&#34; &gt;shelley.vohr@gmail.com&lt;/a&gt;&amp;raquo; (she/her)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/GeoffreyBooth&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;GeoffreyBooth&lt;/a&gt; -
&lt;strong&gt;Geoffrey Booth&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:webadmin@geoffreybooth.com&#34; &gt;webadmin@geoffreybooth.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/MoLow&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;MoLow&lt;/a&gt; -
&lt;strong&gt;Moshe Atlow&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:moshe@atlow.co.il&#34; &gt;moshe@atlow.co.il&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/Trott&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Trott&lt;/a&gt; -
&lt;strong&gt;Rich Trott&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:rtrott@gmail.com&#34; &gt;rtrott@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;/ul&gt;
&lt;details&gt;
&lt;summary&gt;TSC emeriti members&lt;/summary&gt;
&lt;h4 id=&#34;tsc-emeriti-members&#34;&gt;TSC emeriti members
&lt;/h4&gt;&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/addaleax&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;addaleax&lt;/a&gt; -
&lt;strong&gt;Anna Henningsen&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:anna@addaleax.net&#34; &gt;anna@addaleax.net&lt;/a&gt;&amp;raquo; (she/her)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/apapirovski&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;apapirovski&lt;/a&gt; -
&lt;strong&gt;Anatoli Papirovski&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:apapirovski@mac.com&#34; &gt;apapirovski@mac.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/ChALkeR&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;ChALkeR&lt;/a&gt; -
&lt;strong&gt;Сковорода Никита Андреевич&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:chalkerx@gmail.com&#34; &gt;chalkerx@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/chrisdickinson&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;chrisdickinson&lt;/a&gt; -
&lt;strong&gt;Chris Dickinson&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:christopher.s.dickinson@gmail.com&#34; &gt;christopher.s.dickinson@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/danbev&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;danbev&lt;/a&gt; -
&lt;strong&gt;Daniel Bevenius&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:daniel.bevenius@gmail.com&#34; &gt;daniel.bevenius@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/danielleadams&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;danielleadams&lt;/a&gt; -
&lt;strong&gt;Danielle Adams&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:adamzdanielle@gmail.com&#34; &gt;adamzdanielle@gmail.com&lt;/a&gt;&amp;raquo; (she/her)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/evanlucas&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;evanlucas&lt;/a&gt; -
&lt;strong&gt;Evan Lucas&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:evanlucas@me.com&#34; &gt;evanlucas@me.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/fhinkel&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;fhinkel&lt;/a&gt; -
&lt;strong&gt;Franziska Hinkelmann&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:franziska.hinkelmann@gmail.com&#34; &gt;franziska.hinkelmann@gmail.com&lt;/a&gt;&amp;raquo; (she/her)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/Fishrock123&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Fishrock123&lt;/a&gt; -
&lt;strong&gt;Jeremiah Senkpiel&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:fishrock123@rocketmail.com&#34; &gt;fishrock123@rocketmail.com&lt;/a&gt;&amp;raquo; (he/they)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/gabrielschulhof&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;gabrielschulhof&lt;/a&gt; -
&lt;strong&gt;Gabriel Schulhof&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:gabrielschulhof@gmail.com&#34; &gt;gabrielschulhof@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/gibfahn&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;gibfahn&lt;/a&gt; -
&lt;strong&gt;Gibson Fahnestock&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:gibfahn@gmail.com&#34; &gt;gibfahn@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/indutny&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;indutny&lt;/a&gt; -
&lt;strong&gt;Fedor Indutny&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:fedor@indutny.com&#34; &gt;fedor@indutny.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/isaacs&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;isaacs&lt;/a&gt; -
&lt;strong&gt;Isaac Z. Schlueter&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:i@izs.me&#34; &gt;i@izs.me&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/joshgav&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;joshgav&lt;/a&gt; -
&lt;strong&gt;Josh Gavant&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:josh.gavant@outlook.com&#34; &gt;josh.gavant@outlook.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/mmarchini&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;mmarchini&lt;/a&gt; -
&lt;strong&gt;Mary Marchini&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:oss@mmarchini.me&#34; &gt;oss@mmarchini.me&lt;/a&gt;&amp;raquo; (she/her)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/mscdex&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;mscdex&lt;/a&gt; -
&lt;strong&gt;Brian White&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:mscdex@mscdex.net&#34; &gt;mscdex@mscdex.net&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/MylesBorins&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;MylesBorins&lt;/a&gt; -
&lt;strong&gt;Myles Borins&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:myles.borins@gmail.com&#34; &gt;myles.borins@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/nebrius&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;nebrius&lt;/a&gt; -
&lt;strong&gt;Bryan Hughes&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:bryan@nebri.us&#34; &gt;bryan@nebri.us&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/ofrobots&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;ofrobots&lt;/a&gt; -
&lt;strong&gt;Ali Ijaz Sheikh&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:ofrobots@google.com&#34; &gt;ofrobots@google.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/orangemocha&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;orangemocha&lt;/a&gt; -
&lt;strong&gt;Alexis Campailla&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:orangemocha@nodejs.org&#34; &gt;orangemocha@nodejs.org&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/piscisaureus&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;piscisaureus&lt;/a&gt; -
&lt;strong&gt;Bert Belder&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:bertbelder@gmail.com&#34; &gt;bertbelder@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/rvagg&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;rvagg&lt;/a&gt; -
&lt;strong&gt;Rod Vagg&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:r@va.gg&#34; &gt;r@va.gg&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/sam-github&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;sam-github&lt;/a&gt; -
&lt;strong&gt;Sam Roberts&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:vieuxtech@gmail.com&#34; &gt;vieuxtech@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/shigeki&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;shigeki&lt;/a&gt; -
&lt;strong&gt;Shigeki Ohtsu&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:ohtsu@ohtsu.org&#34; &gt;ohtsu@ohtsu.org&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/thefourtheye&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;thefourtheye&lt;/a&gt; -
&lt;strong&gt;Sakthipriyan Vairamani&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:thechargingvolcano@gmail.com&#34; &gt;thechargingvolcano@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/TimothyGu&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;TimothyGu&lt;/a&gt; -
&lt;strong&gt;Tiancheng &amp;ldquo;Timothy&amp;rdquo; Gu&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:timothygu99@gmail.com&#34; &gt;timothygu99@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/trevnorris&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;trevnorris&lt;/a&gt; -
&lt;strong&gt;Trevor Norris&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:trev.norris@gmail.com&#34; &gt;trev.norris@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;/ul&gt;
&lt;/details&gt;
&lt;!-- node-core-utils and find-inactive-collaborators.mjs depend on the format
     of the collaborator list. If the format changes, those utilities need to be
     tested and updated. --&gt;
&lt;h3 id=&#34;collaborators&#34;&gt;Collaborators
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/abmusse&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;abmusse&lt;/a&gt; -
&lt;strong&gt;Abdirahim Musse&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:abdirahim.musse@ibm.com&#34; &gt;abdirahim.musse@ibm.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/addaleax&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;addaleax&lt;/a&gt; -
&lt;strong&gt;Anna Henningsen&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:anna@addaleax.net&#34; &gt;anna@addaleax.net&lt;/a&gt;&amp;raquo; (she/her)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/aduh95&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;aduh95&lt;/a&gt; -
&lt;strong&gt;Antoine du Hamel&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:duhamelantoine1995@gmail.com&#34; &gt;duhamelantoine1995@gmail.com&lt;/a&gt;&amp;raquo; (he/him) - &lt;a class=&#34;link&#34; href=&#34;https://github.com/sponsors/aduh95&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Support me&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/anonrig&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;anonrig&lt;/a&gt; -
&lt;strong&gt;Yagiz Nizipli&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:yagiz@nizipli.com&#34; &gt;yagiz@nizipli.com&lt;/a&gt;&amp;raquo; (he/him) - &lt;a class=&#34;link&#34; href=&#34;https://github.com/sponsors/anonrig&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Support me&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/atlowChemi&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;atlowChemi&lt;/a&gt; -
&lt;strong&gt;Chemi Atlow&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:chemi@atlow.co.il&#34; &gt;chemi@atlow.co.il&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/Ayase-252&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Ayase-252&lt;/a&gt; -
&lt;strong&gt;Qingyu Deng&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:i@ayase-lab.com&#34; &gt;i@ayase-lab.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/bengl&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;bengl&lt;/a&gt; -
&lt;strong&gt;Bryan English&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:bryan@bryanenglish.com&#34; &gt;bryan@bryanenglish.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/benjamingr&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;benjamingr&lt;/a&gt; -
&lt;strong&gt;Benjamin Gruenbaum&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:benjamingr@gmail.com&#34; &gt;benjamingr@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/BethGriggs&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;BethGriggs&lt;/a&gt; -
&lt;strong&gt;Beth Griggs&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:bethanyngriggs@gmail.com&#34; &gt;bethanyngriggs@gmail.com&lt;/a&gt;&amp;raquo; (she/her)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/bnb&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;bnb&lt;/a&gt; -
&lt;strong&gt;Tierney Cyren&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:hello@bnb.im&#34; &gt;hello@bnb.im&lt;/a&gt;&amp;raquo; (they/them)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/bnoordhuis&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;bnoordhuis&lt;/a&gt; -
&lt;strong&gt;Ben Noordhuis&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:info@bnoordhuis.nl&#34; &gt;info@bnoordhuis.nl&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/BridgeAR&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;BridgeAR&lt;/a&gt; -
&lt;strong&gt;Ruben Bridgewater&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:ruben@bridgewater.de&#34; &gt;ruben@bridgewater.de&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/cclauss&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;cclauss&lt;/a&gt; -
&lt;strong&gt;Christian Clauss&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:cclauss@me.com&#34; &gt;cclauss@me.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/cjihrig&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;cjihrig&lt;/a&gt; -
&lt;strong&gt;Colin Ihrig&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:cjihrig@gmail.com&#34; &gt;cjihrig@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/codebytere&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;codebytere&lt;/a&gt; -
&lt;strong&gt;Shelley Vohr&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:shelley.vohr@gmail.com&#34; &gt;shelley.vohr@gmail.com&lt;/a&gt;&amp;raquo; (she/her)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/cola119&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;cola119&lt;/a&gt; -
&lt;strong&gt;Kohei Ueno&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:kohei.ueno119@gmail.com&#34; &gt;kohei.ueno119@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/daeyeon&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;daeyeon&lt;/a&gt; -
&lt;strong&gt;Daeyeon Jeong&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:daeyeon.dev@gmail.com&#34; &gt;daeyeon.dev@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/dario-piotrowicz&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;dario-piotrowicz&lt;/a&gt; -
&lt;strong&gt;Dario Piotrowicz&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:dario.piotrowicz@gmail.com&#34; &gt;dario.piotrowicz@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/debadree25&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;debadree25&lt;/a&gt; -
&lt;strong&gt;Debadree Chatterjee&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:debadree333@gmail.com&#34; &gt;debadree333@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/deokjinkim&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;deokjinkim&lt;/a&gt; -
&lt;strong&gt;Deokjin Kim&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:deokjin81.kim@gmail.com&#34; &gt;deokjin81.kim@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/edsadr&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;edsadr&lt;/a&gt; -
&lt;strong&gt;Adrian Estrada&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:edsadr@gmail.com&#34; &gt;edsadr@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/ErickWendel&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;ErickWendel&lt;/a&gt; -
&lt;strong&gt;Erick Wendel&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:erick.workspace@gmail.com&#34; &gt;erick.workspace@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/Ethan-Arrowood&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Ethan-Arrowood&lt;/a&gt; -
&lt;strong&gt;Ethan Arrowood&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:ethan@arrowood.dev&#34; &gt;ethan@arrowood.dev&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/F3n67u&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;F3n67u&lt;/a&gt; -
&lt;strong&gt;Feng Yu&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:F3n67u@outlook.com&#34; &gt;F3n67u@outlook.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/fhinkel&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;fhinkel&lt;/a&gt; -
&lt;strong&gt;Franziska Hinkelmann&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:franziska.hinkelmann@gmail.com&#34; &gt;franziska.hinkelmann@gmail.com&lt;/a&gt;&amp;raquo; (she/her)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/Flarna&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Flarna&lt;/a&gt; -
&lt;strong&gt;Gerhard Stöbich&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:deb2001-github@yahoo.de&#34; &gt;deb2001-github@yahoo.de&lt;/a&gt;&amp;raquo; (he/they)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/gabrielschulhof&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;gabrielschulhof&lt;/a&gt; -
&lt;strong&gt;Gabriel Schulhof&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:gabrielschulhof@gmail.com&#34; &gt;gabrielschulhof@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/geeksilva97&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;geeksilva97&lt;/a&gt; -
&lt;strong&gt;Edy Silva&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:edigleyssonsilva@gmail.com&#34; &gt;edigleyssonsilva@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/gengjiawen&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;gengjiawen&lt;/a&gt; -
&lt;strong&gt;Jiawen Geng&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:technicalcute@gmail.com&#34; &gt;technicalcute@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/GeoffreyBooth&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;GeoffreyBooth&lt;/a&gt; -
&lt;strong&gt;Geoffrey Booth&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:webadmin@geoffreybooth.com&#34; &gt;webadmin@geoffreybooth.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/gireeshpunathil&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;gireeshpunathil&lt;/a&gt; -
&lt;strong&gt;Gireesh Punathil&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:gpunathi@in.ibm.com&#34; &gt;gpunathi@in.ibm.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/guybedford&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;guybedford&lt;/a&gt; -
&lt;strong&gt;Guy Bedford&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:guybedford@gmail.com&#34; &gt;guybedford@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/H4ad&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;H4ad&lt;/a&gt; -
&lt;strong&gt;Vinícius Lourenço Claro Cardoso&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:contact@viniciusl.com.br&#34; &gt;contact@viniciusl.com.br&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/HarshithaKP&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;HarshithaKP&lt;/a&gt; -
&lt;strong&gt;Harshitha K P&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:harshitha014@gmail.com&#34; &gt;harshitha014@gmail.com&lt;/a&gt;&amp;raquo; (she/her)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/himself65&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;himself65&lt;/a&gt; -
&lt;strong&gt;Zeyu &amp;ldquo;Alex&amp;rdquo; Yang&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:himself65@outlook.com&#34; &gt;himself65@outlook.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/jakecastelli&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;jakecastelli&lt;/a&gt; -
&lt;strong&gt;Jake Yuesong Li&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:jake.yuesong@gmail.com&#34; &gt;jake.yuesong@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/JakobJingleheimer&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;JakobJingleheimer&lt;/a&gt; -
&lt;strong&gt;Jacob Smith&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:jacob@frende.me&#34; &gt;jacob@frende.me&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/jasnell&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;jasnell&lt;/a&gt; -
&lt;strong&gt;James M Snell&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:jasnell@gmail.com&#34; &gt;jasnell@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/jazelly&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;jazelly&lt;/a&gt; -
&lt;strong&gt;Jason Zhang&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:xzha4350@gmail.com&#34; &gt;xzha4350@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/jkrems&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;jkrems&lt;/a&gt; -
&lt;strong&gt;Jan Martin&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:jan.krems@gmail.com&#34; &gt;jan.krems@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/joyeecheung&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;joyeecheung&lt;/a&gt; -
&lt;strong&gt;Joyee Cheung&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:joyeec9h3@gmail.com&#34; &gt;joyeec9h3@gmail.com&lt;/a&gt;&amp;raquo; (she/her)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/juanarbol&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;juanarbol&lt;/a&gt; -
&lt;strong&gt;Juan José Arboleda&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:soyjuanarbol@gmail.com&#34; &gt;soyjuanarbol@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/JungMinu&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;JungMinu&lt;/a&gt; -
&lt;strong&gt;Minwoo Jung&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:nodecorelab@gmail.com&#34; &gt;nodecorelab@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/KhafraDev&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;KhafraDev&lt;/a&gt; -
&lt;strong&gt;Matthew Aitken&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:maitken033380023@gmail.com&#34; &gt;maitken033380023@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/legendecas&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;legendecas&lt;/a&gt; -
&lt;strong&gt;Chengzhong Wu&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:legendecas@gmail.com&#34; &gt;legendecas@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/lemire&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;lemire&lt;/a&gt; -
&lt;strong&gt;Daniel Lemire&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:daniel@lemire.me&#34; &gt;daniel@lemire.me&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/Linkgoron&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Linkgoron&lt;/a&gt; -
&lt;strong&gt;Nitzan Uziely&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:linkgoron@gmail.com&#34; &gt;linkgoron@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/LiviaMedeiros&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;LiviaMedeiros&lt;/a&gt; -
&lt;strong&gt;LiviaMedeiros&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:livia@cirno.name&#34; &gt;livia@cirno.name&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/ljharb&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;ljharb&lt;/a&gt; -
&lt;strong&gt;Jordan Harband&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:ljharb@gmail.com&#34; &gt;ljharb@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/lpinca&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;lpinca&lt;/a&gt; -
&lt;strong&gt;Luigi Pinca&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:luigipinca@gmail.com&#34; &gt;luigipinca@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/lukekarrys&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;lukekarrys&lt;/a&gt; -
&lt;strong&gt;Luke Karrys&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:luke@lukekarrys.com&#34; &gt;luke@lukekarrys.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/Lxxyx&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Lxxyx&lt;/a&gt; -
&lt;strong&gt;Zijian Liu&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:lxxyxzj@gmail.com&#34; &gt;lxxyxzj@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/marco-ippolito&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;marco-ippolito&lt;/a&gt; -
&lt;strong&gt;Marco Ippolito&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:marcoippolito54@gmail.com&#34; &gt;marcoippolito54@gmail.com&lt;/a&gt;&amp;raquo; (he/him) - &lt;a class=&#34;link&#34; href=&#34;https://github.com/sponsors/marco-ippolito&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Support me&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/marsonya&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;marsonya&lt;/a&gt; -
&lt;strong&gt;Akhil Marsonya&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:akhil.marsonya27@gmail.com&#34; &gt;akhil.marsonya27@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/MattiasBuelens&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;MattiasBuelens&lt;/a&gt; -
&lt;strong&gt;Mattias Buelens&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:mattias@buelens.com&#34; &gt;mattias@buelens.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/mcollina&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;mcollina&lt;/a&gt; -
&lt;strong&gt;Matteo Collina&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:matteo.collina@gmail.com&#34; &gt;matteo.collina@gmail.com&lt;/a&gt;&amp;raquo; (he/him) - &lt;a class=&#34;link&#34; href=&#34;https://github.com/sponsors/mcollina&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Support me&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/meixg&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;meixg&lt;/a&gt; -
&lt;strong&gt;Xuguang Mei&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:meixuguang@gmail.com&#34; &gt;meixuguang@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/mhdawson&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;mhdawson&lt;/a&gt; -
&lt;strong&gt;Michael Dawson&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:midawson@redhat.com&#34; &gt;midawson@redhat.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/mildsunrise&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;mildsunrise&lt;/a&gt; -
&lt;strong&gt;Alba Mendez&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:me@alba.sh&#34; &gt;me@alba.sh&lt;/a&gt;&amp;raquo; (she/her)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/MoLow&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;MoLow&lt;/a&gt; -
&lt;strong&gt;Moshe Atlow&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:moshe@atlow.co.il&#34; &gt;moshe@atlow.co.il&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/MrJithil&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;MrJithil&lt;/a&gt; -
&lt;strong&gt;Jithil P Ponnan&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:jithil@outlook.com&#34; &gt;jithil@outlook.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/panva&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;panva&lt;/a&gt; -
&lt;strong&gt;Filip Skokan&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:panva.ip@gmail.com&#34; &gt;panva.ip@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/pimterry&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;pimterry&lt;/a&gt; -
&lt;strong&gt;Tim Perry&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:pimterry@gmail.com&#34; &gt;pimterry@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/pmarchini&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;pmarchini&lt;/a&gt; -
&lt;strong&gt;Pietro Marchini&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:pietro.marchini94@gmail.com&#34; &gt;pietro.marchini94@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/Qard&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Qard&lt;/a&gt; -
&lt;strong&gt;Stephen Belanger&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:admin@stephenbelanger.com&#34; &gt;admin@stephenbelanger.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/RafaelGSS&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;RafaelGSS&lt;/a&gt; -
&lt;strong&gt;Rafael Gonzaga&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:rafael.nunu@hotmail.com&#34; &gt;rafael.nunu@hotmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/RaisinTen&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;RaisinTen&lt;/a&gt; -
&lt;strong&gt;Darshan Sen&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:raisinten@gmail.com&#34; &gt;raisinten@gmail.com&lt;/a&gt;&amp;raquo; (he/him) - &lt;a class=&#34;link&#34; href=&#34;https://github.com/sponsors/RaisinTen&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Support me&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/richardlau&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;richardlau&lt;/a&gt; -
&lt;strong&gt;Richard Lau&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:rlau@redhat.com&#34; &gt;rlau@redhat.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/rluvaton&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;rluvaton&lt;/a&gt; -
&lt;strong&gt;Raz Luvaton&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:rluvaton@gmail.com&#34; &gt;rluvaton@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/ronag&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;ronag&lt;/a&gt; -
&lt;strong&gt;Robert Nagy&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:ronagy@icloud.com&#34; &gt;ronagy@icloud.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/ruyadorno&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;ruyadorno&lt;/a&gt; -
&lt;strong&gt;Ruy Adorno&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:ruy@vlt.sh&#34; &gt;ruy@vlt.sh&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/santigimeno&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;santigimeno&lt;/a&gt; -
&lt;strong&gt;Santiago Gimeno&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:santiago.gimeno@gmail.com&#34; &gt;santiago.gimeno@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/ShogunPanda&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;ShogunPanda&lt;/a&gt; -
&lt;strong&gt;Paolo Insogna&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:paolo@cowtech.it&#34; &gt;paolo@cowtech.it&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/srl295&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;srl295&lt;/a&gt; -
&lt;strong&gt;Steven R Loomis&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:srl295@gmail.com&#34; &gt;srl295@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/StefanStojanovic&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;StefanStojanovic&lt;/a&gt; -
&lt;strong&gt;Stefan Stojanovic&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:stefan.stojanovic@janeasystems.com&#34; &gt;stefan.stojanovic@janeasystems.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/sxa&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;sxa&lt;/a&gt; -
&lt;strong&gt;Stewart X Addison&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:sxa@redhat.com&#34; &gt;sxa@redhat.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/targos&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;targos&lt;/a&gt; -
&lt;strong&gt;Michaël Zasso&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:targos@protonmail.com&#34; &gt;targos@protonmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/theanarkh&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;theanarkh&lt;/a&gt; -
&lt;strong&gt;theanarkh&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:theratliter@gmail.com&#34; &gt;theratliter@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/tniessen&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;tniessen&lt;/a&gt; -
&lt;strong&gt;Tobias Nießen&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:tniessen@tnie.de&#34; &gt;tniessen@tnie.de&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/trivikr&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;trivikr&lt;/a&gt; -
&lt;strong&gt;Trivikram Kamat&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:trivikr.dev@gmail.com&#34; &gt;trivikr.dev@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/Trott&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Trott&lt;/a&gt; -
&lt;strong&gt;Rich Trott&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:rtrott@gmail.com&#34; &gt;rtrott@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/UlisesGascon&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;UlisesGascon&lt;/a&gt; -
&lt;strong&gt;Ulises Gascón&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:ulisesgascongonzalez@gmail.com&#34; &gt;ulisesgascongonzalez@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/vmoroz&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;vmoroz&lt;/a&gt; -
&lt;strong&gt;Vladimir Morozov&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:vmorozov@microsoft.com&#34; &gt;vmorozov@microsoft.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/VoltrexKeyva&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;VoltrexKeyva&lt;/a&gt; -
&lt;strong&gt;Mohammed Keyvanzadeh&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:mohammadkeyvanzade94@gmail.com&#34; &gt;mohammadkeyvanzade94@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/zcbenz&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;zcbenz&lt;/a&gt; -
&lt;strong&gt;Cheng Zhao&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:zcbenz@gmail.com&#34; &gt;zcbenz@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/ZYSzys&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;ZYSzys&lt;/a&gt; -
&lt;strong&gt;Yongsheng Zhang&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:zyszys98@gmail.com&#34; &gt;zyszys98@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;/ul&gt;
&lt;details&gt;
&lt;summary&gt;Emeriti&lt;/summary&gt;
&lt;!-- find-inactive-collaborators.mjs depends on the format of the emeriti list.
     If the format changes, those utilities need to be tested and updated. --&gt;
&lt;h3 id=&#34;collaborator-emeriti&#34;&gt;Collaborator emeriti
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/ak239&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;ak239&lt;/a&gt; -
&lt;strong&gt;Aleksei Koziatinskii&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:ak239spb@gmail.com&#34; &gt;ak239spb@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/andrasq&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;andrasq&lt;/a&gt; -
&lt;strong&gt;Andras&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:andras@kinvey.com&#34; &gt;andras@kinvey.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/AndreasMadsen&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;AndreasMadsen&lt;/a&gt; -
&lt;strong&gt;Andreas Madsen&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:amwebdk@gmail.com&#34; &gt;amwebdk@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/AnnaMag&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;AnnaMag&lt;/a&gt; -
&lt;strong&gt;Anna M. Kedzierska&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:anna.m.kedzierska@gmail.com&#34; &gt;anna.m.kedzierska@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/antsmartian&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;antsmartian&lt;/a&gt; -
&lt;strong&gt;Anto Aravinth&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:anto.aravinth.cse@gmail.com&#34; &gt;anto.aravinth.cse@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/apapirovski&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;apapirovski&lt;/a&gt; -
&lt;strong&gt;Anatoli Papirovski&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:apapirovski@mac.com&#34; &gt;apapirovski@mac.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/aqrln&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;aqrln&lt;/a&gt; -
&lt;strong&gt;Alexey Orlenko&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:eaglexrlnk@gmail.com&#34; &gt;eaglexrlnk@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/AshCripps&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;AshCripps&lt;/a&gt; -
&lt;strong&gt;Ash Cripps&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:email@ashleycripps.co.uk&#34; &gt;email@ashleycripps.co.uk&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/bcoe&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;bcoe&lt;/a&gt; -
&lt;strong&gt;Ben Coe&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:bencoe@gmail.com&#34; &gt;bencoe@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/bmeck&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;bmeck&lt;/a&gt; -
&lt;strong&gt;Bradley Farias&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:bradley.meck@gmail.com&#34; &gt;bradley.meck@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/bmeurer&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;bmeurer&lt;/a&gt; -
&lt;strong&gt;Benedikt Meurer&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:benedikt.meurer@gmail.com&#34; &gt;benedikt.meurer@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/boneskull&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;boneskull&lt;/a&gt; -
&lt;strong&gt;Christopher Hiller&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:boneskull@boneskull.com&#34; &gt;boneskull@boneskull.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/brendanashworth&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;brendanashworth&lt;/a&gt; -
&lt;strong&gt;Brendan Ashworth&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:brendan.ashworth@me.com&#34; &gt;brendan.ashworth@me.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/bzoz&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;bzoz&lt;/a&gt; -
&lt;strong&gt;Bartosz Sosnowski&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:bartosz@janeasystems.com&#34; &gt;bartosz@janeasystems.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/calvinmetcalf&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;calvinmetcalf&lt;/a&gt; -
&lt;strong&gt;Calvin Metcalf&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:calvin.metcalf@gmail.com&#34; &gt;calvin.metcalf@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/ChALkeR&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;ChALkeR&lt;/a&gt; -
&lt;strong&gt;Сковорода Никита Андреевич&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:chalkerx@gmail.com&#34; &gt;chalkerx@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/chrisdickinson&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;chrisdickinson&lt;/a&gt; -
&lt;strong&gt;Chris Dickinson&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:christopher.s.dickinson@gmail.com&#34; &gt;christopher.s.dickinson@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/claudiorodriguez&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;claudiorodriguez&lt;/a&gt; -
&lt;strong&gt;Claudio Rodriguez&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:cjrodr@yahoo.com&#34; &gt;cjrodr@yahoo.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/danbev&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;danbev&lt;/a&gt; -
&lt;strong&gt;Daniel Bevenius&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:daniel.bevenius@gmail.com&#34; &gt;daniel.bevenius@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/danielleadams&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;danielleadams&lt;/a&gt; -
&lt;strong&gt;Danielle Adams&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:adamzdanielle@gmail.com&#34; &gt;adamzdanielle@gmail.com&lt;/a&gt;&amp;raquo; (she/her)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/DavidCai1993&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;DavidCai1993&lt;/a&gt; -
&lt;strong&gt;David Cai&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:davidcai1993@yahoo.com&#34; &gt;davidcai1993@yahoo.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/davisjam&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;davisjam&lt;/a&gt; -
&lt;strong&gt;Jamie Davis&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:davisjam@vt.edu&#34; &gt;davisjam@vt.edu&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/devnexen&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;devnexen&lt;/a&gt; -
&lt;strong&gt;David Carlier&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:devnexen@gmail.com&#34; &gt;devnexen@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/devsnek&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;devsnek&lt;/a&gt; -
&lt;strong&gt;Gus Caplan&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:me@gus.host&#34; &gt;me@gus.host&lt;/a&gt;&amp;raquo; (they/them)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/digitalinfinity&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;digitalinfinity&lt;/a&gt; -
&lt;strong&gt;Hitesh Kanwathirtha&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:digitalinfinity@gmail.com&#34; &gt;digitalinfinity@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/dmabupt&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;dmabupt&lt;/a&gt; -
&lt;strong&gt;Xu Meng&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:dmabupt@gmail.com&#34; &gt;dmabupt@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/dnlup&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;dnlup&lt;/a&gt; -
&lt;strong&gt;dnlup&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:dnlup.dev@gmail.com&#34; &gt;dnlup.dev@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/eljefedelrodeodeljefe&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;eljefedelrodeodeljefe&lt;/a&gt; -
&lt;strong&gt;Robert Jefe Lindstaedt&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:robert.lindstaedt@gmail.com&#34; &gt;robert.lindstaedt@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/estliberitas&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;estliberitas&lt;/a&gt; -
&lt;strong&gt;Alexander Makarenko&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:estliberitas@gmail.com&#34; &gt;estliberitas@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/eugeneo&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;eugeneo&lt;/a&gt; -
&lt;strong&gt;Eugene Ostroukhov&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:eostroukhov@google.com&#34; &gt;eostroukhov@google.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/evanlucas&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;evanlucas&lt;/a&gt; -
&lt;strong&gt;Evan Lucas&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:evanlucas@me.com&#34; &gt;evanlucas@me.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/firedfox&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;firedfox&lt;/a&gt; -
&lt;strong&gt;Daniel Wang&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:wangyang0123@gmail.com&#34; &gt;wangyang0123@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/Fishrock123&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Fishrock123&lt;/a&gt; -
&lt;strong&gt;Jeremiah Senkpiel&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:fishrock123@rocketmail.com&#34; &gt;fishrock123@rocketmail.com&lt;/a&gt;&amp;raquo; (he/they)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/gdams&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;gdams&lt;/a&gt; -
&lt;strong&gt;George Adams&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:gadams@microsoft.com&#34; &gt;gadams@microsoft.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/geek&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;geek&lt;/a&gt; -
&lt;strong&gt;Wyatt Preul&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:wpreul@gmail.com&#34; &gt;wpreul@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/gibfahn&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;gibfahn&lt;/a&gt; -
&lt;strong&gt;Gibson Fahnestock&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:gibfahn@gmail.com&#34; &gt;gibfahn@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/glentiki&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;glentiki&lt;/a&gt; -
&lt;strong&gt;Glen Keane&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:glenkeane.94@gmail.com&#34; &gt;glenkeane.94@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/hashseed&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;hashseed&lt;/a&gt; -
&lt;strong&gt;Yang Guo&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:yangguo@chromium.org&#34; &gt;yangguo@chromium.org&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/hiroppy&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;hiroppy&lt;/a&gt; -
&lt;strong&gt;Yuta Hiroto&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:hello@hiroppy.me&#34; &gt;hello@hiroppy.me&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/iansu&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;iansu&lt;/a&gt; -
&lt;strong&gt;Ian Sutherland&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:ian@iansutherland.ca&#34; &gt;ian@iansutherland.ca&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/iarna&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;iarna&lt;/a&gt; -
&lt;strong&gt;Rebecca Turner&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:me@re-becca.org&#34; &gt;me@re-becca.org&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/imran-iq&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;imran-iq&lt;/a&gt; -
&lt;strong&gt;Imran Iqbal&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:imran@imraniqbal.org&#34; &gt;imran@imraniqbal.org&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/imyller&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;imyller&lt;/a&gt; -
&lt;strong&gt;Ilkka Myller&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:ilkka.myller@nodefield.com&#34; &gt;ilkka.myller@nodefield.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/indutny&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;indutny&lt;/a&gt; -
&lt;strong&gt;Fedor Indutny&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:fedor@indutny.com&#34; &gt;fedor@indutny.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/isaacs&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;isaacs&lt;/a&gt; -
&lt;strong&gt;Isaac Z. Schlueter&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:i@izs.me&#34; &gt;i@izs.me&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/italoacasas&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;italoacasas&lt;/a&gt; -
&lt;strong&gt;Italo A. Casas&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:me@italoacasas.com&#34; &gt;me@italoacasas.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/JacksonTian&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;JacksonTian&lt;/a&gt; -
&lt;strong&gt;Jackson Tian&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:shyvo1987@gmail.com&#34; &gt;shyvo1987@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/jasongin&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;jasongin&lt;/a&gt; -
&lt;strong&gt;Jason Ginchereau&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:jasongin@microsoft.com&#34; &gt;jasongin@microsoft.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/jbergstroem&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;jbergstroem&lt;/a&gt; -
&lt;strong&gt;Johan Bergström&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:bugs@bergstroem.nu&#34; &gt;bugs@bergstroem.nu&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/jdalton&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;jdalton&lt;/a&gt; -
&lt;strong&gt;John-David Dalton&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:john.david.dalton@gmail.com&#34; &gt;john.david.dalton@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/jhamhader&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;jhamhader&lt;/a&gt; -
&lt;strong&gt;Yuval Brik&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:yuval@brik.org.il&#34; &gt;yuval@brik.org.il&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/joaocgreis&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;joaocgreis&lt;/a&gt; -
&lt;strong&gt;João Reis&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:reis@janeasystems.com&#34; &gt;reis@janeasystems.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/joesepi&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;joesepi&lt;/a&gt; -
&lt;strong&gt;Joe Sepi&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:sepi@joesepi.com&#34; &gt;sepi@joesepi.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/joshgav&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;joshgav&lt;/a&gt; -
&lt;strong&gt;Josh Gavant&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:josh.gavant@outlook.com&#34; &gt;josh.gavant@outlook.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/julianduque&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;julianduque&lt;/a&gt; -
&lt;strong&gt;Julian Duque&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:julianduquej@gmail.com&#34; &gt;julianduquej@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/kfarnung&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;kfarnung&lt;/a&gt; -
&lt;strong&gt;Kyle Farnung&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:kfarnung@microsoft.com&#34; &gt;kfarnung@microsoft.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/kunalspathak&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;kunalspathak&lt;/a&gt; -
&lt;strong&gt;Kunal Pathak&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:kunal.pathak@microsoft.com&#34; &gt;kunal.pathak@microsoft.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/kuriyosh&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;kuriyosh&lt;/a&gt; -
&lt;strong&gt;Yoshiki Kurihara&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:yosyos0306@gmail.com&#34; &gt;yosyos0306@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/kvakil&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;kvakil&lt;/a&gt; -
&lt;strong&gt;Keyhan Vakil&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:kvakil@sylph.kvakil.me&#34; &gt;kvakil@sylph.kvakil.me&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/lance&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;lance&lt;/a&gt; -
&lt;strong&gt;Lance Ball&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:lball@redhat.com&#34; &gt;lball@redhat.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/Leko&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Leko&lt;/a&gt; -
&lt;strong&gt;Shingo Inoue&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:leko.noor@gmail.com&#34; &gt;leko.noor@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/lucamaraschi&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;lucamaraschi&lt;/a&gt; -
&lt;strong&gt;Luca Maraschi&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:luca.maraschi@gmail.com&#34; &gt;luca.maraschi@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/lundibundi&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;lundibundi&lt;/a&gt; -
&lt;strong&gt;Denys Otrishko&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:shishugi@gmail.com&#34; &gt;shishugi@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/lxe&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;lxe&lt;/a&gt; -
&lt;strong&gt;Aleksey Smolenchuk&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:lxe@lxe.co&#34; &gt;lxe@lxe.co&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/maclover7&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;maclover7&lt;/a&gt; -
&lt;strong&gt;Jon Moss&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:me@jonathanmoss.me&#34; &gt;me@jonathanmoss.me&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/mafintosh&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;mafintosh&lt;/a&gt; -
&lt;strong&gt;Mathias Buus&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:mathiasbuus@gmail.com&#34; &gt;mathiasbuus@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/matthewloring&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;matthewloring&lt;/a&gt; -
&lt;strong&gt;Matthew Loring&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:mattloring@google.com&#34; &gt;mattloring@google.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/Mesteery&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Mesteery&lt;/a&gt; -
&lt;strong&gt;Mestery&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:mestery@protonmail.com&#34; &gt;mestery@protonmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/micnic&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;micnic&lt;/a&gt; -
&lt;strong&gt;Nicu Micleușanu&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:micnic90@gmail.com&#34; &gt;micnic90@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/mikeal&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;mikeal&lt;/a&gt; -
&lt;strong&gt;Mikeal Rogers&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:mikeal.rogers@gmail.com&#34; &gt;mikeal.rogers@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/miladfarca&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;miladfarca&lt;/a&gt; -
&lt;strong&gt;Milad Fa&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:mfarazma@redhat.com&#34; &gt;mfarazma@redhat.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/misterdjules&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;misterdjules&lt;/a&gt; -
&lt;strong&gt;Julien Gilli&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:jgilli@netflix.com&#34; &gt;jgilli@netflix.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/mmarchini&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;mmarchini&lt;/a&gt; -
&lt;strong&gt;Mary Marchini&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:oss@mmarchini.me&#34; &gt;oss@mmarchini.me&lt;/a&gt;&amp;raquo; (she/her)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/monsanto&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;monsanto&lt;/a&gt; -
&lt;strong&gt;Christopher Monsanto&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:chris@monsan.to&#34; &gt;chris@monsan.to&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/MoonBall&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;MoonBall&lt;/a&gt; -
&lt;strong&gt;Chen Gang&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:gangc.cxy@foxmail.com&#34; &gt;gangc.cxy@foxmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/mscdex&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;mscdex&lt;/a&gt; -
&lt;strong&gt;Brian White&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:mscdex@mscdex.net&#34; &gt;mscdex@mscdex.net&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/MylesBorins&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;MylesBorins&lt;/a&gt; -
&lt;strong&gt;Myles Borins&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:myles.borins@gmail.com&#34; &gt;myles.borins@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/not-an-aardvark&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;not-an-aardvark&lt;/a&gt; -
&lt;strong&gt;Teddy Katz&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:teddy.katz@gmail.com&#34; &gt;teddy.katz@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/ofrobots&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;ofrobots&lt;/a&gt; -
&lt;strong&gt;Ali Ijaz Sheikh&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:ofrobots@google.com&#34; &gt;ofrobots@google.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/Olegas&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Olegas&lt;/a&gt; -
&lt;strong&gt;Oleg Elifantiev&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:oleg@elifantiev.ru&#34; &gt;oleg@elifantiev.ru&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/orangemocha&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;orangemocha&lt;/a&gt; -
&lt;strong&gt;Alexis Campailla&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:orangemocha@nodejs.org&#34; &gt;orangemocha@nodejs.org&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/othiym23&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;othiym23&lt;/a&gt; -
&lt;strong&gt;Forrest L Norvell&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:ogd@aoaioxxysz.net&#34; &gt;ogd@aoaioxxysz.net&lt;/a&gt;&amp;raquo; (they/them/themself)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/ovflowd&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;ovflowd&lt;/a&gt; -
&lt;strong&gt;Claudio Wunder&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:cwunder@gnome.org&#34; &gt;cwunder@gnome.org&lt;/a&gt;&amp;raquo; (he/they)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/oyyd&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;oyyd&lt;/a&gt; -
&lt;strong&gt;Ouyang Yadong&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:oyydoibh@gmail.com&#34; &gt;oyydoibh@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/petkaantonov&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;petkaantonov&lt;/a&gt; -
&lt;strong&gt;Petka Antonov&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:petka_antonov@hotmail.com&#34; &gt;petka_antonov@hotmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/phillipj&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;phillipj&lt;/a&gt; -
&lt;strong&gt;Phillip Johnsen&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:johphi@gmail.com&#34; &gt;johphi@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/piscisaureus&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;piscisaureus&lt;/a&gt; -
&lt;strong&gt;Bert Belder&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:bertbelder@gmail.com&#34; &gt;bertbelder@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/pmq20&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;pmq20&lt;/a&gt; -
&lt;strong&gt;Minqi Pan&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:pmq2001@gmail.com&#34; &gt;pmq2001@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/PoojaDurgad&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;PoojaDurgad&lt;/a&gt; -
&lt;strong&gt;Pooja D P&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:Pooja.D.P@ibm.com&#34; &gt;Pooja.D.P@ibm.com&lt;/a&gt;&amp;raquo; (she/her)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/princejwesley&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;princejwesley&lt;/a&gt; -
&lt;strong&gt;Prince John Wesley&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:princejohnwesley@gmail.com&#34; &gt;princejohnwesley@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/psmarshall&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;psmarshall&lt;/a&gt; -
&lt;strong&gt;Peter Marshall&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:petermarshall@chromium.org&#34; &gt;petermarshall@chromium.org&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/puzpuzpuz&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;puzpuzpuz&lt;/a&gt; -
&lt;strong&gt;Andrey Pechkurov&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:apechkurov@gmail.com&#34; &gt;apechkurov@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/refack&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;refack&lt;/a&gt; -
&lt;strong&gt;Refael Ackermann (רפאל פלחי)&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:refack@gmail.com&#34; &gt;refack@gmail.com&lt;/a&gt;&amp;raquo; (he/him/הוא/אתה)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/rexagod&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;rexagod&lt;/a&gt; -
&lt;strong&gt;Pranshu Srivastava&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:rexagod@gmail.com&#34; &gt;rexagod@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/rickyes&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;rickyes&lt;/a&gt; -
&lt;strong&gt;Ricky Zhou&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:0x19951125@gmail.com&#34; &gt;0x19951125@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/rlidwka&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;rlidwka&lt;/a&gt; -
&lt;strong&gt;Alex Kocharin&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:alex@kocharin.ru&#34; &gt;alex@kocharin.ru&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/rmg&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;rmg&lt;/a&gt; -
&lt;strong&gt;Ryan Graham&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:r.m.graham@gmail.com&#34; &gt;r.m.graham@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/robertkowalski&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;robertkowalski&lt;/a&gt; -
&lt;strong&gt;Robert Kowalski&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:rok@kowalski.gd&#34; &gt;rok@kowalski.gd&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/romankl&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;romankl&lt;/a&gt; -
&lt;strong&gt;Roman Klauke&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:romaaan.git@gmail.com&#34; &gt;romaaan.git@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/ronkorving&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;ronkorving&lt;/a&gt; -
&lt;strong&gt;Ron Korving&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:ron@ronkorving.nl&#34; &gt;ron@ronkorving.nl&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/RReverser&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;RReverser&lt;/a&gt; -
&lt;strong&gt;Ingvar Stepanyan&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:me@rreverser.com&#34; &gt;me@rreverser.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/rubys&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;rubys&lt;/a&gt; -
&lt;strong&gt;Sam Ruby&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:rubys@intertwingly.net&#34; &gt;rubys@intertwingly.net&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/rvagg&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;rvagg&lt;/a&gt; -
&lt;strong&gt;Rod Vagg&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:rod@vagg.org&#34; &gt;rod@vagg.org&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/ryzokuken&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;ryzokuken&lt;/a&gt; -
&lt;strong&gt;Ujjwal Sharma&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:ryzokuken@disroot.org&#34; &gt;ryzokuken@disroot.org&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/saghul&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;saghul&lt;/a&gt; -
&lt;strong&gt;Saúl Ibarra Corretgé&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:s@saghul.net&#34; &gt;s@saghul.net&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/sam-github&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;sam-github&lt;/a&gt; -
&lt;strong&gt;Sam Roberts&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:vieuxtech@gmail.com&#34; &gt;vieuxtech@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/sebdeckers&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;sebdeckers&lt;/a&gt; -
&lt;strong&gt;Sebastiaan Deckers&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:sebdeckers83@gmail.com&#34; &gt;sebdeckers83@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/seishun&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;seishun&lt;/a&gt; -
&lt;strong&gt;Nikolai Vavilov&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:vvnicholas@gmail.com&#34; &gt;vvnicholas@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/shigeki&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;shigeki&lt;/a&gt; -
&lt;strong&gt;Shigeki Ohtsu&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:ohtsu@ohtsu.org&#34; &gt;ohtsu@ohtsu.org&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/shisama&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;shisama&lt;/a&gt; -
&lt;strong&gt;Masashi Hirano&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:shisama07@gmail.com&#34; &gt;shisama07@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/silverwind&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;silverwind&lt;/a&gt; -
&lt;strong&gt;Roman Reiss&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:me@silverwind.io&#34; &gt;me@silverwind.io&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/starkwang&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;starkwang&lt;/a&gt; -
&lt;strong&gt;Weijia Wang&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:starkwang@126.com&#34; &gt;starkwang@126.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/stefanmb&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;stefanmb&lt;/a&gt; -
&lt;strong&gt;Stefan Budeanu&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:stefan@budeanu.com&#34; &gt;stefan@budeanu.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/tellnes&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;tellnes&lt;/a&gt; -
&lt;strong&gt;Christian Tellnes&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:christian@tellnes.no&#34; &gt;christian@tellnes.no&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/thefourtheye&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;thefourtheye&lt;/a&gt; -
&lt;strong&gt;Sakthipriyan Vairamani&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:thechargingvolcano@gmail.com&#34; &gt;thechargingvolcano@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/thlorenz&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;thlorenz&lt;/a&gt; -
&lt;strong&gt;Thorsten Lorenz&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:thlorenz@gmx.de&#34; &gt;thlorenz@gmx.de&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/TimothyGu&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;TimothyGu&lt;/a&gt; -
&lt;strong&gt;Tiancheng &amp;ldquo;Timothy&amp;rdquo; Gu&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:timothygu99@gmail.com&#34; &gt;timothygu99@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/trevnorris&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;trevnorris&lt;/a&gt; -
&lt;strong&gt;Trevor Norris&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:trev.norris@gmail.com&#34; &gt;trev.norris@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/tunniclm&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;tunniclm&lt;/a&gt; -
&lt;strong&gt;Mike Tunnicliffe&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:m.j.tunnicliffe@gmail.com&#34; &gt;m.j.tunnicliffe@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/vdeturckheim&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;vdeturckheim&lt;/a&gt; -
&lt;strong&gt;Vladimir de Turckheim&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:vlad2t@hotmail.com&#34; &gt;vlad2t@hotmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/vkurchatkin&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;vkurchatkin&lt;/a&gt; -
&lt;strong&gt;Vladimir Kurchatkin&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:vladimir.kurchatkin@gmail.com&#34; &gt;vladimir.kurchatkin@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/vsemozhetbyt&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;vsemozhetbyt&lt;/a&gt; -
&lt;strong&gt;Vse Mozhet Byt&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:vsemozhetbyt@gmail.com&#34; &gt;vsemozhetbyt@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/watilde&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;watilde&lt;/a&gt; -
&lt;strong&gt;Daijiro Wachi&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:daijiro.wachi@gmail.com&#34; &gt;daijiro.wachi@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/watson&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;watson&lt;/a&gt; -
&lt;strong&gt;Thomas Watson&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:w@tson.dk&#34; &gt;w@tson.dk&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/whitlockjc&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;whitlockjc&lt;/a&gt; -
&lt;strong&gt;Jeremy Whitlock&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:jwhitlock@apache.org&#34; &gt;jwhitlock@apache.org&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/XadillaX&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;XadillaX&lt;/a&gt; -
&lt;strong&gt;Khaidi Chu&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:i@2333.moe&#34; &gt;i@2333.moe&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/yashLadha&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;yashLadha&lt;/a&gt; -
&lt;strong&gt;Yash Ladha&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:yash@yashladha.in&#34; &gt;yash@yashladha.in&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/yhwang&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;yhwang&lt;/a&gt; -
&lt;strong&gt;Yihong Wang&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:yh.wang@ibm.com&#34; &gt;yh.wang@ibm.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/yorkie&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;yorkie&lt;/a&gt; -
&lt;strong&gt;Yorkie Liu&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:yorkiefixer@gmail.com&#34; &gt;yorkiefixer@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/yosuke-furukawa&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;yosuke-furukawa&lt;/a&gt; -
&lt;strong&gt;Yosuke Furukawa&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:yosuke.furukawa@gmail.com&#34; &gt;yosuke.furukawa@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;/ul&gt;
&lt;/details&gt;
&lt;!--lint enable prohibited-strings--&gt;
&lt;p&gt;Collaborators follow the &lt;a class=&#34;link&#34; href=&#34;./doc/contributing/collaborator-guide.md&#34; &gt;Collaborator Guide&lt;/a&gt; in
maintaining the Node.js project.&lt;/p&gt;
&lt;h3 id=&#34;triagers&#34;&gt;Triagers
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/1ilsang&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;1ilsang&lt;/a&gt; -
&lt;strong&gt;Sangchul Lee&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:1ilsang.dev@gmail.com&#34; &gt;1ilsang.dev@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/atlowChemi&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;atlowChemi&lt;/a&gt; -
&lt;strong&gt;Chemi Atlow&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:chemi@atlow.co.il&#34; &gt;chemi@atlow.co.il&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/Ayase-252&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Ayase-252&lt;/a&gt; -
&lt;strong&gt;Qingyu Deng&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:i@ayase-lab.com&#34; &gt;i@ayase-lab.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/bjohansebas&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;bjohansebas&lt;/a&gt; -
&lt;strong&gt;Sebastian Beltran&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:bjohansebas@gmail.com&#34; &gt;bjohansebas@gmail.com&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/bmuenzenmeyer&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;bmuenzenmeyer&lt;/a&gt; -
&lt;strong&gt;Brian Muenzenmeyer&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:brian.muenzenmeyer@gmail.com&#34; &gt;brian.muenzenmeyer@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/CanadaHonk&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;CanadaHonk&lt;/a&gt; -
&lt;strong&gt;Oliver Medhurst&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:honk@goose.icu&#34; &gt;honk@goose.icu&lt;/a&gt;&amp;raquo; (they/them)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/daeyeon&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;daeyeon&lt;/a&gt; -
&lt;strong&gt;Daeyeon Jeong&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:daeyeon.dev@gmail.com&#34; &gt;daeyeon.dev@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/F3n67u&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;F3n67u&lt;/a&gt; -
&lt;strong&gt;Feng Yu&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:F3n67u@outlook.com&#34; &gt;F3n67u@outlook.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/gireeshpunathil&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;gireeshpunathil&lt;/a&gt; -
&lt;strong&gt;Gireesh Punathil&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:gpunathi@in.ibm.com&#34; &gt;gpunathi@in.ibm.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/gurgunday&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;gurgunday&lt;/a&gt; -
&lt;strong&gt;Gürgün Dayıoğlu&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:hey@gurgun.day&#34; &gt;hey@gurgun.day&lt;/a&gt;&amp;raquo;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/iam-frankqiu&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;iam-frankqiu&lt;/a&gt; -
&lt;strong&gt;Frank Qiu&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:iam.frankqiu@gmail.com&#34; &gt;iam.frankqiu@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/KevinEady&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;KevinEady&lt;/a&gt; -
&lt;strong&gt;Kevin Eady&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:kevin.c.eady@gmail.com&#34; &gt;kevin.c.eady@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/marsonya&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;marsonya&lt;/a&gt; -
&lt;strong&gt;Akhil Marsonya&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:akhil.marsonya27@gmail.com&#34; &gt;akhil.marsonya27@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/meixg&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;meixg&lt;/a&gt; -
&lt;strong&gt;Xuguang Mei&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:meixuguang@gmail.com&#34; &gt;meixuguang@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/preveen-stack&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;preveen-stack&lt;/a&gt; -
&lt;strong&gt;Preveen Padmanabhan&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:wide4head@gmail.com&#34; &gt;wide4head@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/RaisinTen&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;RaisinTen&lt;/a&gt; -
&lt;strong&gt;Darshan Sen&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:raisinten@gmail.com&#34; &gt;raisinten@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/VoltrexKeyva&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;VoltrexKeyva&lt;/a&gt; -
&lt;strong&gt;Mohammed Keyvanzadeh&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:mohammadkeyvanzade94@gmail.com&#34; &gt;mohammadkeyvanzade94@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Triagers follow the &lt;a class=&#34;link&#34; href=&#34;./doc/contributing/issues.md#triaging-a-bug-report&#34; &gt;Triage Guide&lt;/a&gt; when
responding to new issues.&lt;/p&gt;
&lt;h3 id=&#34;release-keys&#34;&gt;Release keys
&lt;/h3&gt;&lt;p&gt;Primary GPG keys for Node.js Releasers (some Releasers sign with subkeys):&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Antoine du Hamel&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:duhamelantoine1995@gmail.com&#34; &gt;duhamelantoine1995@gmail.com&lt;/a&gt;&amp;raquo;
&lt;code&gt;C0D6248439F1D5604AAFFB4021D900FFDB233756&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Juan José Arboleda&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:soyjuanarbol@gmail.com&#34; &gt;soyjuanarbol@gmail.com&lt;/a&gt;&amp;raquo;
&lt;code&gt;DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Marco Ippolito&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:marcoippolito54@gmail.com&#34; &gt;marcoippolito54@gmail.com&lt;/a&gt;&amp;raquo;
&lt;code&gt;CC68F5A3106FF448322E48ED27F5E38D5B0A215F&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Michaël Zasso&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:targos@protonmail.com&#34; &gt;targos@protonmail.com&lt;/a&gt;&amp;raquo;
&lt;code&gt;8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Rafael Gonzaga&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:rafael.nunu@hotmail.com&#34; &gt;rafael.nunu@hotmail.com&lt;/a&gt;&amp;raquo;
&lt;code&gt;890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Richard Lau&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:rlau@redhat.com&#34; &gt;rlau@redhat.com&lt;/a&gt;&amp;raquo;
&lt;code&gt;C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Ruy Adorno&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:ruyadorno@hotmail.com&#34; &gt;ruyadorno@hotmail.com&lt;/a&gt;&amp;raquo;
&lt;code&gt;108F52B48DB57BB0CC439B2997B01419BD92F80A&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Ulises Gascón&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:ulisesgascongonzalez@gmail.com&#34; &gt;ulisesgascongonzalez@gmail.com&lt;/a&gt;&amp;raquo;
&lt;code&gt;A363A499291CBBC940DD62E41F10027AF002F8B0&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;To import the full set of trusted release keys (including subkeys possibly used
to sign releases):&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;3
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;4
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;5
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;6
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;7
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;8
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;gpg --keyserver hkps://keys.openpgp.org --recv-keys C0D6248439F1D5604AAFFB4021D900FFDB233756 &lt;span class=&#34;c1&#34;&gt;# Antoine du Hamel&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;gpg --keyserver hkps://keys.openpgp.org --recv-keys DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7 &lt;span class=&#34;c1&#34;&gt;# Juan José Arboleda&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;gpg --keyserver hkps://keys.openpgp.org --recv-keys CC68F5A3106FF448322E48ED27F5E38D5B0A215F &lt;span class=&#34;c1&#34;&gt;# Marco Ippolito&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;gpg --keyserver hkps://keys.openpgp.org --recv-keys 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 &lt;span class=&#34;c1&#34;&gt;# Michaël Zasso&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;gpg --keyserver hkps://keys.openpgp.org --recv-keys 890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4 &lt;span class=&#34;c1&#34;&gt;# Rafael Gonzaga&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;gpg --keyserver hkps://keys.openpgp.org --recv-keys C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C &lt;span class=&#34;c1&#34;&gt;# Richard Lau&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;gpg --keyserver hkps://keys.openpgp.org --recv-keys 108F52B48DB57BB0CC439B2997B01419BD92F80A &lt;span class=&#34;c1&#34;&gt;# Ruy Adorno&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;gpg --keyserver hkps://keys.openpgp.org --recv-keys A363A499291CBBC940DD62E41F10027AF002F8B0 &lt;span class=&#34;c1&#34;&gt;# Ulises Gascón&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;See &lt;a class=&#34;link&#34; href=&#34;#verifying-binaries&#34; &gt;Verifying binaries&lt;/a&gt; for how to use these keys to
verify a downloaded file.&lt;/p&gt;
&lt;details&gt;
&lt;summary&gt;Other keys used to sign some previous releases&lt;/summary&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Beth Griggs&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:bethanyngriggs@gmail.com&#34; &gt;bethanyngriggs@gmail.com&lt;/a&gt;&amp;raquo;
&lt;code&gt;4ED778F539E3634C779C87C6D7062848A1AB005C&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Bryan English&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:bryan@bryanenglish.com&#34; &gt;bryan@bryanenglish.com&lt;/a&gt;&amp;raquo;
&lt;code&gt;141F07595B7B3FFE74309A937405533BE57C7D57&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Chris Dickinson&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:christopher.s.dickinson@gmail.com&#34; &gt;christopher.s.dickinson@gmail.com&lt;/a&gt;&amp;raquo;
&lt;code&gt;9554F04D7259F04124DE6B476D5A82AC7E37093B&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Colin Ihrig&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:cjihrig@gmail.com&#34; &gt;cjihrig@gmail.com&lt;/a&gt;&amp;raquo;
&lt;code&gt;94AE36675C464D64BAFA68DD7434390BDBE9B9C5&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Danielle Adams&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:adamzdanielle@gmail.com&#34; &gt;adamzdanielle@gmail.com&lt;/a&gt;&amp;raquo;
&lt;code&gt;1C050899334244A8AF75E53792EF661D867B9DFA&lt;/code&gt;
&lt;code&gt;74F12602B6F1C4E913FAA37AD3A89613643B6201&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Evan Lucas&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:evanlucas@me.com&#34; &gt;evanlucas@me.com&lt;/a&gt;&amp;raquo;
&lt;code&gt;B9AE9905FFD7803F25714661B63B535A4C206CA9&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Gibson Fahnestock&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:gibfahn@gmail.com&#34; &gt;gibfahn@gmail.com&lt;/a&gt;&amp;raquo;
&lt;code&gt;77984A986EBC2AA786BC0F66B01FBB92821C587A&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Isaac Z. Schlueter&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:i@izs.me&#34; &gt;i@izs.me&lt;/a&gt;&amp;raquo;
&lt;code&gt;93C7E9E91B49E432C2F75674B0A78B0A6C481CF6&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Italo A. Casas&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:me@italoacasas.com&#34; &gt;me@italoacasas.com&lt;/a&gt;&amp;raquo;
&lt;code&gt;56730D5401028683275BD23C23EFEFE93C4CFFFE&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;James M Snell&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:jasnell@keybase.io&#34; &gt;jasnell@keybase.io&lt;/a&gt;&amp;raquo;
&lt;code&gt;71DCFD284A79C3B38668286BC97EC7A07EDE3FC1&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Jeremiah Senkpiel&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:fishrock@keybase.io&#34; &gt;fishrock@keybase.io&lt;/a&gt;&amp;raquo;
&lt;code&gt;FD3A5288F042B6850C66B31F09FE44734EB7990E&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Juan José Arboleda&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:soyjuanarbol@gmail.com&#34; &gt;soyjuanarbol@gmail.com&lt;/a&gt;&amp;raquo;
&lt;code&gt;61FC681DFB92A079F1685E77973F295594EC4689&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Julien Gilli&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:jgilli@fastmail.fm&#34; &gt;jgilli@fastmail.fm&lt;/a&gt;&amp;raquo;
&lt;code&gt;114F43EE0176B71C7BC219DD50A3051F888C628D&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Myles Borins&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:myles.borins@gmail.com&#34; &gt;myles.borins@gmail.com&lt;/a&gt;&amp;raquo;
&lt;code&gt;C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Rod Vagg&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:rod@vagg.org&#34; &gt;rod@vagg.org&lt;/a&gt;&amp;raquo;
&lt;code&gt;DD8F2338BAE7501E3DD5AC78C273792F7D83545D&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Ruben Bridgewater&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:ruben@bridgewater.de&#34; &gt;ruben@bridgewater.de&lt;/a&gt;&amp;raquo;
&lt;code&gt;A48C2BEE680E841632CD4E44F07496B3EB3C1762&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Shelley Vohr&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:shelley.vohr@gmail.com&#34; &gt;shelley.vohr@gmail.com&lt;/a&gt;&amp;raquo;
&lt;code&gt;B9E2F5981AA6E0CD28160D9FF13993A75599653C&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Timothy J Fontaine&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:tjfontaine@gmail.com&#34; &gt;tjfontaine@gmail.com&lt;/a&gt;&amp;raquo;
&lt;code&gt;7937DFD2AB06298B2293C3187D33FF9D0246406D&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/details&gt;
&lt;h3 id=&#34;security-release-stewards&#34;&gt;Security release stewards
&lt;/h3&gt;&lt;p&gt;When possible, the commitment to take slots in the
security release steward rotation is made by companies in order
to ensure individuals who act as security stewards have the
support and recognition from their employer to be able to
prioritize security releases. Security release stewards manage security
releases on a rotation basis as outlined in the
&lt;a class=&#34;link&#34; href=&#34;./doc/contributing/security-release-process.md&#34; &gt;security release process&lt;/a&gt;.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://www.datadoghq.com/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Datadog&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/bengl&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;bengl&lt;/a&gt; -
&lt;strong&gt;Bryan English&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:bryan@bryanenglish.com&#34; &gt;bryan@bryanenglish.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://nodesource.com/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;NodeSource&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/juanarbol&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;juanarbol&lt;/a&gt; -
&lt;strong&gt;Juan José Arboleda&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:soyjuanarbol@gmail.com&#34; &gt;soyjuanarbol@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/RafaelGSS&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;RafaelGSS&lt;/a&gt; -
&lt;strong&gt;Rafael Gonzaga&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:rafael.nunu@hotmail.com&#34; &gt;rafael.nunu@hotmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://platformatic.dev/&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Platformatic&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/mcollina&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;mcollina&lt;/a&gt; -
&lt;strong&gt;Matteo Collina&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:matteo.collina@gmail.com&#34; &gt;matteo.collina@gmail.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://redhat.com&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Red Hat&lt;/a&gt; / &lt;a class=&#34;link&#34; href=&#34;https://ibm.com&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;IBM&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/joesepi&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;joesepi&lt;/a&gt; -
&lt;strong&gt;Joe Sepi&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:joesepi@ibm.com&#34; &gt;joesepi@ibm.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://github.com/mhdawson&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;mhdawson&lt;/a&gt; -
&lt;strong&gt;Michael Dawson&lt;/strong&gt; &amp;laquo;&lt;a class=&#34;link&#34; href=&#34;mailto:midawson@redhat.com&#34; &gt;midawson@redhat.com&lt;/a&gt;&amp;raquo; (he/him)&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;license&#34;&gt;License
&lt;/h2&gt;&lt;p&gt;Node.js is available under the
&lt;a class=&#34;link&#34; href=&#34;https://opensource.org/licenses/MIT&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;MIT License&lt;/a&gt;. Node.js also includes
external libraries that are available under a variety of licenses.  See
&lt;a class=&#34;link&#34; href=&#34;https://github.com/nodejs/node/blob/HEAD/LICENSE&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;LICENSE&lt;/a&gt; for the full
license text.&lt;/p&gt;
</description>
        </item>
        
    </channel>
</rss>
