Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (91)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

Sur d’autres sites (13037)

  • avcodec : add amr parser

    30 septembre 2021, par Paul B Mahol
    avcodec : add amr parser
    
    • [DH] Changelog
    • [DH] libavcodec/Makefile
    • [DH] libavcodec/amr_parser.c
    • [DH] libavcodec/parsers.c
    • [DH] libavcodec/version.h
    • [DH] libavformat/amr.c
  • libavutil/eval : Add round function to expression parser

    6 juin 2017, par Kevin Mark
    libavutil/eval : Add round function to expression parser
    

    We have floor, ceil, and trunc. Let's add round.

    Signed-off-by : Kevin Mark <kmark937@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/utils.texi
    • [DH] libavutil/eval.c
  • ffmpeg combining live video from 3 cameras

    18 juillet 2022, par annr

    I have 3 USB cameras streaming video at a specific resolution. I am trying to merge the videos together as an hstack and display using ffplay.

    &#xA;

    This is the command I am using :

    &#xA;

    ffmpeg -f dshow -pix_fmt uyvy422 -video_size 1280x2160 -i video="CAM_0" -f dshow -pix_fmt uyvy422 -video_size 1280x2160 -i video="CAM_1" -f dshow -pix_fmt uyvy422 -video_size 1280x2160 -i video="CAM_2" -filter_complex hstack=3 -f nut - | ffplay -&#xA;

    &#xA;

    The USB Camera system will only start video stream only when 3 cameras are enabled (or started by ffmpeg). However when I am using the above command, ffmpeg starts CAM_0 and waits for data. As a result CAM_1 and CAM_2 are not started and video stream does not start.

    &#xA;

    Is there any way where I can start all 3 inputs simultaneously using ffmpeg and then merge them together using hstack ?

    &#xA;

    Thanks !

    &#xA;