Advanced search

Medias (91)

Other articles (34)

  • MediaSPIP v0.2

    21 June 2013, by

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 April 2011, by

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Creating farms of unique websites

    13 April 2011, by

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things): implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

On other websites (3945)

  • avcodec/tiff: Check for planar DNG images

    15 February 2020, by Michael Niedermayer
    avcodec/tiff: Check for planar DNG images
    

    The DNG code hardcodes plane 0 at some places, so its better to disallow cases
    that have more planes.

    Fixes: eg_crash
    Found-by: 黄宁 <tsukimurarin@163.com>
    Reviewed-by: Nick Renieris <velocityra@gmail.com>
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/tiff.c
  • avcodec/mpegvideo_enc: disable direct mode in load_input_picture() for dimensions...

    20 January 2014, by Michael Niedermayer
    avcodec/mpegvideo_enc: disable direct mode in load_input_picture() for dimensions%16 != 0
    

    We currently read a whole 16x16 block from the input at a few places

    Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/mpegvideo_enc.c
  • Is it a way to seek videos faster with ffmpeg while applying some filters?

    21 March 2023, by Peter.k

    I use parameters to cut a fragment from a video which in normal circumstances works well, but when I apply some filters, which may cause processors to be a bit busy, the seeking method seems to work very long. For example:

    &#xA;

    ffmpeg -i "i:\longmovie.mp4" -vf "subtitles=longmovie.srt:force_style=&#x27;FontName=Central European Time 13\:37,FontSize=20,PrimaryColour=&amp;H00171771,OutlineColour=&amp;HFFFFFFFF,BorderStyle=4,BackColour=&amp;H33FFFFFF,Outline=5,Shadow=0,MarginV=10&#x27;" -b:v 1000k -ss 02:01:54.0 -to 02:02:13.0 -preset ultrafast e:/tt147&#x2B;3.mp4&#xA;

    &#xA;

    I put those -ss and -to parameters at the end of the command, because it doesn't work in other places. It either produces very long video or skips the whole filter.

    &#xA;

    Can I use some trick to make it faster. The problem is in jumping to the desired 02:01:54 time - the rest works ok.

    &#xA;