GBCYouTube

(★ 24)

Homebrew unofficial YouTube app for the Game Boy Color

File Explorer

  • .gitignore
  • LICENSE
  • README.md
  • run.sh

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

convert

View Details ▼

This command is an alias of `magick convert`.
Note: This alias is deprecated since ImageMagick 7. It has been replaced by `magick`.
Use `magick convert` if you need to use the old tool in versions 7+.

tldr magick convert

View documentation for the original command:

🔍

ffmpeg

View Details ▼

Video conversion tool.
See also: `gst-launch-1.0`.

ffmpeg -i {{path/to/video.mp4}} -vn {{path/to/sound.mp3}}

Extract the sound from a video and save it as MP3:

ffmpeg -i {{path/to/input_audio.flac}} -ar 44100 -sample_fmt s16 {{path/to/output_audio.wav}}

Transcode a FLAC file to Red Book CD format (44100kHz, 16bit):

ffmpeg -i {{path/to/video.mp4}} {{[-vf|-filter:v]}} 'scale=-1:1000' -r 15 {{path/to/output.gif}}

Save a video as GIF, scaling the height to 1000px and setting framerate to 15:

🔍

host

View Details ▼

Lookup Domain Name Server.
See also: `dig`, `resolvectl`, `nslookup`.

host {{domain}}

Lookup A, AAAA, and MX records of a domain:

host -t {{field}} {{domain}}

Lookup a field (CNAME, TXT, ...) of a domain:

host {{ip_address}}

Reverse lookup an IP:

🔍

picotool

View Details ▼

Manage Raspberry Pi Pico boards.

picotool info

Display information about the currently loaded program on a Pico:

picotool load {{path/to/binary}}

Load a binary onto a Pico:

picotool uf2 convert {{path/to/elf_or_bin}} {{path/to/output}}

Convert an ELF or BIN file to UF2:

🔍

python3

View Details ▼

This command is an alias of `python`.

tldr python

View documentation for the original command:

🔍

yt-dlp

View Details ▼

A youtube-dl fork with additional features and fixes.
Download videos from YouTube and other websites.
See also: `ytfzf`.

yt-dlp "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"

Download a video or playlist (with the default options from command below):

yt-dlp {{[-F|--list-formats]}} "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"

List the available downloadable formats for a video:

yt-dlp {{[-f|--format]}} "{{bv*[ext=mp4]+ba[ext=m4a]/b[ext=mp4]}}" "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"

Download a video or playlist using the best MP4 video available (default is "bv\*+ba/b"):

🔍

daemon

View Details ▼

Turns other processes into daemons.

daemon {{[-n|--name]}} "{{name}}" {{command}}

Run a command as a daemon:

daemon {{[-n|--name]}} "{{name}}" {{[-r|--respawn]}} {{command}}

Run a command as a daemon which will restart if the command crashes:

daemon {{[-n|--name]}} "{{name}}" {{[-r|--respawn]}} {{[-A|--attempts]}} 2 {{[-L|--delay]}} 10 {{command}}

Run a command as a daemon which will restart if it crashes, with two attempts every 10 seconds:

// repository documentation