Table of Contents
-
install voicemeeter banana
-
- uninstall asio4all driver
- plug device in while installing for it to work. If it is already plugged in the setup might time out.
-
Settings in Voicemeeter for having one virtual input for voice only and one for having both inputs
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
yt-dlp 'https://www.youtube.com/playlist?list=PLXkGLqXZchysA87AHg0fYOZTLEHBZsMuT' ` | |
-I 1:200 <# only download index 1 - 200 #> ` | |
-o "%(playlist_count+1-playlist_index)d - %(uploader)s - %(title)s.%(ext)s" <# name is "index (reverse) - uploader - title" #> ` | |
--embed-thumbnail <# needs atomicparsley to be installed #> ` | |
-S "abr:192" <# yt-dlp only!, best audio that has at max 192kbit/s #> ` | |
-f "ba" <# format with best audio #> ` | |
-x <# audio only #> ` | |
--audio-format mp3 <# needs ffmpeg installed #> ` | |
--download-archive ./archive.txt <# only download files that weren't already downloaded #> ` | |
--restrict-filenames <# only ascii characters in filename #> |
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
#SingleInstance, Force | |
SendMode Input | |
SetWorkingDir, %A_ScriptDir% | |
; icon file download | |
; https://mir.cr/N9HJXVGH | |
I_Icon = antiafk.ico | |
ICON [I_Icon] ;Changes a compiled script's icon (.exe) | |
if I_Icon <> |
make bookmark with following content
javascript: (function (s, url = 'https://www.deepl.com/translator#___/___/___') {
let valsRaw = s.split(" ");
let vals = [];
for (let i = 0; i < 2; i++) {
vals.push(valsRaw.shift());
}
vals.push("");
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
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\GOG.com] | |
"DefaultPackPath"="D:\\Games\\" |
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
# Split MP3/M4A/M4B files into 5 min parts | |
# Known Issues: | |
# recursive folders don't work. seperate files I also screwed up. Just give it 1 folder, or use _splitAll.ps1 for multiple folders. | |
# afterwards you can search in the folder with everything (https://www.voidtools.com/support/everything/) | |
# like this : "D:\!!Downloads\!audiobook\" !_ to find everything without an underscore (_) which should most likely only be the | |
# original files and delete them | |
# if windows refuses to execute the scripts try something like this in an admin powershell (Win+X A): | |
# Set-ExecutionPolicy Unrestricted | |
for ($i = 0; $i -lt $args.Count; $i++) { |
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
# path to mkvpropedit | |
$propedit = "mkvpropedit" | |
# path where files are | |
$path="D:\!USENET\!Anime\Hunter X Hunter (2011)" | |
#substring vals | |
$skipCharacters=14 | |
$saveCharacters=28 | |
#example: skip 14, save 28 |
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
version: "2.0" | |
services: | |
neko: | |
image: m1k1o/neko:latest | |
restart: always | |
shm_size: "1gb" | |
ports: | |
- "8080:8080" | |
- "59000-59100:59000-59100/udp" | |
environment: |