Recherche avancée

Médias (91)

Autres articles (44)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (5953)

  • Revision 03a3ba4a0d : VP9 denoiser implemented FILTER_BLOCK case Renamed updating_running_avg() to fi

    17 juin 2014, par Tim Kopp

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



    VP9 denoiser implemented FILTER_BLOCK case

    Renamed updating_running_avg() to filter(). Extended function with the rest of
    the filter procedure. Made all of the empirically-determined constants used in
    VP8 into functions so they can be tweaked more easily.

    Change-Id : I41730c8c92370c76885950a43742347477ca4e7e

  • Ffmpeg unable to initialize swsContext for H264 frame data received through RTP Payload

    26 mars 2015, par Praveen

    I am trying to decode H264 video frames received through RTSP streaming.

    I followed this post : How to process raw UDP packets so that they can be decoded by a decoder filter in a directshow source filter

    I was able to identify start of the frame & end of the frame in RTP packets and reconstructed my Video Frame.

    But I didnt receive any SPS,PPS data from my RTSP session. I looked for string "sprop-parameter-sets" in my SDP(Session Description Protocol) and there was none.

    Reconstructing Video Frame from RTP Packets :

    Payload in the first RTP Packet goes like this : "1c 80 00 00 01 61 9a 03 03 6a 59 ff 97 e0 a9 f6"

    This says that its a fragmented data("1C") and start of the frame("80"). I copied the rest of the payload data(except the first 2 bytes "1C 80").

    Following RTP Packets have the "Payload" start with "1C 00" which is continuation of the frame data. I kept adding payload data(except the first 2 bytes "1C 00") into the byte buffer for all the following RTP Packets.

    When I get the RTP packet with payload starts with "1C 40", which is end of the frame, I copied the rest of the payload data(except the first 2 bytes "1C 40") of that RTP Packet into the byte buffer.

    Thus I reconstructed the Video Frame into the byte buffer.

    Then I prepended 4 bytes [0x00, 0x00 , 0x00, 0x01] to the byte buffer before sending to the decoder, because I didnt receive any SPS, PPS NAL bytes.

    When I send this byte buffer to the decoder, decoder fails when it tries to initialize sws Context.

    Am I sending the NAL bytes and video frame data correctly ?

  • Is it possible to encrypt the entirety of a video by encrypting specific frames ?

    1er février 2015, par Fjotten

    I would have thought that if I encrypted all I-frames, the rest of the video would be encrypted because B- and P-frames are both derived from I-frames. Having done a little bit of testing - randomizing each pixel of an I-frame - it does not seem that this is possible, so I wonder if it is even possible ? To encrypt the entire video do I have to explicitly encrypt every frame ?