Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (52)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (6006)

  • mxfdec : Handle small EditUnitByteCount

    24 janvier 2012, par Tomas Härdin

    mxfdec : Handle small EditUnitByteCount

  • lavfi/delogo : option show shouldn’t affect band

    5 juillet 2013, par Jean Delvare
    lavfi/delogo : option show shouldn’t affect band
    

    Options "show" and "band" are unrelated and should thus be
    independent. However, setting "show" to 1 currently resets "band" to
    its default value of 4. While this is documented, this still
    surprising and confusing IMHO.

    Change this behavior and make "show" and "band" independent from each
    other. Update the documentation accordingly.

    Signed-off-by : Jean Delvare <khali@linux-fr.org>
    Reviewed-by : Stefano Sabatini <stefasab@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/filters.texi
    • [DH] libavfilter/version.h
    • [DH] libavfilter/vf_delogo.c
  • Can't show image with opencv when importing av

    5 mars, par Flojomojo

    When importing the PyAv module, I am unable to show an image with opencv using imshow()

    &#xA;

    Code without the PyAv module (works as expected)

    &#xA;

    import cv2&#xA;&#xA;img = cv2.imread("test_image.jpeg")&#xA;cv2.imshow(&#x27;image&#x27;, img)&#xA;cv2.waitKey(0)&#xA;

    &#xA;

    Code with the import (doesn't work, just hangs)

    &#xA;

    import cv2&#xA;import av&#xA;&#xA;img = cv2.imread("test_image.jpeg")&#xA;cv2.imshow(&#x27;image&#x27;, img)&#xA;cv2.waitKey(0)&#xA;

    &#xA;

    OS : Linux arch 5.18.3-arch1-1 #1 SMP PREEMPT_DYNAMIC Thu, 09 Jun 2022 16:14:10 +0000 x86_64 GNU/Linux

    &#xA;

    Am I doing something wrong or is this a (un-)known issue ?

    &#xA;