GBCYouTube
Homebrew unofficial YouTube app for the Game Boy Color
File Explorer
- audio.asm
- decode_audio.py
- encode_audio.py
- gbhw.asm
- Makefile
- player.asm
- gbhw.asm
- Makefile
- player.asm
- gbc_hicolor.c
- gbc_hicolor.h
- main.c
- .gitignore
- dbg.log
- dump_state.c
- gen_test_image.py
- Makefile
- README.md
- run_test.sh
- screenshot.c
- verify_screenshot.py
- decode_bank.py
- encode_video.py
- gbhw.asm
- gen_test_pattern.py
- Makefile
- player.asm
- scan_test_pattern.py
- audio.asm
- audio_consts.inc
- encode.py
- gbhw.asm
- Makefile
- music.gbm
- scan_glitch.py
- video.asm
- encode.py
- gbhw.asm
- Makefile
- music.gbm
- video.asm
- video_to_rom.py
- CMakeLists.txt
- main.c
- pico_sdk_import.cmake
- README.md
- run.sh
- CMakeLists.txt
- main.c
- pico_sdk_import.cmake
- send_tone.py
- bench.c
- CMakeLists.txt
- gb_link_spi.pio
- main.c
- pico_sdk_import.cmake
- reflash.sh
- bench_link.c
- heartbeat_link.c
- hicolor_isr.c
- hicolor_isr.h
- image_link.c
- .gitignore
- requirements.txt
- send_image.py
- dialog.c
- dialog.h
- galleryview.c
- gbc_hicolor.c
- gbc_hicolor.h
- keyboard.c
- keyboard.h
- landing.c
- landing.h
- main.c
- screen2.c
- search_wire.h
- searchscreen.c
- thumb_wire.h
- .gitignore
- gen_logo.py
- gen_wordmark.py
- Makefile
- __init__.py
- _fakes.py
- test_convert.py
- test_encoder_regression.py
- test_engine_concurrency.py
- test_mux_framing.py
- __init__.py
- benchmark.py
- convert.py
- daemon.py
- engine.py
- play.py
- search.py
- thumbs.py
- transport.py
- youtube.py
- ytstream.py
- CMakeLists.txt
- decode_bank.py
- encode_video.py
- gen_framecount.py
- gen_test_pattern.py
- player.asm
- scan_test_pattern.py
- encode.py
- gen_test_pattern.py
- video.asm
- gbhw.asm
- CMakeLists.txt
- creds.h.in
- main.c
- build.sh
- CMakeLists.txt
- creds.env.example
- sdkconfig
- sdkconfig.defaults
- sdkconfig.defaults.esp32c6
- i2s_out.c
- i2s_out.h
- i2s_out.pio
- main.c
- mux_proto.h
- pinmap.h
- psram.c
- psram.h
- serve.pio
- spi_rx.c
- spi_rx.h
- spi_rx.pio
- uplink_proto.h
- uplink_uart.c
- uplink_uart.h
- encode_tiles.py
- gen_counter_frames.py
- gen_dense_pattern.py
- gen_frames.py
- gen_quality_pattern.py
- score_quality.py
- snapshot.sh
- .gitignore
- LICENSE
- README.md
- run.sh
# Use via CDN
jsDelivrjsDelivr 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 ▼
convert
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 ▼
ffmpeg
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 ▼
host
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 ▼
picotool
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 ▼
python3
This command is an alias of `python`.
tldr python
View documentation for the original command:
yt-dlp
View Details ▼
yt-dlp
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 ▼
daemon
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:
