mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 20:11:19 +08:00
d4060734bc
* hlsq: add page * hlsq: use long option in curl Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> * hlsq: fix curl arg * hlsq: remove erroneous quote * hlsq: descriptive summaries * Update pages/common/hlsq.md Co-authored-by: Ivan Baluta <ivanbaluta.dev@gmail.com> --------- Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> Co-authored-by: Ivan Baluta <ivanbaluta.dev@gmail.com>
614 B
614 B
hlsq
Display HLS manifests with color and basic filtering. More information: https://github.com/soldiermoth/hlsq/.
- View an HLS manifest from a URL:
{{curl --silent url}} | hlsq
- View an HLS manifest from a file:
{{cat path/to/file.m3u8}} | hlsq
- Continuously refetch a URL and update the output:
hlsq -watch -url {{url}}
- Filter a multivariant playlist by an attribute's string value:
{{cat path/to/file.m3u8}} | hlsq -query '{{type = SUBTITLES}}'
- Filter a multivariant playlist by an attribute's numeric value:
{{cat path/to/file.m3u8}} | hlsq -query '{{bandwidth > 1000000}}'