Recherche avancée

Médias (91)

Autres articles (35)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

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

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

  • Wrapper function removed from vp8_subtract_b_neon function call

    30 mars 2011, par Tero Rintaluoma

    Wrapper function removed from vp8_subtract_b_neon function call

  • lavu/riscv : fallback to raw hwprobe() system call

    3 mai 2024, par Rémi Denis-Courmont
    lavu/riscv : fallback to raw hwprobe() system call
    

    Not all C run-times support this, and even then, it will be a while
    before distributions provide recent enough versions thereof.

    Since this is a trivial system call wrapper, we might just as well call
    the corresponding kernel system call directly where the C run-time lacks
    support but the kernel headers are new enough (as is the case on Debian
    Unstable at the time of writing). In doing so, we need to add a few more
    guards as the first suitable kernel (headers) release did not expose the
    V, Zba and Zbb extensions.

    • [DH] configure
    • [DH] libavutil/riscv/cpu.c
  • ffmpeg AVPixelFormat and manager C++ System::Drawing::Imaging::PixelFormat conflict

    29 novembre 2016, par H S T

    There is #define PixelFormat AVPixelFormat inffmpeg. You can not use System::Drawing::Imaging::PixelFormat in a header file containing this. How can I usePixelFormat in C # ?

    .h

    using namespace System::Drawing::Imaging;
    public ref class CTest{
       static Imaging::PixelFormat Format24bppRGB = Imaging::PixelFormat::Format24bppRgb
    };

    .cpp

    #include"ffmpeg head file"
    ...