Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (74)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

Sur d’autres sites (13369)

  • How to access YUV planes from ratecontrol in x264 encoder

    31 décembre 2018, par shuch

    I need to get access to the YUV planes in x264 encoder on the encoding stage. I understand how to do it on the input stage (in raw.c), but I don’t succeed to do it in encoder.c or ratecontrol.c.

    Thanks

  • ffmpeg - Access elements of AVCodecContext

    9 avril 2018, par Hamed

    I want to access some members of my AVCodecContext *av_ctx in my program. It is fine when I compile it in 32bit version, But when I change it to 64bit this elements act like they been shifted.

    For example, I want to get av_ctx->coded_width and av_ctx->coded_height (sometimes they are different from av_ctx->width and av_ctx->height) and store them in some variables. Now when I debug this program in 32bit version it’s Ok, but in 64bit version this values are wrong and when I check my structure I can see the next two elements (av_ctx->gop_size and av_ctx->pix_fmt) has the values that I want.

    I checked AVCodecContext declaration on avcodec.h and it (in comments above structure declaration) says :

    Please use AVOptions (av_opt* / av_set/get*()) to access these fields from user applications.

    I think this might be the right way to get these elements but I don’t know what is this AVOptions, I searched it but couldn’t find what is it exactly and how can I use it.

  • h264_redundant_pps : Fix looping over an access unit's units

    20 juin 2019, par Andreas Rheinhardt
    h264_redundant_pps : Fix looping over an access unit's units
    

    When looping over an access unit's units in positive direction and
    deleting some of them, one needs to make sure that a unit that is at
    the position of a unit that just got deleted gets checked, too.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/h264_redundant_pps_bsf.c