Recherche avancée

Médias (91)

Autres articles (73)

  • 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

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

Sur d’autres sites (8897)

  • Using Opencv in Commercial Products

    29 mars 2018, par Awais Rafique

    I know OPENCV is under BSD license and FFMPEG is under LGPL. When i am reading/writing video using opencv, it is using FFMPEG. My question is, is it allowed to use opencv for commercial products ? as i am not changing any code of FFMPEG, just using its .dll ? as explained in How exactly is FFmpeg used in our software ?

    but here is another answer for FFMPEG.dll license issue
    Is using opencv_ffmpeg.dll in commercial applicatoin require license ?
    What is the safe way of using Opencv in commercial applications ? compiling with GStreamer, same LGPL license, What should i do ?

  • swscale/swscale : prevent integer overflow in chrRangeToJpeg16_c

    1er novembre 2024, par James Almer
    swscale/swscale : prevent integer overflow in chrRangeToJpeg16_c
    

    Same as it's done in lumRangeToJpeg16_c(). Plenty of allowed input values can
    overflow here.

    Fixes : src/libswscale/swscale.c:198:47 : runtime error : signed integer overflow : 475328 * 4663 cannot be represented in type 'int'
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libswscale/swscale.c
  • checkasm/x86 : Correctly handle variadic functions

    23 septembre 2015, par Henrik Gramner
    checkasm/x86 : Correctly handle variadic functions
    

    The System V ABI on x86-64 specifies that the al register contains an upper
    bound of the number of arguments passed in vector registers when calling
    variadic functions, so we aren’t allowed to clobber it.

    checkasm_fail_func() is a variadic function so also zero al before calling it.

    • [DH] tests/checkasm/x86/checkasm.asm