
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 (110)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
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 (...)
Sur d’autres sites (7423)
-
ffmpeg how convert audio files in other formats ?
21 septembre 2012, par John SmithI download audio file and me need convert him on formats .mp3,.wav,.ogg.,acc.
My script :if($ext=='wav'){
shell_exec("ffmpeg -i $infile -acodec libmp3lame -ab 320 $outfile_mp3");
shell_exec("ffmpeg -i $infile -acodec libvorbis -ab 320 $outfile_ogg");
shell_exec("ffmpeg -i $infile -acodec libfaac -ab 320 $outfile_aac");
}
elseif($ext=='mp3'){
shell_exec("ffmpeg -i $infile -ab 256 $outfile_wav");
shell_exec("ffmpeg -i $infile -ab 256 $outfile_ogg");
shell_exec("ffmpeg -i $infile -ab 256 $outfile_aac");
move_uploaded_file($tmp, $path.$name2.'mp3');
}
elseif($ext=='ogg'){
shell_exec("ffmpeg -i $infile -acodec libmp3lame $outfile_mp3");
shell_exec("ffmpeg -i $infile $outfile_wav");
shell_exec("ffmpeg -i $infile -acodec libfaac $outfile_aac");
}
elseif($ext=='aac'){
shell_exec("ffmpeg -i $infile -acodec libmp3lame $outfile_mp3");
shell_exec("ffmpeg -i $infile -acodec libvorbis $outfile_ogg");
shell_exec("ffmpeg -i $infile -acodec libmp3lame $outfile_wav");
}Help me please convert files :
- how convert file in format .mp3 in formats .wav, .ogg, .acc
- how convert file in format .wav in formats .mp3, .wav, .acc
- how convert file in format .ogg in formats .mp3, .ogg, .acc
- how convert file in format .acc in formats .mp3, .ogg, .wav
I want to get good sound quality audio files...
-
Automatic save Printscreen video
18 février 2014, par Erik Van de VenI would like to save a screenshot of a video, as thumbnail image, as soon as someone uploads a video. They told me this is only possible on Windows servers. But now I read something about http://www.ffmpeg.org/download.html. It looks like it creates the possibility to do the same on Linux, is that possible ?
And does someone have experience with this ? -
Stream H264 video with packetization mode 0
26 février 2014, par AlanI have a video that is originally not in packetization mode 0 (http://www.bigbuckbunny.org/index.php/download/).
I would like to stream that video but have the h264 data packed in the RTP payload as packetization mode 0.
Please suggest a gstreamer or a ffmpeg pipeline to achieve this. I've tried doing it with VLC but failed to specify the encoding to such detail.