Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (93)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

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

  • doc/decoders,decoders : add various missing final dots

    21 juin 2013, par Stefano Sabatini
    doc/decoders,decoders : add various missing final dots
    

    Enhance consistency.

    • [DH] doc/decoders.texi
    • [DH] doc/encoders.texi
  • 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 ?