Recherche avancée

Médias (0)

Mot : - Tags -/masques

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

Autres articles (53)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (7116)

  • FFMPEG : overlay image on video and retain size

    7 avril 2019, par HB.

    I’m trying to overlay an image (transparent background with shape in the middle) "on top" of the video and get the image back. The image size is bigger then the video. Here is the command that I’m using :

    "-i", video.mp4, "-i", image.mp4, "-filter_complex", "[1:v][0:v]scale2ref=iw:ih[ovr][base];[ovr]colorchannelmixer=aa=1.0[ovrl];[base][ovrl]overlay[v]", "-map", "[v]", "-q:v", "2", directoryToStore + "/" + ImageName + ".jpeg"

    The above scales the image to the size of the video.

    I want the image and the video to retain their size and output an image of the 2 overlaid.

    Can someone please give me advice on how I can do this ?

  • avformat/mov : Fix extended atom size buffer length check

    18 mars 2021, par Derek Buitenhuis
    avformat/mov : Fix extended atom size buffer length check
    

    When extended atom size support was added to probing in
    fec4a2d232d7ebf6d1084fb568d4d84844f25abc, the buffer
    size check was backwards, but probing continued to work
    because there was no minimum size check yet, so despite
    size being 1 on these atoms, and failing to read the 64-bit
    size, the tag was still correctly read.

    When 0b78016b2d7c36b32d07669c0c86bc4b4225ec98 introduced a
    minimum size check, this exposed the bug, and broke probing
    any files with extended atom sizes, such as entirely valid
    large files that start whith mdat atoms.

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] libavformat/mov.c
  • How to get the size of the first x minutes of a video using FFmpeg ?

    19 avril 2020, par HTMHell

    I would like to input a time range, and get the size in bytes of a video.

    &#xA;&#xA;

    For example, if I would like to extract the first two minutes of a video, I would do :

    &#xA;&#xA;

    ffmpeg -i in.mp4 -ss 0 -t 120 out.mp4&#xA;

    &#xA;&#xA;

    But I don't really want to extract it, I just want to fetch the size of it if I would have.

    &#xA;