Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (91)

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

Sur d’autres sites (4066)

  • Encoding a video in FFmpeg to X264 and have it playable in Quicktime

    7 mai 2013, par illu

    I am wondering which command line settings i need to explicitly set (or avoid) to make a video encoded into x264 (in the mp4 format) using ffmpeg by default playable in Quicktime. I find that a number of the predefined preset files work for me but some of them won't, for example I can't get any of the lossless ones to work and I'm interested in those ones as well. For example libx264-lossless_max.ffpreset will encode my video but it's only playable in VLC, not in Quicktime. In Quicktime the video stays black. I know Perian is an option but I want my file to be playable without installing Perian. Thanks for your help.

  • Maintainers : remove myself

    21 mars 2019, par Martin Vignali
    Maintainers : remove myself
    

    Too much hostility in this project
    Not enough respect for users and contributors

    I'm not interested to contribute anymore

    • [DH] MAINTAINERS
  • Why does the compiler convert bool to integer and back to bool instead of returning the bool itself ?

    22 juin 2016, par Jack

    I was reading VideoFileWriter class from AForge.Video.FFMPEG assembly via ILSPY (I was interested to see how a particular method works) and found this :

    public bool IsOpen {
       [return: MarshalAs(UnmanagedType.U1)]
       get {
           return ((this.data != null) ? 1 : 0) != 0;
       }
    }

    What’s the reason to do that bool to integer than back to bool conversion rather just do this.data != null ?