Recherche avancée

Médias (91)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (14414)

  • doc/fftools-common-opts : document -help long and full output

    17 septembre 2013, par Stefano Sabatini
    doc/fftools-common-opts : document -help long and full output
    
    • [DH] doc/fftools-common-opts.texi
  • doc/fftools-common-opts : update/extend documentation for -opencl_bench option

    27 janvier 2015, par Maneesh Gupta
    doc/fftools-common-opts : update/extend documentation for -opencl_bench option
    

    Signed-off-by : Stefano Sabatini <stefasab@gmail.com>

    • [DH] doc/fftools-common-opts.texi
  • How to calculate padding of linesize ?

    18 décembre 2020, par Michael

    I am a newbie studying ffmpeg, and I found too few updated doc on the internet.

    &#xA;

    When I writing this :

    &#xA;

    av_image_fill_arrays(frame2->data, frame2->linesize, (const uint8_t *)NULL,&#xA;                                         frame->format, screenWidth, screenHeight,&#xA;                                         32);&#xA;sws_scale(videoScaleCtx, (const uint8_t **) frame->data,&#xA;                                      frame->linesize, 0,&#xA;                                      frame->height,&#xA;                                      dst, frame2->linesize);&#xA;

    &#xA;

    It will simply display a black screen on bottom with 4 same small screen playing same time on top. I understand its padding mess with me, even though I get screen width with 2280, which shouldn't use padding since I have 32 bits cpu(frame2->linesize is 2304) ?

    &#xA;

    Anyway, I desperately use this before scaling :

    &#xA;

    frame2->linesize[0] *= 4;&#xA;&#xA;

    &#xA;

    And this time everything looks normal ! By right the padding is 4 times now which is not right ?

    &#xA;

    Although sws_scale did two things : scale the pic and transform YUV420P to RGBA, but since the output pic shouldn't have padding, the des stride should simply be screen width * 4 = 9120, but now is 72 * 4 * 32 = 9216, how come ?

    &#xA;