
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (95)
-
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 (...) -
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. -
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 (...)
Sur d’autres sites (9566)
-
Determining size of data[0] in AVFrame of FFMPEG
20 juillet 2020, par user2742299I am trying to allocate AVFrame->data[0] of a video frame to uint8_t* buffer using the following lines of code :


size_t sizeOfFrameData = mpAVFrameInput->linesize[0] * mpAVFrameInput->height;
 
memcpy(mFrameData, mpAVFrameInput->data[0], sizeOfFrameData);



I would like to know if this is a correct way of copying frame data to uint8_t* variable in FFMPEG ?


-
Using python with ffmpeg to query video data from rtsp in complete frame
1er avril 2020, par CDYCurrently, I am trying to use python with ffmpeg to read video data from server.



Here is my command :



command = ["ffmpeg",
 "-c:v", "h264", 
 "-rtsp_transport", "tcp",
 "-i", in_stream, 
 "-c:v", "copy", 
 "-an", "-sn", 
 "-f", "avi", 
 "-"]




I will use this command to query data from server and put data into queue.



One question is, every time the data I query from server which is not a complete frame. It is just a part of encoding data.



If I want to get data as a complete frame. How can I change my command and code ?



Thank you very much


-
ffmpeg can play video but not a stream containing the same data
21 mai 2017, par RobbsenThis is my first time encountering video codecs/video streaming.
I am receiving raw h.264 packets over TCP. When I connect to the socket, listen to it and simply save the received data to a file, I am able to play it back using
ffplay data.h264
However, when I try to directly play it from the stream without saving it, using
ffplay tcp://addr:port
all I get is the error
Invalid data found when processing input
Why is that ?