Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (110)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • 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

  • Les images

    15 mai 2013

Sur d’autres sites (8352)

  • 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

  • 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