gifs here
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# プロジェクトルート/bin/init.sh のように配置してください。 | |
# ルート/vendor にwp-cli.pharを、ルート/htdocsにWordPressを配置します。 | |
WPCLI_BIN="vendor/wp-cli.phar" | |
WPCLI="$WPCLI_BIN --path=htdocs" | |
WP_INSTALL_DIR="htdocs" | |
TITLE='a wordpress site' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const async = require('async') | |
const path = require('path') | |
const spawn = require('child_process').spawn | |
const CONCURRENCY = 6 | |
const VIDEO_STORE_ROOT = 'K:' | |
const VJ_VIDEO_STORE = 'Motion Graphics (VJ, Hap)' | |
const sources = require('yargs').argv._ |
- Heat Death Infinity Splitter - 65daysofstatic
- Ragga Bomb (feat. Ragga Twins) [Teddykillerz Remix] - Skrillex
- Diplodocus (Kill The Noise Remix) - Noisia
- Stigma - Noisia
- Printer Jam - Mistabishi
- Tokyo Hardcore - Forbidden Society
- Birth Cycle - Forbidden Society & Current Value
- Over the Edge (Current Value Remix) - THE SECT
- Wall of Death - Forbidden Society & Katharsys
- Voodoo (Noisia's 'outer Edges' Remix) - Noisia
- Add
HOME
- Get Windows Terminal from https://aka.ms/terminal and install it.
- Get Powershell Core 7 from https://docs.microsoft.com/ja-jp/powershell/scripting/install/installing-powershell-core-on-windows and install it.
- Get FiraCode fonts from https://github.com/tonsky/FiraCode and install it.
- Configure Windows Terminal to...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
./autogen.sh | |
./configure --prefix=$HOME/local \ | |
--without-mailutils \ | |
--without-pop \ | |
--without-sound \ | |
--without-x-toolkit \ | |
--without-xpm \ | |
--without-jpeg \ | |
--without-tiff \ | |
--without-gif \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Based on https://stackoverflow.com/questions/60043174/cross-fade-video-to-itself-with-ffmpeg-for-seamless-looping | |
# and conversations with ChatGPT | |
duration=$(ffprobe -v error -show_entries format=duration -of noprint_wrappers=1:nokey=1 input.mp4) | |
duration=$(echo "$duration - 2" | bc) | |
ffmpeg -i input.mp4 -filter_complex "[0]trim=end=1,setpts=PTS-STARTPTS,fps=fps=30[begin];[0]trim=start=1,setpts=PTS-STARTPTS,fps=fps=30[end];[end][begin]xfade=fade:duration=1:offset=${duration}" output.mp4 |