These instructions have moved to https://github.com/emporia-vue-local/esphome
| #!/bin/bash | |
| # Licensed under the MIT License – https://opensource.org/licenses/MIT | |
| DOWNLOAD_LOCATION="/roms" | |
| if mountpoint -q /roms2; then | |
| DOWNLOAD_LOCATION="/roms2" | |
| fi | |
| declare -A system_to_url |
The first time I played DDR was on a 6th Mix DDR MAX cabinet, but I spent most of my time with this massive custom LED wall screen that housed DDR Extreme. So when I got a foam pad for home, I wanted to replicate what felt most comfortable.
I'm sure it's not pixel perfect, and there are probably some arcade features/behaviours I'm missing, but this setup is close enough for me!
- Download Beware's Stepmania Extreme build (direct)
If you don't mind using an older version of Stepmania, you're probably good to go and can ignore the rest!
Using VAAPI's hardware accelerated video encoding on Linux with Intel's hardware on FFmpeg and libav
Hello, brethren :-)
As it turns out, the current version of FFmpeg (version 3.1 released earlier today) and libav (master branch) supports full H.264 and HEVC encode in VAAPI on supported hardware that works reliably well to be termed "production-ready".
I recently had a need for an app that displayed a fullscreen camera preview on an iPhone without any UI whatsoever. This is the result of 30 minutes of cobbling together various SO answers, blog posts etc.
All you need to do to use this is:
- Create a new "Single view" poject
- Add a new
UIViewto theViewControllerin the Storyboard - Connect the outlet
previewViewto theUIView
| #!/bin/bash | |
| set -eo pipefail | |
| container=$1 | |
| image=$(docker inspect --format '{{.Config.Image}}' $container) | |
| cmd=$(docker inspect --format '{{.Config.Cmd}}' $container) | |
| if [[ $cmd == '<nil>' ]]; then cmd=''; fi | |
| binds=$(docker inspect --format '{{.HostConfig.Binds}}' $container | sed "s/\[//; s/\]//") | |
| if [[ $binds == '<nil>' ]]; then binds=''; fi | |
| envs=$(docker inspect --format '{{.Config.Env}}' $container | sed "s/\[//; s/\]//") |