| exiftool | R Documentation |
Run ExifTool with a given set of options and files. This is used by
read.MusicMetadata.
exiftool(options = NULL, file = NULL)
options |
character vector. The options to be provided to ExifTool. |
file |
character vector. The filenames to be provided to ExifTool. |
Tilde-expansion is first done on file.
file may contain any number of files, directories, or patterns to read,
see section Examples.
A character vector; the result of calling ExifTool.
## Not run:
exiftool(file = c(
"Music/input", # read all files in Music/input directory
"dirtyphonics_ivory_bastille.m4a", # read an individual file
"camellia_*" # read all files that match this glob pattern
))
exiftool(
options = c(
"-extension", "m4a", # process files with m4a extension
"-extension", "mp3" # process files with mp3 extension
),
file = "Music/input" # read all m4a/mp3 files in Music/input directory
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.