Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (39)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (5525)

  • FFMPEG GIF with transparency from png image sequence

    11 février 2020, par Nick S

    I’ve been trying to use ffmpeg to create a gif with a transparent background, but whenever the movement goes on top of the background, the pixels stay there. It’s a tree with a wind animation, this is how it ends up : https://i.imgur.com/pq4ArBG.png

    I first try to create the palette, and then the gif :

    ffmpeg -i Tree_%04d.png -vf palettegen=reserve_transparent=1 palette.png

    ffmpeg -framerate 30 -i Tree_%04d.png -i palette.png -lavfi paletteuse=alpha_threshold=128 treegif.gif

    It seems the previous frames simply stay there, but I can’t figure out how to dispose of them.

  • How to discard context reinits during H264 video decoding from GStreamer webrtcbin

    20 mars 2019, par Szymon Piechaczek

    Gstreamer pipeline is receiving video this way :

    webrtcbin -> rtph264depay -> avdec_h264 -> ...

    I’ve enabled do_nack on rtpbin inside webrtcbin to make video quality better but the problem is that lost buffers from RTP cause ’sometimes’ h264 decoder to Reinit context to ... which makes the whole output video grey (with only movement visible) until the next keyframe is received (but this can happen many seconds later).

    I’ve noticed that EVENT_GAP is emitted right before context reinit but dropping them doesn’t help.

    How to make decoding artifacts acting ’as always’ on the corrupted video, not to fill the whole video with grey ?

  • ac3dec : Allow asymmetric application of DRC when drc_scale > 1

    13 janvier 2014, par John Stebbins
    ac3dec : Allow asymmetric application of DRC when drc_scale > 1
    

    Amplification of quiet sounds is enhanced.
    Inspired by gbooker’s A52Decoder.

    • [DBH] libavcodec/ac3dec.c