Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (17)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

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

  • avformat/avio : make the logic simple

    8 avril 2018, par Jun Zhao
    avformat/avio : make the logic simple
    

    remove the "ret" to make the code simple and generic.

    Signed-off-by : Jun Zhao <mypopydev@gmail.com>

    • [DH] libavformat/avio.c
  • x86 : Use simple nop codes for = sse (rather than = mmx)

    30 janvier 2013, par Ronald S. Bultje

    x86 : Use simple nop codes for = sse (rather than = mmx)

  • Two USB cams to two rtsp-simple-servers simultaneously

    20 juin 2022, par Imm

    Like in title, I have 2 USB cams and I need to create two RTSP streams. I'm using FFmpeg and rtsp-simple-server and it's working with one cam with this configuration (rtsp-simple-server.yml) :

    &#xA;

    paths:&#xA;  cam:&#xA;    runOnInit: ffmpeg -f dshow -video_device_number 0 -i video="UVC Camera" -c:v libx264 -preset ultrafast -tune zerolatency -b:v 600k -f rtsp rtsp://192.168.5.203:8554/cam&#xA;    runOnInitRestart: yes&#xA;

    &#xA;

    but I can't figure it out with second cam. I tried to make second instance of rtsp-simple-server in separete console and it doesn't work. I set it up like this (and few other ways with different port etc.) :

    &#xA;

    paths:&#xA;  cam:&#xA;    runOnInit: ffmpeg -f dshow -video_device_number 1 -i video="UVC Camera" -c:v libx264 -preset ultrafast -tune zerolatency -b:v 600k -f rtsp rtsp://192.168.5.203:8555/cam2&#xA;    runOnInitRestart: yes&#xA;

    &#xA;

    I get this error as result : Only one use of each socket address (protocol / network address / port) is allowed. and I still think there is better way to solve this with proper configuration.

    &#xA;

    I hoping for your help !

    &#xA;