Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

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

Autres articles (103)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    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 (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (12015)

  • avisynth : corrected interlace detection

    24 mai 2021, par emcodem
    avisynth : corrected interlace detection
    

    AviSynth works on frame-based video by default, which can
    be either progressive or interlaced. Some filters can break
    frames into half-height fields, at which point it considers
    the clip to be field-based (avs_is_field_based can be used
    to check for this situation).

    To properly detect the field order of a typical video clip,
    the frame needs to have been weaved back together already,
    so avs_is_field_based should actually report 'false' when
    checked.

    Signed-off-by : Stephen Hutchinson <qyot27@gmail.com>

    • [DH] libavformat/avisynth.c
  • avcodec/cfhd : Check transform_type consistently

    3 avril 2021, par Michael Niedermayer
    avcodec/cfhd : Check transform_type consistently
    

    Fixes : out of array accesses
    Fixes : 29754/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_CFHD_fuzzer-6333598414274560
    Fixes : 30519/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_CFHD_fuzzer-6298424511168512
    Fixes : 30739/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_CFHD_fuzzer-5011292836462592

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/cfhd.c
    • [DH] libavcodec/cfhd.h
  • How to get FFmpeg to consistently apply speed effect to first few frames ?

    16 janvier 2021, par melody_florum

    I am using FFmpeg to apply speed effects to short gifs and videos and I noticed strange stuttering on looping gifs when sped up. I manually tested and found what was going on. FFmpeg failed to apply the speed filter to the first few frames of the video.

    &#xA;

    I started with this file, which loops between the numbers "1 2 3 4" every frame.

    &#xA;

    123410fps.mp4

    &#xA;

    I then ran the command ffmpeg -i 123410fps.mp4 -vf setpts=0.5*PTS 123410fpsout.mp4

    &#xA;

    That left me with this file : 123410fpsout.mp4

    &#xA;

    On close analysis, I discovered that the output file didn't show a repeating 1 3 1 3 or 2 4 2 4 pattern, but shows 1 2 3 4 1 3 1 3 1 3... the speed effect didn't apply for the first few frames

    &#xA;

    I apologize if it sounds like i'm being super nitpicky, but my usage for this is on very short gifs and videos where this effect is very apparent. How can I prevent this effect from happening and have a 100% consistent speed effect applied to the video ? I don't mind using other non-ffmpeg software but a CLI solution that works easily for most videos is ideal.

    &#xA;

    In case anyone is wondering, I don't use ffmpeg to encode gifs, i use gifski from ffmpeg exported image sequences. The problem shows up even when no gifs are used, so it's not a gifski problem.

    &#xA;