
Recherche avancée
Autres articles (111)
-
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. -
L’utiliser, en parler, le critiquer
10 avril 2011La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
Une liste de discussion est disponible pour tout échange entre utilisateurs.
Sur d’autres sites (13857)
-
Pass ffmpeg Stream to cv2
28 avril 2021, par GeorgI would like to use the redirection operator to bring the stream from ffmpeg to cv2 so that I can recognize or mark the faces on the stream and redirect this stream again so that it runs under another stream.


One withoutfacedetect and One withfacedetect.


raspivid -w 1920 -h 1080 -fps 30 -o - -t 0 -vf -hf -b 6000000 | ffmpeg -f h264 -i - -vcodec copy -acodec aac -ab 128k -g 50 -strict experimental -f tee -map 0:v "[f=flv]rtmp://xx.xx.xx.xx/live/withoutfacedetect |[f=h264]pipe:1" > test.mp4



I then read up on CV2 and came across the article.




I then ran the script with my picture and was very amazed that there was a square around my face.


But now back to business. What is the best way to do this ?


-
Capture UDP multicast stream with Python and OpenCV
19 novembre 2017, par Trung Nguyen HuuI am working on a small project in Ubuntu 14.04 LTS. I want to capture an UDP multicast stream and get a frame from the stream to do image processing. I use opencv3.3.1 and python3.4 My codes :
import numpy,cv2
cap = cv2.VideoCapture('udp://@239.0.0.1:1234')
print (cap.isOpened())Right i want to check if the stream is captured first. However, the program freeze at the VideoCapture line. In my opencv build, i have ffmpeg and gstreamer installed. Can anyone help ?
-
FFMpeg create thumbnail from HLS Live stream
4 septembre 2019, par DasioI would like to create a thumbnail for HLS stream.
I am doing it already with mp4 files
like thisffmpeg -y -ss 00:00:10.000 -i file.mp4 -vframes 1 -vf scale=256:144 out.jpg
And it works great.
But when I try it with HLS live stream, it just spams
Opening 'liveX.ts' for reading.
Even though 10th second is in ’live1.ts’
Any solution to this ? And I would like if duration is not in stream, just report error.