Learn R Programming

torchaudio (version 0.2.2)

torchaudio_loader: Load Audio File

Description

Loads an audio file from disk using the default loader (getOption("torchaudio.loader")).

Usage

torchaudio_loader(
  filepath,
  offset = 0L,
  duration = 0L,
  unit = c("samples", "time")
)

Arguments

filepath

(str): Path to audio file

offset

(int): Number of frames (or seconds) from the start of the file to begin data loading. (Default: 0)

duration

(int): Number of frames (or seconds) to load. 0 to load everything after the offset. (Default: 0)

unit

(str): "sample" or "time". If "sample" duration and offset will be interpreted as frames, and as seconds otherwise.