Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (102)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (6828)

  • parseutils : accept only full "ms" suffix

    3 mars 2018, par Rostislav Pehlivanov
    parseutils : accept only full "ms" suffix
    

    The commit which added those was pushed prematurely before anyone could object
    to illogical suffixes like just m for milliseconds. Without this, we'd be locked
    into never being able to implement the "m" suffix for minutes.

    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] libavutil/parseutils.c
  • How to get rid of errors "jitter buffer full" in ffmpeg ?

    31 janvier 2021, par jidckii

    How to get rid of errors jitter buffer full ?
    &#xA;I use ffmpeg from one of the latest snapshots.
    &#xA;ffmpeg version N-90078-gf611fef Copyright (c) 2000-2018 the FFmpeg developers

    &#xA;&#xA;

    The problem is that from the camera on rtsp there is such a stream :
    &#xA;http://ibb.co/fmckCc
    &#xA;It is not possible to fix this from the camera side.

    &#xA;&#xA;

    I accept it like this :

    &#xA;&#xA;

    ffmpeg \&#xA;-strict experimental \&#xA;-fflags &#x2B; genpts \&#xA;-fflags &#x2B; latm \&#xA;-seek2any 1 \&#xA;-avoid_negative_ts &#x2B; make_zero \&#xA;-max_delay 5000000 \&#xA;-rtsp_transport udp \&#xA;-i rtsp: // admin: @ 192.168.87.21: 554/0? .sdp \&#xA;-map 0 \&#xA;-r 15 \&#xA;-c: v copy \&#xA;-an \&#xA;-f mpegts udp: //239.0.0.1: 1234? ttl = 1? pkt_size = 1316&#xA;

    &#xA;&#xA;

    I later start to get errors from time to time

    &#xA;&#xA;

    [rtsp @ 0x154d180] jitter buffer full&#xA;[rtsp @ 0x154d180] RTP: missed 1 packets&#xA;[rtsp @ 0x154d180] jitter buffer full&#xA;[rtsp @ 0x154d180] RTP: missed 1 packets&#xA;[rtsp @ 0x154d180] jitter buffer full&#xA;[rtsp @ 0x154d180] RTP: missed 2 packets&#xA;[rtsp @ 0x154d180] jitter buffer full&#xA;[rtsp @ 0x154d180] RTP: missed 4 packets&#xA;

    &#xA;&#xA;

    because of this the picture crumbles.

    &#xA;&#xA;

    I increased the udp buffer in the linux kernel settings :

    &#xA;&#xA;

    net.core.rmem_max = 16777216&#xA;net.core.wmem_max = 16777216&#xA;net.ipv4.udp_mem = 8388608 12582912 16777216&#xA;net.ipv4.tcp_rmem = 4096 87380 8388608&#xA;net.ipv4.tcp_wmem = 4096 65536 8388608&#xA;

    &#xA;&#xA;

    It did not solve my problem.
    &#xA;Tell me, how can you deal with such errors ?

    &#xA;

  • avformat/matroskadec : force full frame parsing of MLP/TrueHD streams

    30 janvier 2018, par James Almer
    avformat/matroskadec : force full frame parsing of MLP/TrueHD streams
    

    There's at least one known file with a TrueHD stream that hasn't
    been correctly muxed, and requires full frame parsing and repack.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/matroskadec.c