question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Working with the VoxCeleb2 Dataset which encodes audio in the m4a format I’ve not been able to use the library to load the files.

formats: no handler for file extension `m4a'
Segmentation fault (core dumped)

I tried using ffpemg to convert to a aac file ffmpeg -i in.m4a -c:a copy out.aac and got the same error

formats: no handler for file extension `aac'
Segmentation fault (core dumped)

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Comments:6 (2 by maintainers)

github_iconTop GitHub Comments

3reactions
mogwaicommented, May 16, 2019

A script to do this for all files in the directory recursively

#!/bin/bash
  
for i in $(find . -type f); do
    ext="${i##*.}"
    if [[ $ext = m4a ]]
    then
        p=${i%".m4a"}
        echo $i 
        ffmpeg -v 0  -i $i $p'.wav' </dev/null > /dev/null 2>&1 &
    fi
done
1reaction
hagenwcommented, May 16, 2019

At the moment you need to convert them to WAV, e.g.

ffmpeg -i in.m4a out.wav
Read more comments on GitHub >

github_iconTop Results From Across the Web

M4A File (What It Is and How to Open One) - Lifewire
How to Open an M4A File. Lots of programs support playback, including VLC, iTunes, QuickTime, Windows Media Player (v11 requires the K-Lite ...
Read more >
M4A File: What a .m4a is and How to Open it - Roxio
It is the standard for delivering music tracks and other audio content from Apple iTunes Store, this audio container is supported by all...
Read more >
M4A File Extension - What is an .m4a file and how do I open it?
MPEG-4 is a multimedia container format that supports video, audio, subtitle, and image data encoded in different codecs. MPEG-4 files that ...
Read more >
What Is .M4a File and How to Play It? - Wondershare Recoverit
As this format supports audio data and on minimal devices, you might face trouble and think about playing an M4A file? But just...
Read more >
Music files with the .M4A extension cannot be played using Hi ...
M4A extension, the music file cannot be played as Hi-Res Audio Player does not support AAC file format. A music file with the...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found