Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (5857)

  • encode x264(libx264) raw yuv frame data

    26 juin 2015, par Mohamed El-Sayed

    I am trying to encode an MP4 video using raw YUV frames data, but I am not sure how can I fill the plane data (preferably without using other libraries like ffmpeg)

    The frame data is already encoded in I420, and does not need conversion.

    Here is what I am trying to do :

    const char *frameData = /* Raw frame data */;

    x264_t *encoder = x264_encoder_open(&param);
    x264_picture_t imgInput, imgOutput;
    x264_picture_alloc(&imgInput, X264_CSP_I420, width, height);

    // how can I fill the struct data of imgInput

    x264_nal_t *nals;
    int i_nals;
    int frameSize = x264_encoder_encode(encoder, &nals, &i_nals, &imgInput, &imgOutput);

    The equivalent command line that I have found is :

    x264 --output video.mp4 --fps 15 --input-res 1280x800 imgdata_01.raw

    But I could not figure out how the app does it.

    Thanks.

  • movenc : Don’t write any tfdt atom for ismv files

    30 octobre 2014, par Martin Storsjö
    movenc : Don’t write any tfdt atom for ismv files
    

    The tfdt atom shouldn’t be needed in those cases, we already
    write tfxd atoms for ismv anyway, which is roughly equivalent.

    This avoids having to declare the iso6 brand for ismv files.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/movenc.c
  • movenc : Don’t write any tfdt atom for ismv files

    30 octobre 2014, par Martin Storsjö
    movenc : Don’t write any tfdt atom for ismv files
    

    The tfdt atom shouldn’t be needed in those cases, we already
    write tfxd atoms for ismv anyway, which is roughly equivalent.

    This avoids having to declare the iso6 brand for ismv files.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/movenc.c