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

  • FFmpeg avformat_open_input not working : Invalid data found when processing input

    2 novembre 2016, par John_Sheares

    This is my first time using FFmpeg. Every type of media file that I try to open with avformat_open_input, returns "Invalid data found when processing input". I am using 32bit FFmpeg Build Version : 92de2c2. I setup my VS2015 project according to this answer : Use FFmpeg in Visual Studio. What could be going wrong with this code ?

    #include "stdafx.h"
    #include

    extern "C"
    {
       #include "libavcodec/avcodec.h"
       #include <libavformat></libavformat>avformat.h>
       #include <libavutil></libavutil>avutil.h>
    }

    int main(int argc, char *argv[])
    {
       AVFormatContext *pFormatCtx = NULL;
       avcodec_register_all();

       const char* filename = "d:\\a.mp4";
       int ret = avformat_open_input(&amp;pFormatCtx, filename, NULL, NULL);
       if (ret != 0) {
           char buff[256];
           av_strerror(ret, buff, 256);
           printf(buff);
           return -1;
       }
    }
  • avformat/iff : ignore FVER tag when not processing DSD/DST files

    12 décembre 2024, par Peter Ross
    avformat/iff : ignore FVER tag when not processing DSD/DST files
    

    Fixes ticket #10030.

    • [DH] libavformat/iff.c
  • lsws/ppc/yuv2rgb_altivec : Fix build in non-VSX environments with Clang v2

    11 mars, par Brad Smith
    lsws/ppc/yuv2rgb_altivec : Fix build in non-VSX environments with Clang v2
    

    v2 : test for function if AltiVec is enabled instead of with AltiVec and without VSX

    • [DH] configure