Yt-dlp: Difference between revisions

From wikinotes
(Created page with "Fork of youtube-dl with additional features. = Install = <blockquote> <syntaxhighlight lang="bash"> pkg install yt-dlp pkg install ffmpeg # otherwise videos capped at 720p </syntaxhighlight> </blockquote><!-- Install --> = Usage = <blockquote> <syntaxhighlight lang="bash"> yt-dlp 'https://www.youtube.com/watch?SOME_PLAYLIST' # archive an entire youtube-playlist </syntaxhighlight> </blockquote><!-- Usage -->")
 
 
(2 intermediate revisions by the same user not shown)
Line 13: Line 13:
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
yt-dlp 'https://www.youtube.com/watch?SOME_PLAYLIST'  # archive an entire youtube-playlist
yt-dlp 'https://www.youtube.com/watch?SOME_PLAYLIST'  # archive an entire youtube-playlist
yt-dlp -x --audio-format flac --embed-thumbnail 'https://someurl.com'
</syntaxhighlight>
</syntaxhighlight>
</blockquote><!-- Usage -->
</blockquote><!-- Usage -->

Latest revision as of 14:56, 27 April 2024

Fork of youtube-dl with additional features.

Install

pkg install yt-dlp
pkg install ffmpeg  # otherwise videos capped at 720p

Usage

yt-dlp 'https://www.youtube.com/watch?SOME_PLAYLIST'  # archive an entire youtube-playlist
yt-dlp -x --audio-format flac --embed-thumbnail 'https://someurl.com'