Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (82)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

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

Sur d’autres sites (10147)

  • Use -fno-common for mingw

    2 septembre 2010, par John Koleszar

    Use -fno-common for mingw

  • libavutil : move FFALIGN macro from common.h to macros.h

    10 décembre 2015, par Janne Grunau
    libavutil : move FFALIGN macro from common.h to macros.h
    

    Include macros.h explicitly in common.h so that external code using
    FFALIGN does not break. It was already implicitly included through
    version.h. Include macros.h in lls.h and internal.h for FFALIGN.
    lls.h was including common.h only for FFALIGN and internal.h was
    missing the include for FFALIGN. `make checkheaders` did not catch it
    because it’s an internal header.

    • [DBH] libavutil/common.h
    • [DBH] libavutil/internal.h
    • [DBH] libavutil/lls.c
    • [DBH] libavutil/lls.h
    • [DBH] libavutil/macros.h
  • VideoCapture always returns False in Python OPENCV [Linux]

    7 avril 2017, par Daniyal Shahrokhian

    Every time that I use VideoCapture trying to access the frames from a video file, the return value (ret) is false. See the sample code below :

    cap = cv2.VideoCapture('asd.mkv')
       vid = []
       while True:
           ret, img = cap.read()
           if not ret: # Always happens
               break
           vid.append(cv2.resize(img, (171, 128)))

    I have already tried absolutely everything I could find today by googling, including the OpenCV guide and this long issue on Github. Also, I read some solutions involving moving ffmpeg dll files, but that only was in the case of Windows.

    Any ideas ? Because I defenitely ran out of them.