R crashes when using for-loop with tuneR package to get length of audiofiles

685 Views Asked by At

First question here, hope I did asking part right.

I'm trying to write a short piece of R code that will create a vector with lenghts of all of audiofiles in my 'Music' folder. I'm using RStudio 0.98.501 with R 3.0.3 on i686-pc-linux-gnu (32-bit). I use tuneR package to extract info about lengths of the songs. Here's a problem: I export first MP3 file fine, but when I do it to the second MP3, it gives me 'R Session aborted, R encountered a fatal error, the session will be terminated'.

I'm working on Intel® Atom™ CPU N2800 @ 1.86GHz × 4 with 2 Gb memory with Ubuntu 13.10.

I put my code below, just change the directory for the one where your Music folder is.

    library(tuneR)
    # Set your working directory here
    ddpath <-  "/home/daniel/"
    wdpath  <- ddpath
    setwd(wdpath)
    # Create a character vector with all filenames
    filenames <- list.files("Music", pattern="*.mp3",
                            full.names=TRUE, recursive=TRUE)
    # How many audio files do we have?
    numTracks <- length(filenames)
    # Vector to store lengths
    lengthVector <- numeric(0)

    # Here problem arises
    for (i in 1:numTracks){
      numWave <- readMP3(filenames[i])
      lengthSec <- length(numWave@left)/[email protected]
      lengthVector <- c(lengthVector, lengthSec)
      rm(numWave)
    }
0

There are 0 best solutions below