Recherche avancée

Médias (91)

Autres articles (98)

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

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (13072)

  • Playing high-res video in node-webkit

    17 mars 2015, par fin

    Under node-webkit, it seems that the maximum resolution a video can be played is 2k

    Is there any way to change this limitation ?

    Another observation is, I have enabled mp3 and mp4 from this link. It takes Chrome’s ffmpeg lib to render the file. However, under Chrome I can play video width up to 4k, while node-webkit can only support 2K. So I’m guessing it’s not the ffmpeg lib that forces the limitation.

  • avfilter : handle error in query_formats() of a bunch of random video filters

    15 mars 2015, par Clément Bœsch
    avfilter : handle error in query_formats() of a bunch of random video filters
    
    • [DH] libavfilter/f_select.c
    • [DH] libavfilter/vf_codecview.c
    • [DH] libavfilter/vf_colorbalance.c
    • [DH] libavfilter/vf_colormatrix.c
    • [DH] libavfilter/vf_curves.c
    • [DH] libavfilter/vf_dctdnoiz.c
    • [DH] libavfilter/vf_decimate.c
    • [DH] libavfilter/vf_delogo.c
    • [DH] libavfilter/vf_deshake.c
    • [DH] libavfilter/vf_drawbox.c
    • [DH] libavfilter/vf_edgedetect.c
    • [DH] libavfilter/vf_elbg.c
    • [DH] libavfilter/vf_eq.c
    • [DH] libavfilter/vf_fieldmatch.c
    • [DH] libavfilter/vf_gradfun.c
    • [DH] libavfilter/vf_histeq.c
    • [DH] libavfilter/vf_hqdn3d.c
    • [DH] libavfilter/vf_hqx.c
    • [DH] libavfilter/vf_hue.c
    • [DH] libavfilter/vf_idet.c
    • [DH] libavfilter/vf_lenscorrection.c
    • [DH] libavfilter/vf_libopencv.c
    • [DH] libavfilter/vf_lut.c
    • [DH] libavfilter/vf_lut3d.c
    • [DH] libavfilter/vf_mcdeint.c
    • [DH] libavfilter/vf_mpdecimate.c
    • [DH] libavfilter/vf_owdenoise.c
  • aviobuf : Handle a NULL buffer in avio_close_dyn_buf

    30 octobre 2013, par Martin Storsjö
    aviobuf : Handle a NULL buffer in avio_close_dyn_buf
    

    This simplifies proper error handling in rtsp.c/rtspdec.c. When
    broadcasting over RTSP in TCP mode, the AVIOContext is closed and
    recreated for each sent packet, and if the recreation fails, we might
    try to close a NULL buffer when freeing things at the end.

    Previously, if recreating the buffer in rtspdec.c failed, this would
    crash later due to trying to close a NULL buffer.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/aviobuf.c