
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (74)
-
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 (...)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
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 (9081)
-
Javacv-ffmpeg : Getting audio data
25 janvier 2013, par bmericI'm trying to get audio data from a file(mp3, mp4 and 3gp). I can get frames but not the audio. Am i using wrong ffmpeg classes ?(I'm very new to ffmpeg)
FFmpegFrameGrabber ff = new FFmpegFrameGrabber("/sdcard/cock_a_1.wav" );
try {
ff.start();
Frame frame;
int i=0;
while ((frame = ff.grabFrame()) != null) {
if (frame.samples.hasArray())
Log.e("frame", String.valueOf(i++));
}
ff.stop();How can i extract audio data array ?
-
download livestream real-time data
15 juillet 2024, par Chenguang HeI'm working on a project to design a RTMP server in Java to get livestream data and download to flv file. One requirement is that to capture the real-time data, I need to download the recording for every second instead of downloading entire recording when livestream stop. Is there any way to achieve it ? Thanks


tried to download stream into byte array for every second and decode to flv using H.264 but didn't work.


-
FFmpeg : create data streams in MP4 container
28 mars 2022, par SoerenIs there a way to make FFmpeg create data streams in MP4 or Quicktime (.mov) containers ? I have tried
-attach ...
(works fine for Matroska containers, but not MP4/MOV) or-codec bin_data
, but to no avail.

-attach ...
technically creates streams with codec type "attachment", which are different from data streams. And while FFmpeg isn't smart enough to directly create data streams in containers where attachment streams aren't supported (ie. MP4), a two-step approach works :

ffmpeg -i <some media="media" file="file"> -attach <some file="file"> -metadata:s:2 mimetype=<data mime="mime" type="type"> -map 0:v -map 0:a -codec copy attached.mkv
ffmpeg -i attached.mkv -codec copy attached.mp4
</data></some></some>


The first command creates a Matroska file that contains a stream with
codec_type=attachment
. The second command then simply re-packages this into an MP4 container, turning the attachment stream into a data stream (codec_type=data
). So the question is : could this be combined into a single step ?