Both sides previous revisionPrevious revisionNext revision | Previous revision |
start [2020/05/20 17:34] – frederi | start [2023/06/05 17:16] (current) – [Extra design considerations] frederi |
---|
| |
Here is the design vs reality shot the thread starts with: | Here is the design vs reality shot the thread starts with: |
{{ ::march21comparison.jpg?nolink |}} | [[:epyx:start|{{::march21comparison.jpg?nolink |}}]] |
| |
===== Structure ===== | ===== Structure ===== |
[[:epyx:start|Epyx original design]] | [[:epyx:start|Epyx original design]] |
| |
===== Extraction details ===== | ==== Extraction details ==== |
Just keeping that as a note: to extract all the photos from photobucket I followed the following steps: | Just keeping this as a note: to extract all the photos from photobucket I followed the following steps: |
1. Copy each of the 12 pages URL which contains photos into [[https://www.bulkdachecker.com/url-extractor/|URL Extractor]] | - Copy each of the 12 pages URL which contains photos into [[https://www.bulkdachecker.com/url-extractor/|URL Extractor]] |
1. http://forum.arcadecontrols.com/index.php/topic,96465.0.html | - http://forum.arcadecontrols.com/index.php/topic,96465.0.html |
1. http://forum.arcadecontrols.com/index.php/topic,96465.40.html | - http://forum.arcadecontrols.com/index.php/topic,96465.40.html |
1. http://forum.arcadecontrols.com/index.php/topic,96465.80.html | - http://forum.arcadecontrols.com/index.php/topic,96465.80.html |
1. http://forum.arcadecontrols.com/index.php/topic,96465.120.html | - http://forum.arcadecontrols.com/index.php/topic,96465.120.html |
1. http://forum.arcadecontrols.com/index.php/topic,96465.160.html | - http://forum.arcadecontrols.com/index.php/topic,96465.160.html |
1. http://forum.arcadecontrols.com/index.php/topic,96465.200.html | - http://forum.arcadecontrols.com/index.php/topic,96465.200.html |
1. http://forum.arcadecontrols.com/index.php/topic,96465.240.html | - http://forum.arcadecontrols.com/index.php/topic,96465.240.html |
1. http://forum.arcadecontrols.com/index.php/topic,96465.280.html | - http://forum.arcadecontrols.com/index.php/topic,96465.280.html |
1. http://forum.arcadecontrols.com/index.php/topic,96465.320.html | - http://forum.arcadecontrols.com/index.php/topic,96465.320.html |
1. http://forum.arcadecontrols.com/index.php/topic,96465.360.html | - http://forum.arcadecontrols.com/index.php/topic,96465.360.html |
1. http://forum.arcadecontrols.com/index.php/topic,96465.400.html | - http://forum.arcadecontrols.com/index.php/topic,96465.400.html |
1. http://forum.arcadecontrols.com/index.php/topic,96465.440.html | - http://forum.arcadecontrols.com/index.php/topic,96465.440.html |
1. Copy and past the [[https://www.bulkdachecker.com/url-extractor/|URL Extractor]] into a text file saved locally and called links.txt | - Copy and past the [[https://www.bulkdachecker.com/url-extractor/|URL Extractor]] into a text file saved locally and called links.txt |
1. Filter the newly created links.txt by typing <code>grep -hr "bb312" links.txt > page[1-12].txt</code> | - Filter the newly created links.txt by typing <code>grep -hr "bb312" links.txt > page[1-12].txt</code> |
1. Open all tabs from those text files by typing <code>cat page[1-12].txt | xargs firefox -new-tab</code> | - Open all tabs from those text files by typing <code>cat page[1-12].txt | xargs firefox -new-tab</code> |
1. Save each image using "save image as..." from FireFox into a separate page[1-12] folder | - Save each image using "save image as..." from FireFox into a separate page[1-12] folder |
1. Convert all those webp images into png using dwebp | - Convert all those webp images into png using dwebp <code>for file in *.webp; do dwebp $file "`basename $file`" -o $file.png; done |
1. Convert all those png files using imagemagick | for f in *.webp.png ; do mv -- "$f" "$(basename -- "$f" .webp.png).png" ; done |
| </code> |
| - Convert all those png files using imagemagick <code>mogrify -format jpg *.png</code> |
| |
| There is probably a way to do all this at once but since it is a one time process I just did it as it came... |
| |
| ===== Extra design considerations ===== |
| * Use the cabinet as a Jukebox when not gaming |
| * <del>rpi-fruitbox seems nice but not yet working on rpi4</del> |
| * Get great sound: |
| * [[https://www.element14.com/community/community/project14/acoustics/blog/2020/01/28/amazing-bass-homebrew-audio-system-for-a-raspberry-pi-retro-gaming-console|Great project for rpi2 (is it different on Pi 4?)]] |
| * [[https://www.raspberrypi-spy.co.uk/2019/06/using-a-usb-audio-device-with-the-raspberry-pi/|USB sound connection]] |
| * [[https://retropie.org.uk/docs/Sound-Issues/|Some consideration and fixes here]] |