Recherche avancée

Médias (91)

Autres articles (66)

  • 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 ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (8914)

  • How to scroll and zoom an image at the same in ffmpeg ?

    8 décembre 2024, par neeebzz

    I have an image of the height 1200px. I want to create a video from this single image.

    


    My final video will be height 450px.

    


    At 0seconds I want to show a 2xZoomed version of the image. Then it in 2 seconds it should zoom out to it's original width. And then it start scrolling to the bottom and then at the end it starts scrolling back. This should be on loop until the end of the video.

    


    Also I am want the this whole image to be faded to 50% since I will overlay another video on top of it.

    


    I am trying to use the zoompan filter but it seems to be not working. Especially I tried using t variable in it to change zoom based on duration but it doesn't accept.

    


  • avcodec/hevcdec : apply H.274 film grain

    29 septembre 2021, par Niklas Haas
    avcodec/hevcdec : apply H.274 film grain
    

    Similar in spirit and design to 66845cffc3bbb, but slightly simpler due
    to the lack of interlaced frames in HEVC. See that commit for more
    details.

    For the seed value, since no specification for this appears to exist, I
    semi-arbitrarily decided to base it off the POC id alone, since there's
    no analog of the idr_pic_id in HEVC's I-frames. This design is stable
    across remuxes and seeks, but changes for adjacent frames with a period
    that's typically long enough not to be noticeable, which makes it
    satisfy all of the requirements that a film grain seed should have.

    Tested with and without threading, using a patch to insert film grain
    metadata artificially (for lack of real files containing film grain).

    • [DH] libavcodec/hevc_refs.c
    • [DH] libavcodec/hevcdec.c
    • [DH] libavcodec/hevcdec.h
  • lavu/tx : refactor power-of-two FFT

    10 avril 2021, par Lynne
    lavu/tx : refactor power-of-two FFT
    

    This commit refactors the power-of-two FFT, making it faster and
    halving the size of all tables, making the code much smaller on
    all systems.
    This removes the big/small pass split, because on modern systems
    the "big" pass is always faster, and even on older machines there
    is no measurable speed difference.

    • [DH] libavutil/tx_priv.h
    • [DH] libavutil/tx_template.c