Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (96)

  • 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 ;

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (11551)

  • Run ffmpeg as window service

    7 juin 2018, par Brad Reiter

    My setup is like this :

    It contains components :

    • Web Cam : which send out the RTP packets when i get a stream request
    • Agent server : Which receives the stream from the Webcam and forwards
      the same to ffmpeg server.
    • ffmpeg server : this where i need to run the ffmpeg as window service,
      receives the rtp stream sent by agent server and create a ts file.

    What have i done is :

    I have setup the ffmpeg in one of my dev environment using this link :

    https://video.stackexchange.com/questions/20495/how-do-i-set-up-and-use-ffmpeg-in-windows

    My problems :

    • How to make ffmpeg run as daemon.?
    • How can i make ffmpeg aware that new stream is coming from agent
      server and start creating a ts file.?
    • Is there a way in ffmpeg that i reserve ports for ffmpeg and make it
      listen to all the ports for eg : reserve 2000 - 3000 ports and listen
      to them as soon as rtp stream arrives, convert to ts stream.

    Regards

  • frame_thread_encoder : make 'exit' member atomic.

    11 septembre 2017, par Ronald S. Bultje
    frame_thread_encoder : make 'exit' member atomic.
    

    Should fix the following tsan warning :

    WARNING : ThreadSanitizer : data race (pid=19806)
    Read of size 4 at 0x7b84000012f0 by thread T9 :
    #0 worker src/libavcodec/frame_thread_encoder.c:66 (ffmpeg+0x0000007f349e)
    [..]
    Previous write of size 4 at 0x7b84000012f0 by main thread (mutexes : write M1395) :
    #0 ff_frame_thread_encoder_free src/libavcodec/frame_thread_encoder.c:239 (ffmpeg+0x0000007f379e)
    [..]

    • [DH] libavcodec/frame_thread_encoder.c
  • pthread_frame : save the FF_DEBUG_THREADS option in PerThreadContext.

    10 juillet 2017, par Wan-Teh Chang
    pthread_frame : save the FF_DEBUG_THREADS option in PerThreadContext.
    

    Add the debug_threads boolean field to PerThreadContext. For
    PerThreadContext *p, p->debug_threads records whether the
    FF_DEBUG_THREADS bit is set in p->avctx->debug, and p->debug_threads and
    p->avctx->debug are kept in sync. The debug_threads field is defined as
    an atomic_int to allow atomic read by another thread in
    ff_thread_await_progress().

    This fixes the tsan warning that
    2e664b9c1e73c80aab91070c1eb7676f04bdd12d attempted to fix :

    WARNING : ThreadSanitizer : data race (pid=452658)
    Write of size 4 at 0x7b640003f4fc by main thread (mutexes : write M248499) :
    #0 update_context_from_user [..]/libavcodec/pthread_frame.c:335:19 (5ab42bb1a6f4b068d7863dabe9b2bacc+0xe73859)
    [..]
    Previous read of size 4 at 0x7b640003f4fc by thread T130 (mutexes : write M248502, write M248500) :
    #0 ff_thread_await_progress [..]/libavcodec/pthread_frame.c:591:26 (5ab42bb1a6f4b068d7863dabe9b2bacc+0xe749a1)

    Signed-off-by : Wan-Teh Chang <wtc@google.com>
    Signed-off-by : Ronald S. Bultje <rsbultje@gmail.com>

    • [DH] libavcodec/pthread_frame.c