
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (101)
-
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 (...) -
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (11014)
-
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 ?
-
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


-
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 ?