Recherche avancée

Médias (91)

Autres articles (93)

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

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (7357)

  • FFMPEG cut out group of frames

    20 juin 2019, par Virgosh

    I’m looking for a command to cut out exact frames from a video.

    I know that I can do this by slicing the video in two and then concat,
    but I’m looking for a sigle command to achive the same result,
    something like :

    ffmpeg -i video.mov -cutframe 1239 video_cut.mov

    or something like

    ffmpeg -ss 2348 -i video.mov -tt 2349 video_cut.mov
  • Revision 691ec45b4e : Enable group adaptive max q by default. Set the GF group adaptive max Q compile

    23 mars 2015, par paulwilkins

    Changed Paths :
     Modify /vp9/encoder/vp9_firstpass.c



    Enable group adaptive max q by default.

    Set the GF group adaptive max Q compile flag to 1 by default.

    This change has a quite big visual impact in some clips and also
    contributes to tighter rate control.

    For short test clips that have consistent content the impact is
    quite small on metrics but for more varied long form clips there is
    a drop in overal psnr but a sharp rise in average psnr caused by
    greater expenditure on some easier sections and tighter rate clipping
    in hard sections.

    In chunck’ed encodes some of the effect will already be present due
    to the independent rate control in each chunk but this change takes
    the control down to a smaller scale.

    yt hd +10.67%, - 3.77%, -1.56%
    yt +9.654%, - 3.6%, - 1.82%
    std hd +0.25%, -0.85%, -0.42%
    derf +0.25%, - 1.1%. - 0.87%

    Change-Id : Ibbc39b800d99d053939f4c6712d715124082843e

  • Discard images from a group of similar images

    31 mai 2018, par Saah

    I am generating images (thumbnails) from a video every 3 seconds. Now I need to discard/remove all the similar images. Is there a way I could this ?

    I generate thumbnails using FFMPEG. I read about various image-diff solutions like given in this SO post, but I do not want to do this manually. How and what parameters should be considered that could tell if a particular image is similar to other images present.