Recherche avancée

Médias (91)

Autres articles (10)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

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

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

  • hwcontext_vulkan : disable descriptor buffer extension on Intel

    12 avril, par Lynne
    hwcontext_vulkan : disable descriptor buffer extension on Intel
    

    Temporary workaround. Will be replaced with a version check once a fix is
    in the works and a known next version for Mesa with a fix is known.

    • [DH] libavutil/hwcontext_vulkan.c
  • How to hack ffmpeg to consider I-Frames as key frames ?

    2 février 2012, par justanothercoder

    I'm trying to get ffmpeg to seek h264 interlaced videos, and i found that i can seek to any frame if i just force it.

    I already hacked the decoder to consider I - Frames as keyframes, and it works nicely with the videos i need it to work with. And there will NEVER be any videos encoded with different encoders.

    However, i'd like the seek to find me an I - Frame and not just any frame.

    What i'd need to do is to hack The AVIndexEntry creation so that it marks any frame that is an I-Frame to be a key frame.
    Or alternatively, hack the search thing to return I - Frames.

    The code does get a tad dfficult to follow at this point.

    Can someone please point me at the correct place in ffmpeg code which handles this ?

  • Can FFMPEG force a JPEG to be 16:9 size ? [closed]

    18 octobre 2020, par Franken

    I am creating thumbnails with FFMPEG and I using a command line like this :

    


    ffmpeg -y -ss 00:31:05.435 -i "E:\mov\myVid.mp4" -vframes 1 -q:v 2 "C:\Users\Franken\Pictures\Temp\test.jpg"


    


    It works very well. Some older videos that do not have a modern dimension and even newer ones with very wide dimensions do not produce a desirable thumbnail because it is very skewed when I try to use it in a frame that is 16:9. Can I force all JPEG's produced to be 16:9 ? I realize that some of the video would get cropped in some cases. Thanks