Recherche avancée

Médias (91)

Autres articles (37)

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

  • 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 ?

  • Revision 7bea8c59f9 : Rework pred pixel buffer system in non-RD coding mode This commit makes the int

    30 octobre 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_pickmode.c



    Rework pred pixel buffer system in non-RD coding mode

    This commit makes the inter prediction buffer system to support
    hybrid partition search. It reduces the runtime of speed -5 by
    about 3%. No compression performance change.

    vidyo1 720p 1000 kbps
    11831 ms -> 11497 ms

    nik 720p 1000 kbps
    10919 ms -> 10645 ms

    Change-Id : I5b2da747c6395c253cd074d3907f5402e1840c36

  • 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); }
    ......