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
# Transcribe long videos via OpenAI Audio API in 1400s chunks | |
openai_transcribe() { | |
local USAGE | |
USAGE=$'%F{cyan}Usage:%f openai_transcribe <input_video> <output_text> [--model MODEL] [--chunk SECONDS] [--format text|srt|vtt|json]\n'\ | |
$'%F{cyan}Example:%f openai_transcribe "2025-09-19 11-04-11.mkv" meeting.txt --chunk 1400 --model gpt-4o-transcribe\n'\ | |
$'\nOptions:\n'\ | |
$' --model OpenAI model (default: gpt-4o-transcribe)\n'\ | |
$' --chunk Chunk length in seconds (default: 1400)\n'\ | |
$' --format response_format (text|srt|vtt|json; default: text)\n'\ | |
$'\nNotes:\n'\ |
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
#!/usr/bin/env node | |
const { exec } = require('child_process'); | |
// IPMI credentials and host | |
const ipmiHost = '192.168.86.214'; | |
const ipmiUser = 'ADMIN'; | |
const ipmiPass = 'ADMIN'; | |
// Variables to hold the average temperature and the flag for high temperature |
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
--- | |
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: satisfactory | |
labels: | |
istio-injection: enabled | |
--- | |
apiVersion: v1 | |
kind: PersistentVolume |