
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (65)
-
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 (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (6219)
-
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 ?


-
How is frame data stored in libav ?
9 juillet 2020, par Wesley SI am trying to learn to use libav. I have followed the very first tutorial on dranger.com, but I got a little confused at one point.


// Write pixel data
for(y=0; ydata[0]+y*pFrame->linesize[0], 1, width*3, pFile);



This code clearly works, but I don't quite understand why, particulalry I don't understand how the frame data in
pFrame->data
stored, whether or not it depends on the format/codec in use, whypFrame->data
andpFrame->linesize
is always referenced at index 0, and why we are adding y topFrame->data[0]
.

In the tutorial it says




We're going to be kind of sketchy on the PPM format itself ; trust us, it works.




I am not sure if writing it to the ppm format is what is causing this process to seem so strange to me. Any clarification on why this code is the way it is and how libav stores frame data would be very helpful. I am not very familiar with media encoding/decoding in general, thus why I am trying to learn.


-
HTTP Listener continuous data on same request (Keep alive)
22 janvier 2019, par Kevin Jensen PetersenI’m currently trying to create a HTTP Server/Listener in C# which takes a Request and Keeps it open "Keep Alive" for further data being sent on a regular basis (FFMPEG streaming data), however I cannot seem to find an equivalent to what Node.js/JavaScript does in this example.
I got the basics of HTTP Requests down and being able to "Keep it alive".
Does anyone know of a way in C# ?
var streamServer = http.createServer(function(request, response) {
response.connection.setTimeout(0);
request.on('data', function(data){
socketServer.broadcast(data);
});
}).listen(STREAM_PORT);