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
#!/bin/sh | |
# === PPTX Audio === | |
# Extract audio from every Powerpoint file in a folder, and concatenates into one file. | |
# Requires `ffmpeg` to be installed. | |
# See config below for directories configuration. | |
# Only compatible with `m4a` MPEG format for output, as that is what Powerpoint uses | |
# Biggest speed loss is using the `unzip` command | |
# =============== CONFIG ================= |
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
; List of many IPA characters | |
allChars := ["aɑæɐ", "bβɓʙᵝ", "cçɕ", "dðɖɗ", "eəɚɵɘᵊ", "3ɛɜɝɞ", "fʩ", "gɠɢʛɡ", "hħɦɥɧʜʰʱ", "iɪɨ", "jʝɟʄʲ", "lɫɭɬʟɮʪʫꞎˡ", "mɱ", "nŋɲɳɴⁿ", "oɔœɒɶø", "pɸ", "rɾɹʁʀɻɽɺʳʶ", "sʃʂ", "tθʈᵗ", "uʊʉ", "vʌʋⱱ", "wɯʍɰʬʷ", "xχ", "yɣʎʏɤˠ", "zʒʐʑ", "?ʔʕʡʢˤˀ", "|ǀǁǃǂ", "0ʘ", "'ˈˌʼ", ">→←↘↗↓↑͢ꜜꜛ▲", "(͡", ")͜", "=⁼", "/˩˨˧˦˥", ".·", "[ʭ", "8ↀ", "*̆̚", "~̃", ":ː̈", ",̩̯"] | |
; CTRL+Insert | |
^Insert:: | |
; Copy character | |
prevClipboard := Clipboard ; Save clipboard | |
Clipboard := ; Clear clipboard | |
SendInput {ShiftDown}{Left}{ShiftUp}^c{Right} ; Copy previous character | |
ClipWait ; Wait for clipboard to register |