This is what we did to setup a few dashboards at platanus
- Raspberry Pi
- Dashing Service
- Wifi stick (optional)
This is what we did to setup a few dashboards at platanus
The easiest way to "convert" MKV to MP4, is to copy the existing video and audio streams and place them into a new container. This avoids any encoding task and hence no quality will be lost, it is also a fairly quick process and requires very little CPU power. The main factor is disk read/write speed.
With ffmpeg this can be achieved with -c copy. Older examples may use -vcodec copy -acodec copy which does the same thing.
These examples assume ffmpeg is in your PATH. If not just substitute with the full path to your ffmpeg binary.
| brew options ffmpeg | |
| brew install ffmpeg \ | |
| --with-chromaprint \ | |
| --with-fdk-aac \ | |
| --with-fontconfig \ | |
| --with-freetype \ | |
| --with-frei0r \ | |
| --with-game-music-emu \ | |
| --with-libass \ |
| #!/usr/bin/env bash | |
| # Import SSH keys from Github to ~/.ssh/authorize_keys for all members of a | |
| # given Github organization. | |
| # | |
| # Will replace authorized_keys, if it looks like authorized_keys was not | |
| # previously created by this script then a backup copy is made. | |
| # | |
| # Depends on jq, will download it if not available (assumes Linux) to ~/bin/jq | |
| # |