Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (71)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (7178)

  • hevc : pass the full HEVCNAL struct to decode_nal_unit

    25 janvier 2015, par Hendrik Leppkes
    hevc : pass the full HEVCNAL struct to decode_nal_unit
    

    This enables decode_nal_unit to access additional fields added in
    subsequent commits.

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] libavcodec/hevc.c
  • Anomalie #2583 (Fermé) : le compagnon reste vert quand on change les couleurs

    8 mars 2012, par marcimat -
  • 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;