Recherche avancée

Médias (91)

Autres articles (37)

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

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (5760)

  • deprecated error calling C function in C virtual function

    25 juillet 2013, par wolfz

    when i call C function use : : operation in C++ virtual function,
    it always occurs the error as follows.

       D:/player/jni/lib/DllAvCodec.h:119:120: warning: 'avcodec_encode_audio' is deprecated [-Wdeprecated-declarations]
       virtual int avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size, const short *samples) { return ::avcodec_encode_audio(avctx, buf, buf_size, samples); }
                                                                                                                      ^

    and that i called the extern "C" in the head, but the error still occur.
    my code is :

    extern "C" {
    #include <libavcodec></libavcodec>avcodec.h>
    }
    ......
     virtual int avcodec_encode_audio(AVCodecContext *avctx, uint8_t *buf, int buf_size, const short *samples) { return ::avcodec_encode_audio(avctx, buf, buf_size, samples); }
    ......
  • How to merge audio video file in mac system using action script ?

    18 avril 2017, par SushilK

    I am creating a screen recording application using action script. I am able to record the screen and audio files separately but the issue i am facing is that i am not able to merge these audio and video files in Mac.

    For windows version i have used the ffmpeg and it is working fine But for Mac system it is not working. Do you guys have any other suggestions or any way to run the ffmpeg from the action script directly for Mac ?

  • Terminating a c function

    17 février 2014, par dempap

    I want to make a function in c, that will capture video under Linux. I embedded ffmpeg command via system() in my c program, which captures video. ffmpeg terminates by pressing [q]. How can I include termination into my c program.

    This function is part of a server.c program. When client requests for termination, I want video cature function to terminate. Is this possible ?

    #include
    #include


    main()
    {

    char command[180];

    sprintf(command, "ffmpeg -f v4l2 -r 25 -s 640x480 -i /dev/video0 out.avi");
    system(command);

    }