Update cheatsheets

This commit is contained in:
ivuorinen
2025-11-26 00:20:44 +00:00
parent 048e3ad81e
commit 197e4c944f
55 changed files with 110 additions and 80 deletions

View File

@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# streamlink
> Extracts streams from various services and pipes them into a video player of choice.
> More information: <https://streamlink.github.io>.
> More information: <https://streamlink.github.io/cli.html#command-line-usage>.
- Attempt to extract streams from the URL specified, and if it's successful, print out a list of available streams to choose from:
@@ -22,7 +22,7 @@ source: https://github.com/tldr-pages/tldr.git
- Use a specific player to feed stream data to (VLC is used by default if found):
`streamlink --player={{mpv}} {{example.com/stream}} {{best}}`
`streamlink {{[-p|--player]}} {{mpv}} {{example.com/stream}} {{best}}`
- Skip a specific amount of time from the beginning of the stream. For live streams, this is a negative offset from the end of the stream (rewind):
@@ -34,8 +34,8 @@ source: https://github.com/tldr-pages/tldr.git
- Write stream data to a file instead of playing it:
`streamlink --output {{path/to/file.ts}} {{example.com/stream}} {{best}}`
`streamlink {{[-o|--output]}} {{path/to/file.ts}} {{example.com/stream}} {{best}}`
- Open the stream in the player, while at the same time writing it to a file:
`streamlink --record {{path/to/file.ts}} {{example.com/stream}} {{best}}`
`streamlink {{[-r|--record]}} {{path/to/file.ts}} {{example.com/stream}} {{best}}`