Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (59)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (7487)

  • lavf/http.c : Free allocated client URLContext in case of error.

    12 janvier 2018, par Stephan Holljes
    lavf/http.c : Free allocated client URLContext in case of error.
    

    Signed-off-by : Stephan Holljes <klaxa1337@googlemail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/http.c
  • Encode video using ffmpeg and vp8 codec on Native Client

    28 octobre 2015, par Victor Canezin de Oliveira

    I’m trying to develop a video encoder using Native Client.
    I want the output file to be .webm and I’m using ffmpeg example "muxing.c".

    When I run the example I get the error message : Could not find encoder for ’vp8’

    The error comes from here :

    *codec = avcodec_find_encoder(codec_id);
    if (!(*codec)) {
       fprintf(stderr, "Could not find encoder for '%s'\n",
               avcodec_get_name(codec_id));
    }

    Where codec_id value is AV_CODEC_ID_VP8

    When I put the output file to be .mp4 it works.

    Can someone help me.
    Do I need to enable vp8 encoder for ffmpeg naclport ?
    What should I do ?

    Thanks !!

    UPDATE

    @Lee Gi Gone :

    Yes. you must need to compile ffmpeg with libvpx library to encode
    vp8/vp9. you can install it via yum, apt. or you can compile it
    manually.

    Once libvpx is installed, install ffmpeg with libvpx in following
    command :

    ./configure --enable-libvpx
    make -j 4
    make install

    I put the dependency for libvpx on build.sh and pkg_info on ffmpeg naclport and built it again. Now it works !

  • Should a long Running video processing task to be done client side or server side

    27 avril 2021, par Ritwiz Sinha

    I was creating an application in react for uploading video and using a REST API to send that to the server and store in S3. I also wanted the simple audio version of the video for some other tasks and I am confused as to what might be the better way :

    &#xA;

      &#xA;
    1. Creating audio file on the fly when it is needed using node-ffmpeg package and not store it anywhere
    2. &#xA;

    3. Start converting the video file to audio on the browser client only, and posting that to the server for storage along with the video.
    4. &#xA;

    5. Just post the video to the server and use queue system for creating a new task for video conversion to audio and then save that to the S3 storage.&#xA;The second method seems to be saving some compute power on the server but it might be a problem if the video upload completes, audio conversion is still going on and the client disconnects.&#xA;Would appreciate some help, thanks.
    6. &#xA;

    &#xA;