Recherche avancée

Médias (0)

Mot : - Tags -/flash

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

Autres articles (74)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (13357)

  • Revision d928b34efe : Allow full RD TX size search for GF/ALT at speed 2 For speed 3 and above, such

    21 avril 2014, par Yaowu Xu

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



    Allow full RD TX size search for GF/ALT at speed 2

    For speed 3 and above, such search is only allowed at speed 3.
    The change helped cif and stdhd set by 1.2% and .7% in compression,
    but increased the encoding time by around 5%.

    Change-Id : Ifa4832327f1c1bef3decb032ceb769cbf50e059f

  • Use FFmpeg to generate a movie with alpha channel from separate video and fill movies ?

    25 octobre 2017, par jeffpatt

    I have two movies : input_v.mp4 and input_k.mp4. input_v is the video fill, input_k is a black and white matte for keying.

    I want to use FFmpeg to create output.mov in the Avid DNXHD codec, with input_v as the fill (RGB) video and the alpha (A) built from the luma values of input_k.

    Is this possible ?

  • 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 ?
    
I use ffmpeg from one of the latest snapshots.
    
ffmpeg version N-90078-gf611fef Copyright (c) 2000-2018 the FFmpeg developers

    



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

    



    I accept it like this :

    



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


    



    I later start to get errors from time to time

    



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


    



    because of this the picture crumbles.

    



    I increased the udp buffer in the linux kernel settings :

    



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


    



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