
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
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 (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (7397)
-
OpenCV conda installation (missing ffmpeg) - Windows
12 février 2017, par FZNBI managed to install OpenCV 3.1 using conda and Python 3.5 and everything seems to work fine.
However, when trying to import a video file via ffmpeg I get this :
import numpy as np
import cv2
cap = cv2.VideoCapture('data\vtest.avi')
cap.read()
#(False, None)When using still images or my laptop webcam it works (notice that the VideCapture returns
None
). Obviously, something is wrong with ffmpeg.I have tried a couple of things :
- Install ffmpeg binaries in my environment/PATH (works fine separately
but apparently OpenCV cannot call it since it looks for specific dlls). -
Move to the bin folder (which is in my path as well) the
dlls from the compiled version in
sourceforge :opencv_ffmpeg310_64.dll
opencv_ffmpeg310.dll
Neither of the two options worked. Any ideas ?
- Install ffmpeg binaries in my environment/PATH (works fine separately
-
OpenCV-Python installation (missing ffmpeg) - Windows
8 mai 2017, par FZNBI managed to install OpenCV 3.1 using conda and Python 3.5 and everything seems to work fine.
However, when trying to import a video file via ffmpeg I get this :
import numpy as np
import cv2
cap = cv2.VideoCapture('data\vtest.avi')
cap.read()
#(False, None)When using still images or my laptop webcam it works (notice that the VideCapture returns
None
). Obviously, something is wrong with ffmpeg.I have tried a couple of things :
- Install ffmpeg binaries in my environment/PATH (works fine separately
but apparently OpenCV cannot call it since it looks for specific dlls). -
Move to the bin folder (which is in my path as well) the
dlls from the compiled version in
sourceforge :opencv_ffmpeg310_64.dll
opencv_ffmpeg310.dll
Neither of the two options worked. Any ideas ?
- Install ffmpeg binaries in my environment/PATH (works fine separately
-
FFMPEG - Streaming GoPro4 to RSTP
20 mai 2017, par WingedGreeting !
I’m planning to capture a realtime streaming video from GoPro4 and load it into TouchDesigner in order to use this footage in a projection mapping project.So far I was able to play GoPro4 stream using ffplay doing as follows :
1. Host GoPro4 WiFi hotspot.
2. Connect a laptop WiFi to GoPro4’s hotspot.
3. Restart GoPro stream service by opening ’http://10.5.5.9/gp/gpControl/execute?p1=gpStream&c1=restart’ in s browser.
4. Run ffplay command in order to open ffplay stream video window : ’ffplay -an -fflags nobuffer -f:v mpegts -probesize 8192 rtp ://10.5.5.9:8554’The next step I opt to make it to re-stream this signal into RTSP protocol so TouchDesigner could receive this signal.
And here is my question - how to re-stream this input to RTSP ?