wav_to_txt_safe | R Documentation |
Extract TXT from WAV
wav_to_txt_safe(...)
.input |
(chr) wav input's path |
.output |
(chr) txt output's path |
p |
a progressor (optional) |
txt .output path
## Not run: library(progressr) good_audio_path <- "path/to/good_audio.wav" with_progress({ good_res <- wav_to_txt_safe(good_audio_path) }) good_res good_res[["result"]] good_res[["error"]] bad_audio_path <- "path/to/bad_audio.mp4" with_progress({ bad_res <- wav_to_txt_safe(bad_audio_path) }) bad_res bad_res[["result"]] bad_res[["error"]] ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.