Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (51)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • 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

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (7971)

  • 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.

  • How to build a daemon to encode video files on S3 ?

    4 avril 2013, par Yuval Cohen

    I am interested in running a daemon to go over user uploaded video files and encode them in an optimal format (and add some watermarks).

    I was considering services such as Zencoder, Encoding.com, Amazon's encoding service but some lack overlaying capabilities and some are just too expensive for our (big) volumes.

    I want to build a daemon that encodes videos that are located on S3 once users upload them.

    The solution I thought of would be Python Heroku servers using Celery for a task queue to keep track of the encoded files and ffmpeg to do the actual work. However, I ran into troubles compiling ffmpeg for Heroku (with libass support, so the basic ffmpeg bins aren't enough).

    What approach/technology stack would you consider for this mini-project ?

    Thanks !
    Yuval