Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (53)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (8532)

  • avformat/westwood_vqa : Remove unneeded cast

    3 janvier 2015, par Michael Niedermayer
    avformat/westwood_vqa : Remove unneeded cast
    

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

    • [DH] libavformat/westwood_vqa.c
  • src/flac/decode.c : Fix a cast-align warning from GCC.

    27 juin 2014, par Erik de Castro Lopo
    src/flac/decode.c : Fix a cast-align warning from GCC.
    

    The old code was creating an array of FLAC__int8, and then casting
    that to a set of signed and unsigned 16 and 32 bit integers. This
    was replaced with a single union containing all the requred array.

    This solution means that there are fewer pointer casts and actually
    gives the compiler more information with which to generate fast code.

    • [DH] src/flac/decode.c
  • Raw extraction of frames from a movie

    29 septembre 2016, par vkubicki

    I would like to extract images from a grayscale mj2 movie. Each pixel is encoded using 16 bits. Since this is a technical movie, I need to extract the value at each pixel without processing, as those values linearly map to a physical quantity (a heatmap from an infrared camera). I am using Scala, and I do not find any suitable solution for a direct extraction (either in Scala or in Java, but I am a beginner). Therefore I intend to use ffmpeg to extract individual frames on the disk, then load them as BufferedImage in Scala and process them.

    Is this a good approach ? Which format should I use to avoid any transformation in the data ? I want each extracted frame to ba as "raw" as possible ? Is it possible to directly output a csv containing the aforementionned values ?