Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (79)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Les notifications de la ferme

    1er décembre 2010, par

    Afin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
    Les notifications de changement de statut
    Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
    À la demande d’un canal
    Passage au statut "publie"
    Passage au (...)

Sur d’autres sites (8395)

  • avfilter/vf_libplacebo : Match AV_OPT_TYPE_FLOAT to dbl

    3 mai 2022, par Michael Niedermayer
    avfilter/vf_libplacebo : Match AV_OPT_TYPE_FLOAT to dbl
    

    Reviewed-by : "mypopy@gmail.com" <mypopy@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavfilter/vf_libplacebo.c
  • Applying gamma via ffmpeg does not match result in nuke/fusion/resolve

    17 mai 2022, par Kiwi

    I'm trying to convert a exr stack in linear colorspace to an H.264 .mov file in rec709 colorspace using ffmpeg. I am expecting it to match the result I get from Nuke, Fusion or Resolve.

    &#xA;

    In an editor, I can apply 2.4 gamma and export an H.264 .mov file. But when I try applying 2.4 gamma via ffmpeg, it does not match. It seems less saturated from ffmpeg.

    &#xA;

    Here is the command I'm using :

    &#xA;

    ffmpeg -y -gamma 2.4 -i C:/input/file_%04d.exr -vcodec libx264 -pix_fmt yuv420p -preset slow -crf 17 -r 25 C:/output.mov&#xA;

    &#xA;

  • Output video file of ffmpeg command video and audio doesn't match

    6 juillet 2022, par Barry

    i'm trying to trim a video file using ffmpeg using this command&#xA;ffmpeg -i input.mp4 -ss 00:05:20 -t 00:10:00 -c:v copy -c:a copy output.mp4 . The problem is when i open the output video, the audio starts normally but the video appears only 5 seconds after. I tried removing the -c copy option and output is accurate but the process is very slow. So my question is how to make output video/audio match when using -c copy option, or how to make the process faster when not using -c copy option. It's my first time using this so i don't know much about video/audio encoding, i am just trying to extract a video clip from a php script.

    &#xA;