Recherche avancée

Médias (91)

Autres articles (6)

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

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

Sur d’autres sites (3110)

  • indeo4 : expand allowed quantiser range

    31 mai 2013, par Kostya Shishkov
    indeo4 : expand allowed quantiser range
    

    Indeo 4 has quantiser range 0-31 instead of 0-23 for Indeo 5, and clipping
    quantiser leads to incorrect quantisation and DC prediction on low-quality
    videos.

    This fixes bug 259.

    • [DBH] libavcodec/ivi_common.c
  • avutil/hwcontext_videotoolbox : add frame hwctx to specify color range

    29 décembre 2023, par Zhao Zhili
    avutil/hwcontext_videotoolbox : add frame hwctx to specify color range
    

    VideoToolbox use different identifiers for the same pixel format
    with different color range, like

    kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange
    kCVPixelFormatType_420YpCbCr8BiPlanarFullRange.

    Before the patch, vt_pool_alloc() always use limited range, and it
    will fail for pixel format AV_PIX_FMT_BGRA since there is no limited
    range kCVPixelFormatType_32BGRA.

    Signed-off-by : Zhao Zhili <zhilizhao@tencent.com>

    • [DH] libavutil/hwcontext_videotoolbox.c
    • [DH] libavutil/hwcontext_videotoolbox.h
    • [DH] libavutil/version.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.