
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (48)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (7346)
-
ffplay playback h264 encoded camera preview blur
11 juillet 2019, par doufuI use the ffplay tool provided by ffmpeg to play an h264 encoded camera. When the camera is still, the interface will be very clear, but when I cover the camera for a while to remove the occlusion or move the camera quickly, the interface will be blurred, resulting in a mosaic-like picture, but the interface will become clear after a few seconds.
Why is this happening ?
Am I missing some options to run ffplay ?
PS:Using AMCap will not have the above problem.
The command opening my camera I used :ffplay.exe -f dshow -i video="camera name"
Preview screencast video is uploaded to youtube
-
Revision ce08006951 : Always check and free denoiser buffer memory space The vp9_denoiser_free() func
7 janvier 2015, par Jingning HanChanged Paths :
Modify /vp9/encoder/vp9_encoder.c
Always check and free denoiser buffer memory spaceThe vp9_denoiser_free() function will internally check if the
buffer pointers are NULL. This commit makes the encoder always
call vp9_denoiser_free() after finishing encoding. It protects the
case where noise_sensitivity_level is changed during encoding
process and happen to be turned off towards the end of sequence,
which could result memory space allocated to denoiser not being
released.Change-Id : Ie20dc2f2e6e5fb6333fbab3356bc153978a6a0f8
-
Setting up a server to redistribute a webcam stream
22 janvier 2013, par Martin TaleskiI am trying to set up a streaming server that will receive a RTP stream and redistribute it.
I am able to create the stream with :
ffmpeg -f video4linux2 -i /dev/video0 -vcodec mpeg2video -r 25 -pix_fmt yuv420p -me_method epzs -b 2600k -bt 256k -f rtp rtp://myserver:8090/
I see the UDP packets coming to my server, but I was not able to set up a feed and a stream with ffserver. I can also view the stream though VLC if I change the destination IP of the server with my local IP.
I am now considering writing a daemon in python or perl or C, that will read the UDP packets coming on port 8090 on the server, and distribute them on another port. Not sure if this is a great idea, but can not find any other clues...
Any clues how to make this happen ?