Recherche avancée

Médias (0)

Mot : - Tags -/médias

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (74)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (3707)

  • rtmpproto : Make sure to pass on the error code if read_connect failed

    13 avril 2014, par Martin Storsjö
    rtmpproto : Make sure to pass on the error code if read_connect failed
    

    Previously, if read_connect failed, the ret variable was unmodified
    and had the value 0, indicating success, which then was returned from
    the rtmp_open function, even though it actually failed.

    CC : libav-stable@libav.org
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/rtmpproto.c
  • rtmpproto : Make sure to pass on the error code if read_connect failed

    13 avril 2014, par Martin Storsjö
    rtmpproto : Make sure to pass on the error code if read_connect failed
    

    Previously, if read_connect failed, the ret variable was unmodified
    and had the value 0, indicating success, which then was returned from
    the rtmp_open function, even though it actually failed.

    CC : libav-stable@libav.org
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/rtmpproto.c
  • sws_freeContext/sws_scale/sws_getContext errors while compiling ffmpeg libraries

    17 avril 2014, par Steve

    I have been working on ffmpeg for one of my projects. I am trying to utilize the ffmpeg static or shared libraries for my Android x86 project. I have followed the steps provided by Intel on this weblink https://software.intel.com/en-us/android/blogs/2013/12/06/building-ffmpeg-for-android-on-x86. When I try to build my project, I encountered a three errors. I have been trying to rectify them from the past one week, I have tried all possible methods with no results.

    jni/jniplayer/jniplayer.cpp:1244 : error : undefined reference to 'sws_freeContext'
    jni/jniplayer/jniplayer.cpp:1384 : error : undefined reference to 'sws_scale'
    jni/jniplayer/jniplayer.cpp:1371 : error : undefined reference to 'sws_getContext'

    I have used arm libraries previously to build my Android arm project that compiled with no problems. Maybe, I am missing a few steps with x86. As all the above errors are generated only with x86.

    I suppose that the issue resides with the enabling of the macro for x86 platform.

    #if ARCH_ARM
    #define USE_SWSCALE 0
    #else
    #define USE_SWSCALE 1
    #endif

    Only when USE_SWSCALE is enabled, functions such as sws_getcontext get enabled in ffmpeg.

    Have someone encountered such errors before. Kindly, please offer me some help with this issue. Thanks in advance for any answers.