This file contains 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 | |
sudo steamos-readonly disable | |
sudo pacman-key --init | |
sudo pacman-key --populate archlinux | |
#sudo pacman-key --refresh-keys | |
# install docker package | |
echo -e "\rInstalling Docker..." |
This file contains 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
# ============================================================ | |
# Shows currently playing Song over OSC using Whispering Tiger | |
# Version 1.0.5 | |
# See https://github.com/Sharrnah/whispering | |
# ============================================================ | |
import datetime | |
import Plugins | |
import VRC_OSCLib |
This file contains 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
# ============================================================ | |
# Adds Large Language Model support to Whispering Tiger | |
# answers to questions using speech to text or if using the TTS send event | |
# V1.0.0 | |
# | |
# See https://github.com/Sharrnah/whispering | |
# ============================================================ | |
import Plugins |
This file contains 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
# ============================================================ | |
# Elevenlabs TTS plugin for Whispering Tiger | |
# V1.0.11 | |
# | |
# See https://github.com/Sharrnah/whispering-ui | |
# Uses the TTS engine from https://www.elevenlabs.com/ | |
# ============================================================ | |
import base64 | |
import io | |
import json |
This file contains 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
# ============================================================ | |
# Sends volume and audio direction over OSC using Whispering Tiger | |
# Version 1.0.2 | |
# | |
# See https://github.com/Sharrnah/whispering | |
# Inspired by https://github.com/Codel1417/VRC-OSC-Audio-Reaction | |
# ============================================================ | |
import Plugins |
This file contains 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
# ============================================================ | |
# Plugin to listen for commands to send OSC messages using Whispering Tiger | |
# Used to Control Avatar Parameters in VRChat | |
# Version: 1.1.2 | |
# See https://github.com/Sharrnah/whispering | |
# ============================================================ | |
import math | |
import pickle | |
import socket |
This file contains 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
# ============================================================ | |
# prediction of text emotion plugin for Whispering Tiger | |
# Version 1.0.4 | |
# See https://github.com/Sharrnah/whispering | |
# ============================================================ | |
import json | |
import threading | |
import Plugins |
This file contains 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
# ============================================================ | |
# Voicevox Text to Speech Plugin for Whispering Tiger | |
# V1.2.5 | |
# See https://github.com/Sharrnah/whispering | |
# ============================================================ | |
# | |
import asyncio | |
import base64 | |
import json | |
import sys |
This file contains 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
# ============================================================ | |
# Subtitles Display Plugin for Whispering Tiger | |
# V1.0.8 | |
# See https://github.com/Sharrnah/whispering-ui | |
# ============================================================ | |
# | |
import Plugins | |
import tkinter as tk | |
import threading | |
import queue |
This file contains 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
# ============================================================ | |
# Keyboard Typing Plugin for Whispering Tiger | |
# V1.0.5 | |
# See https://github.com/Sharrnah/whispering | |
# ============================================================ | |
# | |
import threading | |
import time | |
import Plugins |
OlderNewer