Recherche avancée

Médias (91)

Autres articles (78)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (12235)

  • mov : Evaluate the movie display matrix

    3 novembre 2016, par Vittorio Giovara
    mov : Evaluate the movie display matrix
    

    This matrix needs to be applied after all others have (currently only
    display matrix from trak), but cannot be handled in movie box, since
    streams are not allocated yet. So store it in main context, and apply
    it when appropriate, that is after parsing the tkhd one.

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DH] libavformat/isom.h
    • [DH] libavformat/mov.c
  • how to apply LUT filter with movie filter in ffmpeg

    5 mai 2017, par Nayan

    movie=logo [watermark] ; [in][watermark] overlay=(main_w-overlay_w)/2 :(main_h-overlay_h)/2[out] ;

    By giving image input using movie filter, I want to make watermark image transparent.I written code in visual c++. Please help to correct command syntax to pass filter description into filter graph.

  • pass ffmpeg options through mlt xml

    17 avril 2021, par carsten

    I'm looking at an MLT XML file that I created with kdenlive and would like to tweak the command line options passed to ffmpeg.

    &#xA;

    If I understand correclty, this is the part that I need to edit :

    &#xA;

     <consumer f="mp4" g="15" channels="2" crf="15" progressive="1" target="thetargetfile.mp3" threads="0" vcodec="libx264" ab="256k" movflags="&#x2B;faststart" bf="2" preset="faster" acodec="aac" in="0" out="18263"></consumer>&#xA;

    &#xA;

    Now, I would like to pass an additional flag to ffmpeg, in my case -stillimage for still image optimization of the output (my file is a recorded slideshow presentation, so there's really no excuse for it being hundreds of MB large).

    &#xA;

    Is there an option in that allows to just pass arbitrary flags to ffmpeg, or how else would I go about performing such an optimization ?

    &#xA;