
Recherche avancée
Autres articles (96)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Installation en mode standalone
4 février 2011, parL’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
[mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)
Sur d’autres sites (7662)
-
Revision 37648 : On pouvait toujours courir derrière ce bug ... si on n’utilise pas le bon ...
25 avril 2010, par kent1@… — LogOn pouvait toujours courir derrière ce bug ... si on n’utilise pas le bon argument…
-
avfilter/vf_convolution : add float user_rdiv[4] to allow user options to apply correctly
24 février 2024, par Stone Chenavfilter/vf_convolution : add float user_rdiv[4] to allow user options to apply correctly
Previously to support dynamic reconfigurations of the matrix string (e.g. 0m),
the rdiv values would always be cleared to 0.f, causing the rdiv to be
recalculated based on the new filter. This however had the side effect of
always ignoring user specified rdiv values.Instead float user_rdiv[0] is added to ConvolutionContext which will store the
user specified rdiv values. Then the original rdiv array will store either the
user_rdiv or the automatically calculated 1/sum.This fixes trac ticket #10294, #10867.
Signed-off-by : Stone Chen <chen.stonechen@gmail.com>
Signed-off-by : Marton Balint <cus@passwd.hu> -
How to stream a USB webcam connected to a raspberry pi using gstreamer (RTMP)
24 août 2022, par Todd MurphyI am really hitting a wall when trying to use gstreamer to stream my usb webcam to a RTMP server. The command I keep using is this :


gst-launch-1.0 -e /dev/video0 is-live=true ! video/x-raw,width=1280,height=720 ! videoconvert ! omxh264enc ! video/x-h264 ! h264parse ! video/x-h264 ! queue ! flvmux name=mux ! rtmpsink location='rtmp://<server>'
</server>


The problem is, it keeps failing with this error :


WARNING: erroneous pipeline: no source element for URI "/dev/video0"



Any help would greatly be appreciated. This command is not set in stone I need to be able to just stream my usb webcam to an RTMP server in the end. It is a raspberry pi 4 with the latest 64bit OS.
Thank you.