Skip to content

Instantly share code, notes, and snippets.

@Marcelektro
Created December 14, 2025 14:21
Show Gist options
  • Select an option

  • Save Marcelektro/8a4f3bdf155ef25e591b679bf63ec099 to your computer and use it in GitHub Desktop.

Select an option

Save Marcelektro/8a4f3bdf155ef25e591b679bf63ec099 to your computer and use it in GitHub Desktop.
Spanish Jorge voice tts file maker :D
#!/bin/bash
# idea: https://discord.com/channels/420877260447285259/553996465211572235/1449764195561115760
# time wasted by: Marcelektro ^_^
# if u end up using this script, comment below your funniest prompts ^_^
set -e
PROMPT="$1"
OUTPUT_DIR="funnyspanishguy"
if [ -z "${VAR}" ]; then
echo "Enter prompt as first param"
fi
OUTPUT_FILENAME=$(echo "$PROMPT" | sed 's/[^a-zA-Z0-9]/_/g')
mkdir -p "$OUTPUT_DIR"
ffmpeg \
-i "https://cache-a.oddcast.com/tts/genC.php?EID=2&LID=2&VID=6&TXT=$PROMPT&EXT=mp3&FNAME=&ACC=9066743&SceneID=2770625&HTTP_ERR=" \
"$OUTPUT_DIR/$OUTPUT_FILENAME.mp3"
# real potato vs fake potato :D
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment