Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (39)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

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

  • rtsp : Clear the session id on redirects

    24 septembre 2014, par Martin Storsjö
    rtsp : Clear the session id on redirects
    

    This fixes handling redirects in case the server provided a session
    id within the redirect reply.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/rtsp.c
  • (FFmpeg) VP9 Vaapi encoding to a .mp4 or .webm container from given official ffmpeg example

    13 mai 2021, par User800222

    I'm trying to implement vp9 hardware acceleration encoding process. I followed ffmpeg offical github's example (Here -> vaapi_encode.c).

    &#xA;&#xA;

    But given example only save a .yuv file to .h264 file, I would like to save the frames to either .mp4 or .webm container. And having the ability to control the quality, and etc.

    &#xA;&#xA;

    I'm not reading frames from a file, I'm collecting frames from a live feed. When having full 5 secs of frames from the live feed, encode those frames using vp9_vaapi to a 5 secs .mp4 file.

    &#xA;&#xA;

    I'm able to save all the 5 secs frames from my live feed to a .mp4 or .webm file, but they couldn't be played correctly (more precisely : keep loading, and I open).

    &#xA;&#xA;

    The result from the official site's example :

    &#xA;&#xA;

    enter image description here

    &#xA;&#xA;

    The cpu encoded vp9 .mp4 file result :

    &#xA;&#xA;

    enter image description here

    &#xA;&#xA;

    Edit :&#xA;Result&#xA;enter image description here

    &#xA;

  • avformat/mpegts : Don't leave context in inconsistent state upon error

    10 août 2020, par Andreas Rheinhardt
    avformat/mpegts : Don't leave context in inconsistent state upon error
    

    Up until now, opening a section filter works as follows : A filter is
    opened and (on success) attached to the MpegTSContext. Then a buffer for
    said filter is allocated and upon success attached to the section
    filter ; on error, the filter is simply freed without removing it from
    the MpegTSContext, leaving the latter in an inconsistent state. This
    leads to use-after-frees lateron.

    This commit fixes this by allocating the buffer first ; the filter is
    only opened if the buffer could be successfully allocated.

    Reviewed-by : Marton Balint <cus@passwd.hu>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/mpegts.c