SYMBOL INDEX (27 symbols across 5 files) FILE: cmd/fetch_audio.go function SplitStr (line 15) | func SplitStr(longString string, maxLen int) []string { function genOutput (line 29) | func genOutput(inPath, outPath, voiceType string) { function init (line 61) | func init() { FILE: main.go function main (line 8) | func main() { FILE: utils/constants.go constant FLAG_INPUT (line 5) | FLAG_INPUT = "input" constant FLAG_INPUT_DESC (line 6) | FLAG_INPUT_DESC = "Provide path to pdf file" constant FLAG_OUTPUT (line 7) | FLAG_OUTPUT = "output" constant FLAG_OUTPUT_DESC (line 8) | FLAG_OUTPUT_DESC = "Provide path to output directory" constant DEFAULT_PDF_PATH (line 9) | DEFAULT_PDF_PATH = "./sample_pdf/test.pdf" constant DEFAULT_OUTPUT_PATH (line 10) | DEFAULT_OUTPUT_PATH = "audio-go/output" constant OUTPUT_FILE1 (line 11) | OUTPUT_FILE1 = "outputAudio.wav" constant OUTPUT_FILE2 (line 12) | OUTPUT_FILE2 = "lol.wav" constant VOICE_KEY (line 13) | VOICE_KEY = "voice" constant TEXT_KEY (line 14) | TEXT_KEY = "text" constant DEFAULT_VOICE (line 15) | DEFAULT_VOICE = "nanotts:en-GB" constant MALE_SET_VOICE (line 16) | MALE_SET_VOICE = "espeak:en" constant DEFAULT_SERVER_URL (line 17) | DEFAULT_SERVER_URL = "http://localhost:5500/api/tts?" constant FLAG_VOICE (line 18) | FLAG_VOICE = "voice" constant FLAG_VOICE_DESC (line 19) | FLAG_VOICE_DESC = "The voice type - male or female ? (for converted ... constant MALE_VOICE (line 20) | MALE_VOICE = "male" constant FEMALE_VOICE (line 21) | FEMALE_VOICE = "female" FILE: utils/err-utils.go function PanicErr (line 7) | func PanicErr(err error) { function FatalErr (line 14) | func FatalErr(err error) { function LogErr (line 21) | func LogErr(err error) { FILE: utils/util-methods.go function ReadPdf (line 17) | func ReadPdf(filePath string) (string, error) { function getVoice (line 45) | func getVoice(voiceType string) string { function GenAudio (line 53) | func GenAudio(content, voiceType, outPath string, i int, wg *sync.WaitGr...