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
# QSV H.264 LA-ICQ | |
ffmpeg -y -hide_banner -nostats -analyzeduration 30M -probesize 100M -fflags +discardcorrupt -i input.ts -strict -2 -c:a aac -b:a 256k -aac_coder twoloop -ac 2 -max_muxing_queue_size 4000 -vf bwdif=0:-1:1 -global_quality 25 -c:v h264_qsv -preset:v veryslow -g 300 -bf 6 -refs 4 -b_strategy 1 -look_ahead 1 -look_ahead_depth 60 -color_range tv -color_primaries bt709 -color_trc bt709 -colorspace bt709 -pix_fmt nv12 -map i:0x100 -map i:0x110 -movflags +faststart output.mp4 | |
# NVEnc H.264 VBR_MinQP | |
ffmpeg -y -hide_banner -nostats -analyzeduration 30M -probesize 100M -fflags +discardcorrupt -i input.ts -strict -2 -c:a aac -b:a 256k -aac_coder twoloop -ac 2 -max_muxing_queue_size 4000 -vf bwdif=0:-1:1 -c:v h264_nvenc -preset:v slow -profile:v high -rc:v vbr_minqp -rc-lookahead 32 -spatial-aq 1 -aq-strength 1 -qmin:v 23 -qmax:v 25 -b:v 1500k -maxrate:v 3500k -pix_fmt yuv420p -map i:0x100 -map i:0x110 -movflags +faststart output.mp4 | |
# NVEnc H.264 CQP | |
ffmpeg -y -hide_banner -nostats -analyzeduration |
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
//SelectionがあればURLエンコしてdeepl.comに流す、なければ空で押し通る雑仕様 | |
//English -> Japanese | |
javascript: (function () { | |
open('https://www.deepl.com/translator#en/ja/' + encodeURIComponent(window.getSelection()) + '', '_blank'); | |
} )() | |
//Japanese -> English | |
javascript: (function () { | |
open('https://www.deepl.com/translator#ja/en/' + encodeURIComponent(window.getSelection()) + '', '_blank'); |
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
/* 4K環境に合わせる */ | |
body { | |
overflow: hidden; | |
white-space: nowrap; | |
transform-origin: top left; | |
transform: scale(1.5); /* サイズ調整は、OBS側で拡大縮小せずここで調整する */ | |
} | |
/* ソーシャルディスタンス */ | |
li { |
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
/* チャット欄自体を大きく */ | |
.chat-container { | |
font-family: "Noto Sans JP"!important; | |
border-radius: none!important; | |
height: 1000px!important; | |
width: 1900px!important; | |
overflow: hidden; | |
} | |
.chat-container .messages { | |
height: 100%!important; |
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
#190823 | |
#設定 | |
$Settings = | |
@{ | |
#インデックスファイルの場所 | |
JsonPath = "$env:AppData\.minecraft\assets\indexes\1.14.json" | |
#オブジェクトファイルのルートディレクトリ | |
ObjectsPath = "$env:AppData\.minecraft\assets\objects" |
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
javascript: ( | |
function () { | |
var t = prompt("twitter.com/search", ""); | |
if (t) open('https://twitter.com/search?q=' + encodeURIComponent(t) + '%20-from%3Ashibanyan_1%20filter%3Afollows&f=live&qf=off', '_blank'); | |
} | |
)(); |
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
javascript: ( | |
function () { | |
var url = document.getElementsByClassName('css-9pa8cd')[2].src; | |
window.open(url.replace(/format.+/, "format=jpg&name=orig")); | |
} | |
)(); |
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
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP"); | |
.voice-state { | |
background-image: linear-gradient(to left, rgba(204,204,204,0.01), rgba(204,204,204,0.3)); | |
padding: 16px 0 32px 16px; | |
} | |
.voice-container .voice-states .voice-state { | |
height: 64px; | |
} | |
.voice-container .voice-states .voice-state .avatar { | |
height: 64px; |
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
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP"); | |
/* Background colors*/ | |
body { | |
overflow: hidden; | |
background-color: rgba(0,0,0,0); | |
} | |
/* Transparent background.*/ | |
yt-live-chat-renderer { | |
background-color: transparent !important; |
NewerOlder