Description Usage Arguments Details Value
audio information via sox or ffmpeg
1 2 | audio_info(filein, pathtosox = getOption("avutils_sox"),
pathtoffmpeg = getOption("avutils_ffmpeg"), use_sox = TRUE)
|
filein |
character, path to audio files |
pathtosox |
character, path to sox binary |
pathtoffmpeg |
character, path to ffmepg binary |
use_sox |
logical, should |
Getting information about audio files is possible both via sox
and ffmpeg
. The advantage of sox
is that it provides more detailed information, but does not by default work with some file types (e.g. mp3). ffmpeg
on the other seems to work with more file types, but returns less detailed information. If you use the default option (i.e. use_sox = TRUE
) and see missing information in the output it might be a good idea to try via ffmpeg
, i.e. use_sox = FALSE
.
a data.frame
with features of audio files
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.