Speaker: Mike Walfish
Reccomended reading: http://www.eecs.harvard.edu/htk/phdadvice/
def convert_to_sentence_spacing(content) | |
content.gsub(/([.?!][)"]?) /, '\1 ') | |
end | |
Jekyll::Hooks.register :posts, :pre_render do | post | | |
if post["sentence_spacing"] then | |
post.content = convert_to_sentence_spacing(post.content) | |
end | |
end |
#!/usr/bin/env python3 | |
import sys | |
def elianchar(char): | |
chars = { | |
"a": "𠃍", | |
"b": "コ", | |
"c": "┘", | |
"d": "冂", |
Speaker: Mike Walfish
Reccomended reading: http://www.eecs.harvard.edu/htk/phdadvice/
# WeChat aud file converter to wav files | |
# Dependencies: | |
# SILK audio codec decoder (available at https://github.com/gaozehua/SILKCodec) | |
# ffmpeg | |
# | |
# By Gabriel B. Nunes ([email protected]) | |
# Adapted from another script by Nicodemo Gawronski ([email protected]) | |
# | |
import os, argparse, subprocess |