Storytime preparedness with av

[This article was first published on Maëlle's R blog on Maëlle Salmon's personal website, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

My kids got a cool electronic storyteller as a gift. It is basically a pretty cube that you shake to make it play tracks. La conteuse merveilleuse comes with pre-loaded songs and stories, but you can also add your own. Very handy, as we had e.g. CDs that came with magazines. According to the anti-manual1, to add a mp3 or wav file you own, you first need to convert it to the storyteller’s expected format by using the company’s online converter, la moulinette (the mill). In this post I shall explain how I, a cool anti-mom, used R, in particular the av package, instead.

Official guidance on how to convert audio files on the Conteuse merveilleuse

The storyteller can be plugged into a computer like an USB key, using its specific red cable. The interface of the storyteller is the file system, which is rather intuitive to me. There is a folder for each face of the cube. When you shake the cube three times with e.g. the lion face facing upwards, it plays a random track from the LION folder.

As a side note, something that’s fascinating to me is that the settings of the cube, like the maximal volume, are to be tweaked via a text file called settings.txt! Not even reglages.txt! Furthermore, your storyteller’s ID (needed to register the device on the company’s website) is stored as a text filename.

You can buy new tracks from the company’s website, record your own tracks in their studio, and upload your local stories to the website for then getting them as compatible mp3. You are limited to 5 conversions a day, of files up to 100Mb. I had some connection issues and couldn’t even get a few conversions, and besides, some of the tracks (from our local kid theater, unsurprisingly currently closed) I wanted to use were a bit bigger than 100Mb.

Using R instead

When reading the FAQ on the website, sadly not linkable as it’s in the website section where you’re logged in, I saw a sentence describing the mp3 formats for “geeks”: mono, 64 kbps, 16 khz, constant bitrate. Maybe I felt targeted by the word geek, in any case seeing this made me realize I could probably use other tools to convert tracks. I remembered about Jeroen Ooms’ av package, and decided to read its docs, in particular of av::av_audio_convert().

Now, I still had no clear idea what all the numbers in the format description meant, but I realized av has a function very similar to magick::image_info(): av::av_media_info()!

I used it on a track pre-loaded on the cube.

# I did not add the space character
av::av_media_info("/media/maelle/JOYEUSE-AD/FR/NUAGE/Je respire.mp3")

#> $duration
#> [1] 426.564
#> 
#> $video
#> NULL
#> 
#> $audio
#>   channels sample_rate    codec frames bitrate layout
#> 1        1       16000 mp3float     NA   64000   mono

This helped me see the parameter values of av::av_audio_convert() I needed to use: channels = 1 and sample_rate = 16000. I did not tweak the bitrate, I didn’t see how, and anyway my tracks had a lower bit rate (so lower quality) than the company’s ones.

After the conversion I’ll describe later, here’s the info I got about new tracks.

av::av_media_info("/media/maelle/JOYEUSE-AD/FR/LION/choum.mp3")

#> $duration
#> [1] 265.356
#> 
#> $video
#> NULL
#> 
#> $audio
#>   channels sample_rate    codec frames bitrate layout
#> 1        1       16000 mp3float     NA   24000   mono

av::av_media_info("/media/maelle/JOYEUSE-AD/FR/ROUGE/leila.mp3")

#> $duration
#> [1] 762.984
#> 
#> $video
#> NULL
#> 
#> $audio
#>   channels sample_rate    codec frames bitrate layout
#> 1        1       16000 mp3float     NA   24000   mono

No need to tell av what format to use as the output filename extension gives it away.

I wrote two conversions functions

  • One for tracks coming with a magazine, to crop out the intro song. This was crucial for user-friendliness of the cube as the title of the story comes after the 41 seconds (admittedly very cute) intro song which is a long time without knowing whether you want to listen or shake again to get another random track.
convert_belles <- function(audio_path) {
  av::av_audio_convert(
    audio = audio_path,
    output = file.path("output", basename(audio_path)),
    channels = 1,
    start_time = 41,
    sample_rate = 16000
  )
}
  • One for other tracks needing no cropping, but including some “wav” files.
convert_autres <- function(audio_path) {
  av::av_audio_convert(
    audio = audio_path,
    output = file.path("output", gsub("wav", "mp3", basename(audio_path))),
    channels = 1,
    sample_rate = 16000
  )
}

I could have written a single function instead with one more parameter. ????

To apply the functions

  • I put the tracks in two folders (by hand).
  • For each folder I used fs and purrr.
to_convert <- fs::dir_ls("input/belles-h")

convert_belles <- function(audio_path) {
  av::av_audio_convert(
    audio = audio_path,
    output = file.path("output", basename(audio_path)),
    channels = 1,
    start_time = 41,
    sample_rate = 16000
  )
}

purrr::walk(
  to_convert,
  convert_belles
)

After that I manually copy-pasted output tracks to the face folders of the cube. Now the tracks corresponding to theater stories are all in the ROUGE face for instance.

In reality I started by converting one track, then put it in a face folder of the cube and tried playing it.

Conclusion

In this post I presented my small script converting mp3 and wav tracks to mp3 compatible with my offspring’s storyteller. To me these were a few empowering lines of utility code. I think it exemplifies the usefulness of av for audio manipulation. Now, maybe I’ll go record some tale about R to put on my kids’ cube…


  1. Apparently when you’re a cool new startup you don’t call your docs a manual! ↩︎

To leave a comment for the author, please follow the link and comment on their blog: Maëlle's R blog on Maëlle Salmon's personal website.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)