Recherche avancée

Médias (91)

Autres articles (37)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

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

  • libx265 : Use the Multi-library Interface

    11 mai 2015, par Gopu Govindaswamy
    libx265 : Use the Multi-library Interface
    

    Use the Multi-library interface to load at runtime x265 libraries
    supporting alternative bit depths (e.g. 8bit and 16bit).

    The linked library will try to load the library supporting the
    pixel format if it is not supported by itself.

    Fallback requesting the native library (passing 0 to x265_api_get) if
    a library supporting the requested bit depth is not available.

    Signed-off-by : Gopu Govindaswamy <gopu@multicorewareinc.com>
    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>
    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] configure
    • [DBH] libavcodec/libx265.c
  • Scale watermark in ffmpeg based on video size [duplicate]

    24 octobre 2016, par user3600338

    This question already has an answer here :

    I have a folder with videos, all with different resolutions. The goal is to add a watermark on them, which I’ve successfully been able to done using this batch script :

    for %%I IN ("C:\path\input\*.flv") DO ffmpeg.exe -i "%%I" -i "watermark.png" -filter_complex "overlay=W-w-5:5" -qscale 1 C:\path\output\%%~nI.avi"

    The problem is that the size of the watermark changes a lot based on the video resolution. I’ve understood that I should use one -filter_complex with both scale and overlay, but I don’t get it to work. I want something like this :

    -filter_complex "scale=main_w*0.3:-1 ; overlay=W-w-5:5"

    To clarify, I want the watermark to be 30% of the width of the video. How can I do this ? Thanks in advance

  • hwcontext_vulkan : ask for storage images by default

    1er septembre 2024, par Lynne
    hwcontext_vulkan : ask for storage images by default
    

    The issue is that we ask for storage images by default if
    available, but because that is gated by the format supporting
    storage images, and the check for the format supporting storage
    images is gated by the usage, this resulted in a catch-22.

    • [DH] libavutil/hwcontext_vulkan.c