Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (84)

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

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

Sur d’autres sites (13816)

  • Capturing frames from an h264 stream with gst/ffmpeg

    13 août 2021, par Yuval.Sightec

    I want to save (as jpegs) or reach the data of the frames streaming from my usb camera.
Meaning that I want to use the h.264 hardware encoding (I running it on nvdia jetson) in order to get a sequence of compressed files (I prefer not save it on the disc and get an array, if possible).
Can I do that ?

    



    So far I tried this :

    



    gst-launch-1.0 -v v4l2src device=/dev/video0 ! video/x-h264,framerate=30/1,stream-format=byte-stream ! decodebin ! videorate ! video/x-raw,framerate=30/1 ! videoconvert ! jpegenc ! multifilesink location=img_%04d.jpg


    



    but I get an internal data flow error from v4l2src0 element, and an error from gst_base_src_loop() after the pipeline was set to PLAYING.

    



    Can anybody please help me ?

    



    b.t.w- It doesnt have to be neccecerly h.264 encoding, it also can be mpeg encoding or something else : I want to use the fact that it is pictures of a video, frames, in order to get smaller size frames.

    



    Thank you so much !

    


  • avfilter/vf_mpdecimate : support more pixel formats, including GBRP

    4 mars 2015, par Peter Cordes
    avfilter/vf_mpdecimate : support more pixel formats, including GBRP
    

    Add some planar formats we can handle without distorting the meaning of
    hi and lo.

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

    • [DH] libavfilter/vf_mpdecimate.c
  • Streaming Local Video file as RTSP and publish to a port

    25 août, par Gary Lu

    I am trying to setup a single docker that can stream local file as rtsp to a port.

    &#xA;

    Meaning, within the docker there will be some local videos publish as rtsp to a port of that docker.

    &#xA;

    Then externally, I can fetch the stream from rtsp :// :/mystream

    &#xA;

    I tried looking into rtsp-simple-server, but it does not seem to have the option of local file streaming, rather it requires first set up a docker server then using ffmpeg to publish video to that server.

    &#xA;

    Is there a way to achieve the wanted single docker RTSP stream server ?

    &#xA;

    There is another response of building a docker with VLC installed, however it seem to be bulky and overkill, plus the outcome does not seem to be as smooth.

    &#xA;