Recherche avancée

Médias (91)

Autres articles (12)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (3163)

  • Anomalie #4562 : Suite #4468 : Unification des CSS pour les boutons et les icônes

    6 octobre 2020, par RastaPopoulos ♥

    Mais tellement… enlever tous ces faux liens-boutons avec crochet horriblement laids…

    Par contre je me pose la question, si c’est vraiment pertinent de leur mettre "link". Les crochets c’était justement pour signifier que c’était des boutons et pas des liens, car il n’y avait justement pas à l’époque de classe "bouton" permettant de simuler l’apparence d’un bouton sur une balise de lien. Il s’agit d’un "départ d’action" : ajouter quelque chose. Donc je suis d’avis que ça devrait avoir l’apparence (et donc la sémantique visuelle) d’un bouton. Donc uniquement "mini" mais sans "link".

  • Evolution #4816 (Nouveau) : Déplacer la lib de menu déroulant dans le core

    8 juin 2021, par RastaPopoulos ♥

    Avec la refonte de l’interface, on a ajouté une lib de menu déroulant spécifiquement dans ce plugin. Mais en fait après coup on a aussi petit à petit amorcé un chantier de remplacement de jquery ui par des mini lib unitaires pour chaque besoin.

    Il faudrait avant la release déplacer cette lib dans le core, plutôt que juste dans SVP, afin que tous les autres plugins puissent aussi en profiter. (Et même le noyau hinhin : https://core.spip.net/issues/4766 )

  • Error in FFMPEG/LIBAV audio_decode example for aac decoding

    23 mai 2017, par Prashant Ravi

    I am trying to do aac decoding using the examples provided by FFMPEG/LIBAV. I modified the example as follows :-

    int main(int argc, char **argv)
    {
       .......
       /* find the MPEG audio decoder */
       codec = avcodec_find_decoder(AV_CODEC_ID_AAC);
       if (!codec) {
           fprintf(stderr, "codec not found\n");
           exit(1);
       }
       .......
       return 0;
    }

    I changed the decoder type to "AV_CODEC_ID_AAC" and recompiled the examples.

    Once I ran the example for decode audio with an example aac audio file but I am getting the following

    prashantravi@mini:/media/sf_Shared/libav/doc/examples$ ./decode_audio ../../../example.aac ../../../out.wav
    Error submitting the packet to the decoder
    err code :-1052488119

    I tried looking up the error code but it dosent match with any of the existing error codes at all.