
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (43)
-
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
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. -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (7651)
-
RTMP AVPacket from NAL Units iOS
10 février 2019, par Mihai GheteI’m writing video frames to a file (for hardware acceleration H264 encoding purpose) and reading the data from there while the writing is still happening. Long story short, I get the NALUs for every frame. My question is how to pass the NALUs to the AVPacket (FFmpeg’s AVPacket) data parameter in order to send it over the network using the RTMP protocol.
What I do is append every NALU (on iOS, every frame is composed of 1 or two NALUs) and set it to the AVPacket data parameter, but it doesn’t seem to work. Ideas ? thanks.
I use this method to set the packet data : H264 Video Streaming over RTMP on iOS
-
RTMP AVPacket from NAL Units iOS
5 novembre 2014, par Mihai GheteI’m writing video frames to a file (for hardware acceleration H264 encoding purpose) and reading the data from there while the writing is still happening. Long story short, I get the NALUs for every frame. My question is how to pass the NALUs to the AVPacket (FFmpeg’s AVPacket) data parameter in order to send it over the network using the RTMP protocol.
What I do is append every NALU (on iOS, every frame is composed of 1 or two NALUs) and set it to the AVPacket data parameter, but it doesn’t seem to work. Ideas ? thanks.
I use this method to set the packet data : H264 Video Streaming over RTMP on iOS
-
Can OpenCV VideoWriter support to write frames into RTSP ?
9 juin 2022, par Bahramdun AdilI am using OpenCV with IP camera, which I can successfully read the video stream by using RTSP protocol, something like this :



VideoCapture capture = new VideoCapture();
String url = "rtsp://admin:123456@192.168.10.3:554/Streaming/Channels/101?transportmode=unicast";
capture.open(url);




But now I want in the same way create a writer with
VideoWriter
and write the frame to the output stream.


Is this possible ? If yes, then how ? How to create a file name for the stream and how to get the stream on the other side, the same from IP camera to OpenCV ?



open(String filename, int fourcc, double fps, Size frameSize, boolean isColor)