Recherche avancée

Médias (1)

Mot : - Tags -/3GS

Autres articles (68)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

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

  • avformat/frmdec : Simplify finding pixel format

    1er mars 2021, par Andreas Rheinhardt
    avformat/frmdec : Simplify finding pixel format
    

    The fourccs used by the Megalux Frame format to determine the pixel
    format are actually no fourccs at all as they are a single byte.
    Furthermore, their range is continuous (1-5), so they are actually
    ordinary indices. So treat them as such and don't use PixelFormatTags
    for them.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/frmdec.c
  • libavutil/hwcontext_opencl : Fix channel order in format support check

    8 avril 2019, par Jarek Samic
    libavutil/hwcontext_opencl : Fix channel order in format support check
    

    The `opencl_get_plane_format` function was incorrectly determining the
    value used to set the image channel order. This resulted in all RGB
    pixel formats being set to the `CL_RGBA` pixel format, regardless of
    whether or not they actually *were* RGBA.

    This patch fixes the issue by using the `offset` and depth of components
    rather than the loop index to determine the value of `order`.

    Signed-off-by : Jarek Samic <cldfire3@gmail.com>
    Signed-off-by : Mark Thompson <sw@jkqxz.net>

    • [DH] libavutil/hwcontext_opencl.c
  • ffmpeg minterpolate and rubberband - how to stretch audio to fit ?

    5 juin 2023, par bossturbo

    What is the best way to control the length of the audio and pitch shift using rubberband ?

    &#xA;

    I tried setting 'asetpts=PTS*16' to match the video PTS, but it appears to be ignored. The only thing that seems to determine the length of the audio is rubberband pitch. Even 'tempo=0.0625' does not appear to do anything.

    &#xA;

    I would like to be able to set the audio length to match the slower video section and set the pitch to whatever I want, like minimum 0.15 and have it stretch the audio length as needed.

    &#xA;

    ffmpeg -ss 123.978571 -i "original-120fps.MP4" -filter_complex "&#xA;[0:v]trim=0:0.375,setpts=PTS-STARTPTS,minterpolate=&#x27;fps=480&#x27;,setpts=PTS*16[slowv]; &#xA;[0:a]atrim=0:0.375,asetpts=PTS-STARTPTS,rubberband=pitch=0.08:tempo=0.0625[slowa];"&#xA; -y -r 60 -map [slowv] -map [slowa] -preset veryfast "output.mp4"&#xA;

    &#xA;

    Finally, is there a good guide to using lib-rubberband ? FFmpeg docs for rubberband doesn't explain anything.

    &#xA;