
Recherche avancée
Médias (1)
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (73)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (10506)
-
Use an IP-camera with webRTC
11 avril 2016, par MinzI want to use an IP camera with webrtc. However webrtc seems to support only webcams. So I try to convert the IP camera’s stream to a virtual webcam.
I found software like IP Camera Adapter, but they don’t work well (2-3 frames per second and delay of 2 seconds) and they work only on Windows, I prefer use Linux (if possible).
I try ffmpeg/avconv :
-
firstly, I created a virtual device with v4l2loopback (the command was :
sudo modprobe v4l2loopback
). The virtual device is detected and can be feed with a video (.avi) with a command like :ffmpeg -re -i testsrc.avi -f v4l2 /dev/video1
-
the stream from the IP camera is available with :
rtsp://IP/play2.sdp
for a Dlink DCS-5222L camera. This stream can be captured by ffmpeg.
My problem is to make the link between these two steps (receive the rstp stream and write it to the virtual webcam). I tried
ffmpeg -re -i rtsp://192.168.1.16/play2.sdp -f video4linux2 -input_format mjpeg -i /dev/video0
but there is an error with v4l2 (v4l2 not found).Does anyones has an idea how to use an IP camera with webRTC ?
-
-
c++ get supported camera resolutions and frame rate OSX
11 février 2016, par SolidusI am using ffmpeg to record a video from a connected camera. I would like to be able to retrieve the supported camera resolution and framerate. Unfortunately this is currently not supported in ffmpeg on OSX. Are there other solutions out there ? I’ve searched google and stackoverflow but the best I could find was a solution for windows using dshow.
I imagine this is possible with avfoundation but I don’t have any experience with it. I am also using qt (not quicktime, the qt framework) so it would have to be compatible with that. :)
Thank you for your time.
-
Set a Device Camera as Source for OpenCVFrameGrabber
2 juillet 2018, par Dario FigliuzziHow can i set the camera of my android device as source for OpenCVFrameGrabber class ?
The library is org.bytedeco.javacv.OpenCVFrameGrabber ;.The part of the code :
private static final int CAMERA_SRC = 0;
OpenCVFrameGrabber= OpenCVFrameGrabber.createDefault(CAMERA_SRC);
OpenCVFrameGrabber.start();In this way the laptop camera is setted.
Is there an easy way to set the camera of the android device ?