Recherche avancée

Médias (91)

Autres articles (55)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

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

  • OpenCV Encoding to H264 changing original RGB pixel values for gray images

    13 janvier 2020, par CristoJV

    I have the following issue :
    I’m creating a uniform gray color video (for testing) using OpenCV VideoWriter. The output video will reproduce a constant image where all the pixels must have the same value x (25, 51, 76,... and so on).
    When I generate the video using MJPG Encoder :

    vw = cv2.VideoWriter('./videos/input/gray1.mp4',
           cv2.VideoWriter_fourcc(*'MJPG'),
           fps,(resolution[1],resolution[0]))

    and read the output using the VideoCapture class, everything just works fine. I got a frame array with all pixel values set to (25,51,76 and so on).
    However when I generate the video using HEV1 (H.265) or also H264 :

    vw = cv2.VideoWriter('./videos/input/gray1.mp4',
           cv2.VideoWriter_fourcc(*'HEV1'),
           fps,(resolution[1],resolution[0]))

    I run into the following issue. The frame I got in BGR format follows the next configuration :

    • The blue channel value is the expected value (x) minus 4 (25-4=21, 51-4=47, 76-4=72, and so on).
    • The green channel is the expected value (x) minus 1 (25-1=24, 51-1=50, 76-1=75).
    • The red channel is the expected value (x) minus 3 (25-3=22, 51-3=48, 76-3=73).

    Notice that the value is reduced with a constant value of 4,1,3, independently of the pixel value (so there is a constant effect).
    What I could explain is a pixel value dependable feature, instead of a fixed one.
    What is worse is that if I choose to generate a video with frames consisting in every color (pixel values [255 0 0],[0 255 0] and [0 0 255]) I get the corresponding outputs values ([251 0 0],[0 254 0] and [0 0 252])
    I though that this relation was related to the grayscale Y value, where :

    Y = 76/256 * RED + 150/256 * GREEN + 29/256 * BLUE

    But this coefficients are not related with the output obtained. Maybe the problem is the reading with VideoCapture ?

    EDIT :
    In case that I want to have the same output value for the pixels (Ej : [10,10,10] experimentally I have to create a img where the red and blue channel has the green channel value plus 2 :

    value = 10
    img = np.zeros((resolution[0],resolution[1],3),dtype=np.uint8)+value
       img[:,:,2]=img[:,:,2]+2
       img[:,:,1]=img[:,:,1]+0
       img[:,:,0]=img[:,:,0]+2

    Anyone has experience this issue ? It is related to the encoding process or just that OpenCV treats the image differently, prior encoding, depending on the fourcc parameter value ?

  • Revision 70728 : Un chouilla de phpdoc et éviter une notice si ...

    14 mars 2013, par kent1@… — Log

    Un chouilla de phpdoc et éviter une notice si $argscontexte ?modele ? n’est pas défini

  • Revision 70728 : Un chouilla de phpdoc et éviter une notice si ...

    14 mars 2013, par kent1@… — Log

    Un chouilla de phpdoc et éviter une notice si $argscontexte ?modele ? n’est pas défini