
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (88)
-
Les sons
15 mai 2013, par -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (9152)
-
How to decode MP3 using libmp3lame decoder using ffmpeg command line ?
24 septembre 2021, par KumarI need to decode .mp3 file using libmp3lame decoder in ffmpeg, this ffmpeg build contains libmp3lame. Decoded output can be .wav/.raw format.So can anyone help me how to decode this using ffmpeg command line.I'm using windows 8.1 os.


-
How to decode MP3 using libmp3lame decoder using ffmpeg command line ?
28 septembre 2016, par KumarI need to decode .mp3 file using libmp3lame decoder in ffmpeg, this ffmpeg build contains libmp3lame. Decoded output can be .wav/.raw format.So can anyone help me how to decode this using ffmpeg command line.I’m using windows 8.1 os.
-
Using libav without command line ?
15 décembre 2012, par Khuất Văn PhiếnI use this command below for converting file
./avconv -i inputFile -vcodec libx264 -trellis 2 -crf 23 -tune psnr -vf crop='trunc(iw/2)*2:trunc(ih/2)*2' -y outputFile
But, I don't want to use this command, I want to make a function like
convert(char *inputFile, char *outputFile). (The option of my function like option in command line)
And then I will call it from my main function
for exampleint main(){
convert(in01, out01);
convert(in02, out02);
convert(in03, out03);
return 0;
}I also read this post. But it is not clear to me.
Could anyone tell me how to solve this problem ? I have googled many times but did not find the solution.