
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (91)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette 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, parThe 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 2011Vous 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 -
libavutil/eval : Add round function to expression parser
6 juin 2017, par Kevin Mark -
ffmpeg combining live video from 3 cameras
18 juillet 2022, par annrI 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.


This is the command I am using :


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 -



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.


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


Thanks !