Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (71)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (9622)

  • JAAD exception "movie box at end of file"

    12 avril 2023, par B. Stackhouse

    I'm using JAAD (Java Advanced Audio Decoder) version 0.8.4, and m4a songs imported by the iTunes player from a CD play correctly. Any mp3 songs converted by ffmpeg to m4a results in an JAAD error during the following statement. I have seen this question before, but never any solution. What do I need to do ?

    


    for example :

    


    ffmpeg -i input.mp3 -vn -c:a aac -b:a 192k output.m4a  

final AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(songFile.toURI().toURL());

net.sourceforge.jaad.mp4.MP4Exception: movie box at end of file, need random access


    


  • avcodec/vlc : Attempt to free buf after use in ff_vlc_init_multi_from_lengths()

    13 septembre 2023, par Michael Niedermayer
    avcodec/vlc : Attempt to free buf after use in ff_vlc_init_multi_from_lengths()
    

    Fixes : use after free
    Fixes : 62153/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MAGICYUV_fuzzer-4702814909366272

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/vlc.c
  • List of free TCP ports in C++ without using bind() with port=0

    8 mai 2016, par userDtrm

    I need to create a set of dynamic ffmpeg instances that listens to a port that is available within a C++ program. The ffmpeg instances are created using a command identified as ffmpeg -i tcp://ip:port?listen ..., where the port number should be an available free port. Then ffmpeg command is executed using execv() within a c++ program.

    Therefore, I need to find a free port which is currently available without using bind() with port=0. As I understand, the bind() will bind the port when trying to check if the port is available.

    Please let me know if there is a way to implement this within C++.

    Thanks.