mp4_to_wav_safe | R Documentation |
Extract WAV from MP4
mp4_to_wav_safe(...)
.input |
(chr) mp4 input's path |
.output |
(chr) wav output's path |
p |
a progressor (optional) |
Wav .output path
## Not run: library(progressr) good_video_path <- "path/to/good_video.mp4" with_progress({ good_res <- mp4_to_wav_safe(good_video_path) }) good_res good_res[["result"]] good_res[["error"]] bad_video_path <- "path/to/bad_video.mp4" with_progress({ bad_res <- mp4_to_wav_safe(bad_video_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.