Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (95)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Personnaliser l’affichage de mon Médiaspip

    27 mai 2013

    Vous pouvez modifier la configuration du squelette afin de personnaliser votre Médiaspip Voir aussi plus d’informations en suivant ce lien
    Comment supprimer le nombre de vues d’affichage d’un média ?
    Administrer > Gestion du squelette > Pages des articles et médias Cocher dans "Informations non affichées sur les pages de médias" les paramètres que vous ne souhaitez pas afficher.
    Comment supprimer le titre de mon Médiaspip dans le bandeau horizontal ?
    Administrer > Gestion du squelette > (...)

Sur d’autres sites (5026)

  • Revision 8281a19465 : vpxenc.sh : Add basic vp9 multithread encode test. - Change default real time sp

    24 juin 2015, par Tom Finegan

    Changed Paths :
     Modify /test/tools_common.sh


     Modify /test/vpxenc.sh



    vpxenc.sh : Add basic vp9 multithread encode test.

    - Change default real time speed to -6.
    - Add vpxenc_vp9_webm_rt_multithread, which encodes
    niklas_1280_720_30.y4m with 2 to 4 threads using 2 to 4
    tile columns.

    Change-Id : I4d86c3360aec67ae5d1ba82eb6e0f0be8068b5af

  • Revision debe4e920f : Reduce max_partition_size for low resolutions at speed 5. For speed 5 real-time

    20 juin 2015, par Marco

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c



    Reduce max_partition_size for low resolutions at speed 5.

    For speed 5 real-time mode, the selection of the partition size for
    superblocks on the segment (aq-mode=3) uses the non-rd recursive
    pick partition search, and can sometimes select 64x64.

    For low resolutions, visually better to limit this to 32x32.

    Change-Id : I69657a7ed8899f8b3cf8c9c318a2509c5c72c565

  • warning : Could not find codec parameters

    22 juin 2015, par kylel95
    import numpy as np
    import cv2

    cap = cv2.VideoCapture('camera10.h264') #Captures h264 file from folder
    while(cap.isOpened()):``
       ret, frame = cap.read()

       gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)

       cv2.imshow('frame', gray)
       if cv2.waitKey(20) & 0xFF == ord('q'):
           break

    cap.release()
    cv2.destroyAllWindows()

    Once I run this code I get : warning :

    Could not find codec parameters (../../modules/highgui/src/cap_ffmpeg_impl.hpp:556).

    Does anyone know what the problem is please ?