Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (62)

Sur d’autres sites (8255)

  • Anomalie #2212 (Nouveau) : boutons d’admin : dépendance dans le mauvais sens !

    9 août 2011, par Julien -

    Dans squelettes-dist/formulaires/administration.html, on peut voir une référence à brève : [ ((#ENVid_breve))] C’est l’extension "breves" qui devrait se brancher ici et pas l’inverse. => pipeline manquant. ((Et cela empêche d’avoir un bouton d’admin sur un nouvel objet éditorial, sauf fork de (...)

  • Anomalie #3495 : Il manque peut-être un accent à icône

    3 juillet 2015

    wikipedia préfère icône
    https://fr.wikipedia.org/wiki/Ic%C3%B4ne

    je serais pour laisser le chapeau pour éviter la confusion avec l’anglais

  • librosa can't load wav file in aws lambda docker

    30 novembre 2022, par Luka Savic

    I have an AWS Lambda function created using Docker.
I have librosa installed, ffmpeg installed using the solution from this question : install ffmpeg on amazon ecr linux python

    


    I checked in a Lambda function with os.system("ffmpeg -version") and I managed to get valid output, stating different versions and parts of ffmpeg.

    


    Problem is that when I do librosa.load(wav_file) it gives the following error :

    


    /your/path/.venv/lib/python3.9/site-packages/librosa/util/decorators.py:88: UserWarning: PySoundFile failed. Trying audioread instead.
  return f(*args, **kwargs) 


    


    From what I've read, librosa should natively support .wav files, even without ffmpeg, and even though I have ffmpeg installed, it doesn't work.

    


    One more information, .wav file was downloaded, player, and loaded with librosa on my local PC without any problems. I tried also on different wav and mp3 files, and the problems were still there.