Recherche avancée

Médias (1)

Mot : - Tags -/ipad

Autres articles (106)

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

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (8850)

  • http: restructure http_connect error handling path

    21 mars 2014, par wm4
    http: restructure http_connect error handling path
    

    The authstr memory allocations make it annoying to error in the middle
    of the header setup code, so apply the usual C error handling idiom to
    make it easier to error at any point.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/http.c
  • avfilter/vf_zscale : simplify and fix alpha handling

    18 août, par Niklas Haas
    avfilter/vf_zscale : simplify and fix alpha handling
    

    There's no reason to use a completely separate graph just to process the
    alpha plane in isolation - zimg supports native alpha handling as part of the
    main image.

    Fixes several issues with this filter when adding or removing alpha planes,
    and also adds support for scaling premultiplied alpha (which reduces artefacts
    near the image borders).

    • [DH] libavfilter/vf_zscale.c
  • Handling executables dependency on github

    29 juillet 2019, par Max Paython

    I am currently building an open-source project with Python for educational purposes, and I am going to add it on Github. It uses ffmpeg library as 64-bit compiled exe (I am on windows), by calling the executable with command line arguments within the code.

    My question is that, how to handle the situation of other people try to use my code (let’s say customers, even there are none). Because they would also need the ffmpeg executable.

    • Including ffmpeg executable to Github repo (Seems wrong, also would
      fail on multi-platform).
    • Add a dependency control in the beginning of code, informing the users that they should download the executable. (would make the user
      do some work)
    • Creating an installer that stores this file (don’t know how to combine with github)

    In linux, ffmpeg is install-able as a library in itself, adding it as a dependency would work in linux, however in Windows this would require adding installed directory to PATH (if installed, instead of copy-pasted near the code). Some more work for the user.

    ffmpeg is just an example. I am also curious about this using other compiled binaries (if there is another method of using these projects, I am open to suggestions).

    I also included ffmpeg and Python as tags just in case these tools supply guidance in these situations (couldn’t find on internet, or did not know where to look).