Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (25)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (5128)

  • Revision 6722 : Les images du slider de volume horizontal passent en sprite On ...

    27 juin 2012, par kent1 — Log

    Les images du slider de volume horizontal passent en sprite
    On utilise l’équivalent de #PRODUIRE dans insert_head sur les js
    On répare un mini bug sur le lecteur html5 sur webkit

  • using FFmpeg library in C++/Qt

    11 avril 2012, par kvphxga

    I am trying to use ffmpeg on windows in C++/Qt. This is my main function :

    #include <iostream>
    #include
    #include
    using namespace std;

    //--------------- FFMPEG Headers and Libraries ---------------

    #define INT64_C(val) val##LL
    #define UINT64_C(val) val##ULL
    #include <qtcore>


    #include <sdl></sdl>SDL.h>
    #ifdef __MINGW32__
    #undef main
    #endif
    extern "C"
    {
    #include <libavcodec></libavcodec>avcodec.h>
    #include <libavformat></libavformat>avformat.h>
    #include <libswscale></libswscale>swscale.h>
    }

    int main(int c, char *args[])
    {
       av_register_all();
       AVFormatContext *ctx;

       if(avformat_open_input(&amp;ctx,"salam.avi",NULL,NULL)!=0)
           return -1;
       return 0;
    }
    </qtcore></iostream>

    It gets compiled & linked fine. But I get this error when I try to run it :
    The program has unexpectedly finished
    This happens on *avformat_open_input* function. What's the problem ? Is it about my code, or it is a problem with my libraries ?
    Thanks in advance

  • laravel 5.2:Adding external php files to laravel

    5 juillet 2016, par srivat1

    I added FFmpeg package to laravel5.2 folder and tried to call the FFMpeg class from controller.

    It asked for namespace and use method to connect to the FFMpeg class file.my problem is like FFMpeg contains multiple php files and classes defined in it ’each one is related to one another, so do i need to define namespace for every files inside FFMPEG.

    steps I did ;
    1.use App\Http\Controllers\FFMpeg\FFMpeg ; using this i connected to FFMpeg class
    2.FFMpeg.php contains method to call FFProbe() which is in another file
    it works only if i use use App\Http\Controllers\FFMpeg\FFProbe in FFMpeg file.

    how can we define namespace for every files ? or how to do instead ?
    Iam new to laravel ,can anyone please suggest solution for this ?

    Thanks.!