Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (86)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (12214)

  • avformat/aviobuf : Free white/black list in avio_context_free()

    12 août, par Andy Nguyen
    avformat/aviobuf : Free white/black list in avio_context_free()
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/aviobuf.c
  • avformat/dvdvideodec : Remove unused cell count variable

    4 juillet 2024, par Marth64
    avformat/dvdvideodec : Remove unused cell count variable
    

    Signed-off-by : Marth64 <marth64@proxyid.net>
    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DH] libavformat/dvdvideodec.c
  • Filter useless white frames at the beginning and duplicated frames at the end of captured video

    21 septembre 2020, par gumkins

    I'm capturing HTML animation with use of Puppeteer and MediaRecorder API.

    &#xA;

    Before starting the capturing I'm waiting for networkidle event (I tried networkidle0-2 but result is identical)

    &#xA;

    await page.goto(url, { waitUntil: &#x27;networkidle0&#x27; })&#xA;

    &#xA;

    For some reason, the animation starts to play 2-3 seconds after the capturing starts, and thus, white frames are captures.&#xA;Similar, at the end of the video there are identical frames because capturing duration is a bit longer than animation plays.

    &#xA;

    Thus I want to detect and cut off those repeating white frames at the beginning and repeating non-white frames at the end of the video (mp4/webm).

    &#xA;

    I tried some solutions, like described here, for instance

    &#xA;

    ffmpeg -i input.mp4 -vf mpdecimate,setpts=N/FRAME_RATE/TB out.mp4&#xA;

    &#xA;

    It does remove duplicates, but the problem is that it cuts off dups in the middle as well.

    &#xA;

    Thus, if I have a 15 sec animation,it removes all dups at the beginning, all dups at the end and all dups in the middle, and what is left after it is just a several identical frames which are pack into less than 1 sec video.

    &#xA;