torchaudio_load: Load Audio File

View source: R/backend-common.R

torchaudio_loadR Documentation

Load Audio File

Description

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

Usage

torchaudio_load(
  filepath,
  offset = 0L,
  duration = -1L,
  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. -1 to load everything after the offset. (Default: -1)

unit

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


torchaudio documentation built on Feb. 16, 2023, 9:41 p.m.