Recherche avancée

Médias (91)

Autres articles (31)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (8551)

  • FFmpeg - how to ensure dropping frames delayed >1 [s] ?

    6 septembre 2020, par user3469024

    I am using ffmpeg and mpv, to stream audio/video between two hosts. One of the hosts is sending stream with ffmpeg :

    


    ffmpeg -f pulse            \
       -thread_queue_size 0 \
       -i audioInput         \
       -f video4linux2        \
       -thread_queue_size 0    \
       -standard PAL            \
       -i videoInput             \
       -vcodec mpeg4              \
       -r 10                       \
       -s 176x144                   \
       -maxrate 256K                 \
       -acodec pcm_s16le              \
       -ar 8000                        \
       -b:a 32k                         \
       -af aresample=async=1000          \
       -f rtsp                            \
       -rtsp_transport tcp                 \
    url


    


    and second host is receiving with mpv :

    


    mpv url --rtsp-transport=tcp             \
        --profile=low-latency             \
        --demuxer-lavf-o=rtsp_flags=listen \
        --no-cache                          \
        --autosync=30                        \
        --no-demuxer-thread                   \
        --demuxer-lavf-analyzeduration=0       \
        --demuxer-lavf-probesize=32


    


    I have tried a lot of options and combinations to reduce latency as much as possible. Above commands works nice, the latency on startup is < 1s. Unfortunately, sometimes, delay appears during streaming and it can even increase in time. My goal is to ensure, that delay will be more or less constant (close to 1s), and if some delay will appear, delayed frames will be dropped (even if it will affect audio or video quality).

    &#xA;

    How to force ffmpeg/mpv to drop frames, which are delayed e.g. more than 1s ?

    &#xA;

  • FFmpeg - how to ensure dropping delayed frames

    2 septembre 2020, par user3469024

    I am using ffmpeg and mpv, to stream audio/video between two hosts. One of the hosts is sending stream with ffmpeg :

    &#xA;

    ffmpeg -f pulse -thread_queue_size 0 -i audioInput -f video4linux2 -thread_queue_size 0 -standard PAL -i videoInput -vcodec mpeg4 -r 10 -s 176x144 -maxrate 256K -acodec pcm_s16le -ar 8000 -b:a 32k -af aresample=async=1000 -f rtsp -rtsp_transport tcp url&#xA;

    &#xA;

    and second host is receiving with mpv :

    &#xA;

    mpv url --rtsp-transport=tcp --profile=low-latency --demuxer-lavf-o=rtsp_flags=listen --no-cache --autosync=30 --no-demuxer-thread --demuxer-lavf-analyzeduration=0 --demuxer-lavf-probesize=32&#xA;

    &#xA;

    I have tried a lot of options and combinations to reduce latency as much as possible. Above commands works nice, the latency on startup is < 1s. Unfortunately, sometimes, delay appears during streaming and it can even increase in time. My goal is to ensure, that delay will be more or less constant (close to 1s), and if some delay will appear, delayed frames will be dropped (even if it will affect audio or video quality).

    &#xA;

    How to force ffmpeg/mpv to drop frames, which are delayed e.g. more than 1s ?

    &#xA;

  • avutil/buffer : add #if USE_ATOMICS around atomics specific functions to ensure sync...

    6 décembre 2014, par Michael Niedermayer
    avutil/buffer : add #if USE_ATOMICS around atomics specific functions to ensure sync types arent mixed by mistake
    

    Fixes CID1257011

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavutil/buffer.c