Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (96)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (5847)

  • How to ignore invalid dropping st:0 that broke the stream

    11 novembre 2023, par sazer kpla

    I am using ffmpeg to capture live stream in flv format 'there is m3u8 format' and restreamed to Youtube, my problem is when i run the code above the ffmpeg keep stuck on 'invalid dropping st:0' and that broke the stream.

    


    Is there a way to ignore those dropped frames , or at least stop ffmpeg and I will loop it to keep the stream running, by reading the output log so when there is dropped frame I will close ffmpeg and run it again.

    


    The second question is it possible to capture the live flv stream and save it in flv file and made some deley after that i will restream it again to youtube
live stream in FLV fromat ----> save it in file -----> wait 1 min ------> stream the saved file to youtube this is the code i use :

    


    #!/bin/bash
u="https://pull-flv-l11-va01.xxxxxxxx.com/stage/stream-2995889464288477225_ld.flv"

key_stream="rtmp://a.rtmp.youtube.com/live2/zzzzz-zzzzz-zzzzz-zzzzz"
trap printout SIGINT
printout() {
    echo ""
    echo "Finished with count=$count"
    exit
}
while :
do
    ((count++))

ffmpeg  -i $u \
-c:v libx264 -b:a 384k -ac 2 -preset slow -crf 28 \
-profile:v high -bf 2 -pix_fmt yuv420p \
-threads 4 -xerror \
-maxrate 5M -bufsize 10M -r 30 -g 15 -coder 1 -f flv $key_stream

    sleep 1
done


    


      

    1. Read the log of ffmpeg and close it it immediatly when dropped frames appeared and run it again
    2. 


    3. Using a file to store the coming stream and restreamed, but I wish to keep that file in small size because the stream is too long
    4. 


    5. The best solution is to just ignore those frames or replace them with black pic to keep the live stream running
    6. 


    


  • Force ffmpeg to ignore error when connecting failed

    2 avril 2015, par Given92

    I’m trying to deploy a live stream delivery system with nginx and nginx-rtmp-module.

    For every node in my system, I wish it could ’forward’ the live stream received to downstream node. I try to implement it by following config in my nginx.conf :

    exec_push ffmpeg -i rtmp://localhost/src/test -vcodec copy -strict -2 -ar 44100 -ac 1 -f flv rtmp://<downstreaming a="a">/src/test -f flv rtmp://<downstreaming b="b">/src/test
    </downstreaming></downstreaming>

    it works when everything runs well, but if the downstream node is down, this command will exit and none of the downstream nodes could receive the live stream.

    How could I force ffmpeg to ignore the connetion refused, or is there any better alternative to my implementation ?

  • avcodec/dvdsubdec : ignore h = 1 case, to properly decode subtitle

    17 septembre 2016, par Paul B Mahol
    avcodec/dvdsubdec : ignore h <= 1 case, to properly decode subtitle
    

    Fixes #5825. If h == 1, second decode_rle() fails.

    Regression since : 3f0a3e9e127d067c5cf65640a44765c1ddd01622.

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavcodec/dvdsubdec.c