Table of Contents
Just use https://github.com/Taxel/PlexTraktSync instead
- SSH into server and
cd
into the Plex Plug-Ins directory for me that was/storage/.appdata/plex/Library/Application Support/Plex Media Server/Plug-ins
git clone https://github.com/Cornishman/Plex-Trakt-Scrobbler.git
mv Plex-Trakt-Scrobbler/Trakttv.bundle/ .
rm -rdf Plex-Trakt-Scrobbler
- now restart plex
-
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 <> |
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
{ | |
"Author": "cassandra308", | |
"Name": "Where am I again?", | |
"InternalName": "WhereAmIAgain", | |
"AssemblyVersion": "0.0.0.3", | |
"Description": "Shows what zone/region/territory you are in up in the corner next to the server and time info. Open config with /waia. Does not play nicely with Orchestrion Plugin when the 'Show current song in the server info UI element in-game' is enabled, since it uses the same element.", | |
"ApplicableVersion": "any", | |
"RepoUrl": "https://github.com/cassandra308/WhereAmIAgain", | |
"Tags": [ | |
"Area", |
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 os | |
import time | |
import requests | |
from bs4 import BeautifulSoup as bs | |
import subprocess | |
def jaNein(what): | |
if what == "Ja": | |
return True |