I hereby claim:
- I am thisisareku on github.
- I am alexandreboucey (https://keybase.io/alexandreboucey) on keybase.
- I have a public key ASDbMb2X-QqMYpkXtodawFAV-bQj_fOEhl5kF0edkqIJfQo
To claim this, I am signing this object:
@echo off | |
Setlocal EnableDelayedExpansion | |
cd %~dp0 | |
SET output=wbfs | |
SET tool=wbfs_file.exe | |
REM -- Safeguard -- | |
SET info_file=- | |
SET game_id=- |
#!/bin/sh | |
SCRIPT_NAME="S03synobridge.sh" | |
SCRIPT_PATH="/usr/syno/etc/rc.d/" | |
GATEWAY="192.168.0.254" | |
NETMASK="255.255.255.0" | |
IP="192.168.0.1" | |
if [ "$1" == "install" ]; then | |
if [ ! -f "${SCRIPT_PATH}${SCRIPT_NAME}" ]; then |
gsettings set org.compiz.core:/org/compiz/profiles/unity/plugins/core/ hsize 2 | |
gsettings set org.compiz.core:/org/compiz/profiles/unity/plugins/core/ vsize 2 |
version: '2' | |
services: | |
mysql: | |
image: "mariadb:latest" | |
ports: | |
- "3306:3306" | |
volumes: | |
- ./mysql:/var/lib/mysql | |
environment: | |
MYSQL_ROOT_PASSWORD: "root" |
# Source this file in your .zshrc BEFORE "source $ZSH/oh-my-zsh.sh" | |
export TERM="xterm-256color" | |
# Set your username here | |
export DEFAULT_USER= | |
# Digital Ocean Token | |
export DO_TOKEN= | |
# Path to Android SDK |
#!/bin/sh | |
cd "$(dirname "$0")" | |
. ./plex_config | |
wget -qO- "${PLEXPY_URL}api/v2?apikey=${PLEXPY_TOKEN}&cmd=get_activity" | ./jq-linux64 -M 'def c(d): reduce .response.data.sessions[] as $n (0; if $n.transcode_decision==d then . + 1 else . + 0 end); [{transcode_type: "transcode", "activity_stream_count": .|c("transcode")}, {transcode_type: "direct_play", "activity_stream_count": .|c("direct play")}, {transcode_type: "direct_stream", "activity_stream_count": .|c("direct stream")}]' |
I hereby claim:
To claim this, I am signing this object:
^(?!.*(BtGatt|dalvik|Environment|DataRouter|FA|art|Wifi|ServiceManager|Atfwd|tnet|MDnsDS|Download|Bluetooth|slim|QSEECOMAPI|WVCdm|QC-time|sensors|nanohub|Drm|Babel|Dropbox|gsamlab|Cryptd|Vold|QC_|Conscrypt|Dns|sound|NetWork|OpenGL|TLog|GMPM|Microphone|Process|Dynamite|cr_|VideoCapabilities|libEGL|libc-netbsd|NativeCrypto|Timeline|GraphicBuffer|InputMethodManager|mali_winsys|Surface|PhoneWindow)) |
http://ffmpeg.org/ffmpeg.html#Advanced-options https://en.wikibooks.org/wiki/FFMPEG_An_Intermediate_Guide/subtitle_options#Import_a_subtitle_file_(copy_video/audio_streams,_without_re-encoding) https://trac.ffmpeg.org/wiki/ExtractSubtitles
-metadata title="My title"
ffmpeg -i input.mkv -map 0:v:0 -map 0:a:1 -map 0:a:0 -c copy output.mkv
Here's what -map does:
curl -s https://raw.githubusercontent.com/ipfs/public-gateway-checker/master/gateways.json | \ | |
jq -r '.[]' | \ | |
sed -e "s/:hash/$1/g" | \ | |
parallel --bar -P 16 curl -s -o /dev/null -X HEAD |