Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (40)

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

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (5272)

  • Multiple running with executable built with pyinstaller

    2 avril 2020, par seokrae.kim

    I build my main.py to exe by pyinstaller like this.

    



    pyinstaller main.py --add-binary C:\sources\untitled\venv\Lib\site-packages\cv2\opencv_videoio_ffmpeg420_64.dll;.


    



    It is simple RTSP receiver program so it need opencv_ffmpeg binary to run.
Running command like this

    



    main.exe -address rtsp://127.0.0.1/profile1/media.smp


    



    It works I expected.
But when the process running in multiple, (I mean more than 2 same process running)
all process not responding and shutting down.

    



    I try clone whole result (dist folder content) to another folder
and run process another path but result is same. like this.

    



    D:\main1\main.exe -address rtsp://127.0.0.1/profile1/media.smp
D:\main2\main.exe -address rtsp://127.0.0.2/profile1/media.smp


    


  • ffplay, rtsp and tcp transport protocol

    27 juillet 2022, par Denis Gottardello

    I have a problem on connect to a rtsp camera using ffplay.
The camera is under a router that permits only the TCP protocol.
I can watch the camera using ffplay only if I am in the same network of the camera.
So, when I am out, using this command line

    


    ffplay rtsp://address:554/onvif1


    


    or this

    


    ffplay -rtsp_transport tcp rtsp://address:554/onvif1


    


    I cannot watch the camera.
This is the output of ffplay (the latest).

    


    [rtsp @ 059ee680] Nonmatching transport in server reply  0B f=0/0
rtsp://address:554:/onvif1: Invalid data found when processing input


    


    Trying with VLC and I can watch the camera without any problem, both when I am in the same network or when I am out. The VLC output says that VLC uses TCP.
Has someone got a suggestion ?

    


  • Unable to play RTSP URL with ffplay but able to play it with VLC

    15 février 2018, par Dims

    I am trying to see my IP camera with VLC and see it with VLC with address

    rtsp://192.168.1.168

    Unfortunately, when I enter the same address into ffplay

    ffplay rtsp://192.168.1.168

    I get multiple errors like

    UDP timeout, retrying with TCP 0B f=0/0
    method PAUSE failed: 455 Method Not Valid In This State

    why and how to overcome ?