Recherche avancée

Médias (91)

Autres articles (66)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (8208)

  • Virtual host compared to multiple servers

    9 septembre 2011, par josiecat

    This may be dumb but has me wondering why and I know how to setup the virtual host but need to know the why or what it is good for.

    Why do you setup virtual host for local development and why not just put sub directories ?

    What are the real world uses and how do you use virtual host ?

    (my normal set up as of now)
    I use Mamp and just put more folders (speaking dummy terms here) in the htdocs folder. Is that ok what am I missing ?

    The reason why I would like to use virtual hosting is because I would like to have a few servers to try different technologies (e.g. adding ffmpeg support for streaming video and many others ) but do I use virtual hosting to be able to have more than one server or do I need to use something like virtual machine to have multiple servers with different versions of PHP, Mysql etc...?

    I understand how to set this stuff up just don't understand the difference from virtual host to multiple servers ? could I actually set up one with php just the basic and another for php with ffmpeg-php and other stuff like zend or what ever just to have different server environments to basically mock the actual server that the project will land when done ?

  • Silence various static analyzer warnings

    29 juillet 2015, par Henrik Gramner
    Silence various static analyzer warnings
    

    Those are false positives, but it doesn’t hurt to get rid of them.

    • [DH] common/common.c
    • [DH] common/common.h
    • [DH] encoder/encoder.c
    • [DH] encoder/me.c
    • [DH] input/avs.c
  • avcodec/dnxhdenc : Fix segfault when using too many slice threads

    6 mai 2021, par Andreas Rheinhardt
    avcodec/dnxhdenc : Fix segfault when using too many slice threads
    

    The DNXHD encoder's context contains an array of 32 pointers to
    DNXHDEncContexts used in case of slice threading ; when trying
    to use more than 32 threads with slice threading, the encoder's init
    function errors out, but the close function takes avctx->thread_count
    at face value and tries to free inexistent elements of the array,
    leading to potential crashes.

    Fix this by modifying the check used to decide whether the slice
    contexts should be freed.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/dnxhdenc.c