Recherche avancée

Médias (91)

Autres articles (26)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

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

  • How to debug into CvCapture_FFMPEG from opencv codes ,avoid cap_ffmpeg.cpp load "opencv_ffmpeg.dll"

    19 juin 2014, par Ericking

    I had got ffmpeg source and build their libs and dlls within my include,lib,bin folders,and I import it into my Opencv project/opencv_highgui, and give the project right property settings.
    At the same time, I delete opencv_ffmpeg.dll in Opencv Origin folder.
    But it still cant step into ffmpeg source. In debug mode,it just stoped when it go into class CvCaptrue_FFMPEG_proxy’s virtual open()function.
    So my question is :
    1.how to step into ffmpeg codes ?
    2.how to build the opencv_ffmpeg.dll for debug ?

  • avformat/flacdec : Return correct error-codes on read-failure

    26 janvier 2023, par Ulrik
    avformat/flacdec : Return correct error-codes on read-failure
    

    Forward errors from `avio_read` directly. When `avio_read` sees EOF before
    expected bytes can be read, consistently return `AVERROR_INVALIDDATA`

    We used to return `AVERROR(AVERROR_INVALIDDATA)` when failing to read
    metadata block headers. `AVERROR_INVALIDDATA` is already negative, so
    wrapping in `AVERROR` leads to double-negation.

    We used to return `AVERROR(EIO)` when failing to read extended metadata.
    However, many times, the IO-layer is not at fault, the input data is simply
    corrupted (truncated), so we return `AVERROR_INVALIDDATA` here as well.

    — -

    Tomas : changed to use AVERROR_EOF

    • [DH] libavformat/flacdec.c
  • unix : Convert from AVERROR to errno range before comparing error codes

    5 août 2013, par Martin Storsjö
    unix : Convert from AVERROR to errno range before comparing error codes
    

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

    • [DBH] libavformat/unix.c