Recherche avancée

Médias (91)

Autres articles (96)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (8892)

  • avfilter/formats : Make check for buffer overflow redundant

    13 août 2020, par Andreas Rheinhardt
    avfilter/formats : Make check for buffer overflow redundant
    

    and remove the redundant check.

    This check for whether the allocated buffer is sufficient has been added
    in commit 1cbf7fb4345a3e5b7791d483241bf4759bde4ece (merging commit
    5775a1832c4165e6acc1d307004b38701bb463f4). It is not sufficient to
    detect invalid input lists (namely lists with duplicates) ; its only use
    is to avoid buffer overflows. And this can be achieved by simpler means :
    Make sure that one allocates space for so many elements as the outer loop
    ranges over and break out of the inner loop if a match has been found.
    For valid input without duplicates, no further match will be found anyway.

    This change will temporarily make the allocated formats array larger
    than before and larger than necessary ; this will be fixed in a later
    commit that avoids the allocation altogether.

    If a check for duplicates in the lists is deemed necessary, it should be
    done properly somewhere else.

    Finally, the error message that is removed in this commit used
    __FUNCTION__, which is a GCC extension (C99 added __func__ for this).
    So this commit removes a warning when compiling in -pedantic mode.

    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavfilter/formats.c
  • How to Extract Timestamps and Corresponding Screenshots from .MTS File ?

    1er juin 2016, par broyang

    I have a .MTS file, and I want to output its timestamps every n milliseconds. I have to match each timestamp with its corresponding screenshot of the video.

    I tried using avchd2srt to output each timestamp, but it outputs a .srt file. I’m trying to output the timestamps in a .txt file, and the pictures in jpeg format. Does anyone have suggestions on what to do ?

  • Convert video with ffmpeg using gpu

    21 juin 2016, par sdnaghdi

    I have video sharing site and convert video with ffmpeg but it take a lot of time for converting.
    how can do it fast and safe ?
    I think when ffmpeg match with GPU it helps me but I find no good reference to use.
    Which application or reference can help me that have good performance.