
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (27)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (4086)
-
Audio data for reflective background with FFMPEG/Base.dll
18 avril 2018, par AV9I would like to generate a video with reflective elements, like graphical equaliser, etc. I know FFMPEG can generate waveform using such a data itself, but I would like to have more control and build up something of my own using such a data.
Is is possible to extract all the data like peaks, volume of all the channels of an audio file into a text file and so that the data would be extracted every 0.1 sec ?Is Base.dll a better solution rather than FFMpeg ?
Thanks -
ffmpeg : how to get YUV data from AVframe and draw it using opengl ?
13 mai 2015, par NyarukoHow could I access the YUV data from AVframe struct ? by accessing its data[] ?
And is there any simple way to draw YUV data using opengl instead of creating the shader and draw the Y,U,V image on their own ? -
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);