Recherche avancée

Médias (0)

Mot : - Tags -/content

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (49)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

  • avcodec : disallow hwaccel with frame threads

    23 octobre 2015, par Hendrik Leppkes
    avcodec : disallow hwaccel with frame threads
    

    HWAccels with frame threads are fundamentally flawed in avcodecs current
    design, and there are several known problems ranging from image corruption
    to driver crashes.

    These problems come down to two design problems in the interaction of
    threads and HWAccel decoding :

    (1)
    While avcodec prevents parallel decoding and as such simultaneous access
    to the hardware accelerator from the decoding threads, it cannot account
    for the user code and its access to the hardware surfaces and the hardware
    itself.

    This can result in image corruption or even driver crashes if the
    user code locks image surfaces while they are being used by the decoder
    threads as reference frames.

    The current HWAccel API does not offer any way to ensure exclusive access
    to the hardware or the surfaces if frame threading is used.

    (2)
    Initialization of the HWAccel with frame threads is non-trivial, and many
    decoders had and still have issues that cause excess calls to the
    get_format callback.

    This will potentially cause duplicate HWAccel initialization, which in
    extreme cases can even lead to driver crashes if the HWAccel is
    re-initialized while the user code is actively accessing the hardware
    surfaces associated with it, or lead to image corruption due to lost
    reference frames.

    While both of these issues are solvable, fixing (1) would at least require
    a huge API redesign which would move a lot of complexity into the user
    code.

    The only reason the combination of frame threads and HWAccel was
    considered useful is to allow a seamless fallback to multi-threaded
    software decoding if the HWAccel is not available, however the issues
    outlined above far outweigh this.

    The proper solution for a fallback is to re-open the AVCodecContext with
    threading enabled if the HWAccel failed, which is a practice commonly used
    by various user applications using avcodec today already.

    Reviewed-by : Gwenole Beauchesne <gb.devel@gmail.com>
    Reviewed-by : wm4 <nfxjfg@googlemail.com>
    Signed-off-by : Hendrik Leppkes <h.leppkes@gmail.com>

    • [DH] libavcodec/utils.c
  • FFmpeg : Trim video then add watermark with multiple text

    21 novembre 2016, par Iura Gaitur

    I want to trim a video then convert a video using FFMPEG and place a watermark with multiple texts on it. I have commands for trimming :

    ffmpeg -i 1.mp4 -ss 00:00:03 -t 00:03:08 -async 1 -c copy output1.mp4

    and for watermark with text placing

    ffmpeg -i 1.mp4 -i watermark_small.png -filter_complex "[0:v][1:v]overlay=10:10, drawtext=enable='between(t,0,12)':fontfile=font.ttf:text='Some text' : fontcolor=black: fontsize=18: box=1: boxcolor=yellow@0.5:boxborderw=5: x=(w-text_w)/1.15:y=30, drawtext=enable='between(t,14,22)':fontfile=font.ttf:text='Next text' : fontcolor=black: fontsize=18: box=1: boxcolor=yellow@0.5:boxborderw=5: x=(w-text_w)/1.15:y=30" -codec:v libx264 -preset ultrafast output1.mp4

    Can someone help me to combine them together ?

  • configure : colorize warning messages

    28 août 2015, par Ganesh Ajjanagadde
    configure : colorize warning messages
    

    This patch introduces color warning messages (yellow).
    They are enabled whenever available.
    Tested with zsh, bash, and sh (bash under —posix).

    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] configure