Recherche avancée

Médias (0)

Mot : - Tags -/configuration

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

Autres articles (42)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (7028)

  • How to integrate and use FFmpeg library in iOS with Xcode ?

    23 mars 2019, par Akshaykumar Maldhure

    I wanted to use FFMpeg library for video processing activities, from 2 days I m working on compiling and integrating this library with Xcode 8 and Swift. I tried following links but with no success. Can anyone please help me how to achieve this ?

    FFMPEG integration on iphone/ ipad project

    https://github.com/chrisballinger/FFmpeg-iOS

    http://witcheryne.iteye.com/blog/1734706

    How to Build FFMpeg as iOS Framework

    https://github.com/ElfSundae/FFmpeg-iOS-build

    https://github.com/kolyvan/kxmovie

  • x264 Encoding use x264_picture_clean crash

    5 mai 2017, par Wong Sam

    When I use iphone encoding CMSampleBufferRef To H264, it offen crash at x264_picture_clean I dont’t know how to deal it

    enter image description here

    x264_picture_t* pPic_in;

    here is my init about pPic_in

    pPic_in = (x264_picture_t*)malloc(sizeof(x264_picture_t));
    pPic_out = (x264_picture_t*)malloc(sizeof(x264_picture_t));

    x264_picture_init(pPic_out);

    x264_picture_init(pPic_in);
    x264_picture_alloc(pPic_in, csp, pParam->i_width, pParam->i_height);

    pPic_in->img.i_stride[0] = width;
    pPic_in->img.i_stride[1] = width / 2;
    pPic_in->img.i_stride[2] = width / 2;
    pPic_in->img.i_plane = 3;

    and i set data here

       picture_buf = yuv420_data;
       pPic_in->img.plane[0] = picture_buf;
       pPic_in->img.plane[1] = picture_buf + y_size;
       pPic_in->img.plane[2] = picture_buf + y_size*5/4;

    it looks well , when i run it on my iphone,but sometimes it will crash at

    x264_picture_clean

    here is more detail abuot pPic_in when crash occer
    enter image description here

    Thank u very much

  • x264 Encoding use x264_picture_clean crash

    5 mai 2017, par Wong Sam

    When I use iphone encoding CMSampleBufferRef To H264, it offen crash at x264_picture_clean I dont’t know how to deal it

    enter image description here

    x264_picture_t* pPic_in;

    here is my init about pPic_in

    pPic_in = (x264_picture_t*)malloc(sizeof(x264_picture_t));
    pPic_out = (x264_picture_t*)malloc(sizeof(x264_picture_t));

    x264_picture_init(pPic_out);

    x264_picture_init(pPic_in);
    x264_picture_alloc(pPic_in, csp, pParam->i_width, pParam->i_height);

    pPic_in->img.i_stride[0] = width;
    pPic_in->img.i_stride[1] = width / 2;
    pPic_in->img.i_stride[2] = width / 2;
    pPic_in->img.i_plane = 3;

    and i set data here

       picture_buf = yuv420_data;
       pPic_in->img.plane[0] = picture_buf;
       pPic_in->img.plane[1] = picture_buf + y_size;
       pPic_in->img.plane[2] = picture_buf + y_size*5/4;

    it looks well , when i run it on my iphone,but sometimes it will crash at

    x264_picture_clean

    here is more detail abuot pPic_in when crash occer
    enter image description here

    Thank u very much