Advanced search

Medias (91)

Other articles (81)

  • Modifier la date de publication

    21 June 2013, by

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • Le profil des utilisateurs

    12 April 2011, by

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 November 2010, by

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

On other websites (12314)

  • vc1: skip motion compensation when data for last picture is invalid

    28 January 2018, by Sean McGovern
    vc1: skip motion compensation when data for last picture is invalid
    

    Bug-Id: 1101
    Cc: libav-stable@libav.org

    • [DBH] libavcodec/vc1_mc.c
  • Fix motion blur in still frames from mpeg2video

    14 March 2017, by Bird

    I’m extracting still frames from a video using the basic code:

    ffmpeg -i video.MXF -vf fps=1 output_%04d.png  

    In some videos, this yields images that, when the camera was moving, look much blurrier than when watching the video (see example below). The still frames from when the camera was not moving look sharper (closer to how it looks in video playback).

    The video specs are: mpeg2video, yuv422p, 1280x720 (according to FFprobe).

    Is this inherent within the video coding or structure? The video looks so nice when in motion, but even when I pause in VLC the frame goes from sharp to blurred.

    Are there any additions to my FFmpeg code that could result in sharper images? I tried adding a yadif filter, but it made no difference (the video isn’t interlaced anyways).

    Unfortunately I can’t post a video sample online, but below is an example of a sharper image and a blurry image; both look in focus during video playback and are about a second apart in the video (that’s the same orange sea star on the left side).

    Sharper image
    Blurrier image

  • libavcodec/mpegvideo_enc: fix multi-threaded motion estimation rounding for mpeg4

    8 May 2024, by Ramiro Polla
    libavcodec/mpegvideo_enc: fix multi-threaded motion estimation rounding for mpeg4
    

    ff_init_me() was being called after ff_update_duplicate_context(),
    which caused the propagation of the initialization to other thread
    contexts to be delayed by one frame.

    In the case of mpeg4 (or flipflop_rounding), this would make the
    hpel_put functions differ between the first thread (which would be
    correctly initialized) and the other threads (which would be stale
    from the previous frame).

    • [DH] libavcodec/mpegvideo_enc.c