
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (78)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)
Sur d’autres sites (6798)
-
Processing a video stream over websocket with opencv
25 avril 2019, par Patrick ConnorsI’m trying to stream video over a websocket and process it server-side with Node.JS. The client is reading from a video file (.mp4) and sending it over the web socket via a stream object. However, I’m having trouble extracting frames from the stream at the server so it can be processed by
opencv
.Do I need to break the video up into frames and stream each individual frame ? What format can
opencv
most easily process in real time ?The end goal here is to enable
opencv
to process each frame of a video (in real time) that is being received by the server. Think I’m having some trouble understanding the paradigm here. -
lavf/segment : Mark output contexts as non-seekable when applicable
29 mars 2015, par Rodger Combslavf/segment : Mark output contexts as non-seekable when applicable
This prevents sub-muxers from trying to seek back to the beginning of the
whole stream, only to find themselves overwriting some video data in the
current (often last) segment.We only do this when not writing individual header/trailers.
Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
Use ffmpeg to show a webcam live stream in a browser
20 juillet 2020, par ToastI have a webcam that is connected to a server and I'd like to view a live stream of it in a web browser.


I'd like to include a
video
tag like this :

<video></video>



What is an
ffmpeg
command that will send a video stream to browser clients ?
I managed to record a video to disk with this command :

ffmpeg -f v4l2 -i /dev/video0 output.mkv



I'm not sure if
rtsp
andffmpeg
are a good choice and I'm open for alternative suggestions.
I'm looking for a solution that is simple to setup and demo. Scalability and support for older browsers don't matter and audio isn't needed. I'd prefer a solution that sends compressed video instead of individual images (MJPG).