DreamcastDVD

(★ 9)

RPI firmware for playing DVDs on Dreamcast

DreamcastDVD Latest Version Download

# 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.

🔍

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:

🔍

sshpass

View Details ▼

An SSH password provider.
It works by creating a TTY, feeding the password into it, and then redirecting `stdin` to the SSH session.

sshpass -d {{0}} ssh {{user}}@{{hostname}}

Connect to a remote server using a password supplied on a file descriptor (in this case, `stdin`):

sshpass -p {{password}} ssh -o StrictHostKeyChecking=no {{user}}@{{hostname}}

Connect to a remote server with the password supplied as an option, and automatically accept unknown SSH keys:

sshpass -f {{path/to/file}} ssh -o StrictHostKeyChecking=no {{user}}@{{hostname}} "{{command}}"

Connect to a remote server using the first line of a file as the password, automatically accept unknown SSH keys, and launch a command:

// repository documentation