
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (85)
-
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 (...) -
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 ;
-
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 (13679)
-
How to get first packet of data using ffmpeg ?
29 novembre 2017, par Ashok TandanA program is streaming 2 things : a video and a KLV data.I am in a situation where running ffmpeg should get me first frame of image and first packet/frame of data also.I am able to get first frame as soon as i run ffmpeg command,now i want to get corresponding data packet/data.
-
AVFrame data format
10 mars 2021, par Валентин НикинI process the raw data from AVFrame.data. Pixel format of this frames is AV_PIX_FMT_YUV420P. I want to understand in what range of values is this data located.


Seems UV (in YUV scheme) must be in [-128, 128] range, CbCr (in YCbCr) must be in [0, 255]. What scheme used in FFmpeg ?


-
recive klv data from a ffmpeg mulsticast
5 avril 2019, par diegoI am trying to get the klv data from a .mpeg.
I tried this command and it works perfectly :
ffmpeg -i video.mpg -map data-re -codec copy -f data data.klv
Now I would like to open two CMD and transfer it by multicast, how could I do this ? i tried many comands like next ones, but I do not get the same .klv
sender :
ffmpeg -i video.mpeg -c copy -f mpegts udp://239.1.1.1:49410
receiver :
ffmpeg -i udp://239.1.1.1:49410 -map 0 -codec copy -f data data.klv
I am new with ffmpeg and I do not know exactly what I need to change to get exactly whay I get in the first command.
Thanks