
Recherche avancée
Médias (2)
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (55)
-
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 (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
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) (...)
Sur d’autres sites (7934)
-
ffmpeg gives output file with 0 size
10 octobre 2012, par SudhaI'm using ffmpeg for audio conversion. I tried to convert recorded audio into mp3 format. I got the file but with 0 size. Can anyone help me to solve this ?
Here is my code :
Process ffmpegProcess;
string strInputFile;
string strOutputFile;
strInputFile = Page.MapPath("audio.wav");
strOutputFile = Page.MapPath("audio.mp3");
ffmpegProcess = new Process();
string fileargs = " -i ";
fileargs += "\"" + strInputFile + "\"";
fileargs += " \"" + strOutputFile + "\"";
ffmpegProcess.StartInfo.Arguments = fileargs;
ffmpegProcess.StartInfo.FileName = Page.MapPath("ffmpeg.exe");
ffmpegProcess.Start(); -
Error using ffmpeg-Sharp
17 octobre 2012, par NoProblemBabeWhy does this code throws an
MarshalDirectiveException
?
Obs : I am using ffmpeg-SharpCannot marshal 'return value' : Pointers cannot reference marshaled
structures. Use ByRef instead.class Program
{
unsafe static void Main(string[] args)
{
AVCodecContext* ctx =
FFmpeg.avcodec_alloc_context();
}
} -
FFMPEG Android broken MP4 output video
19 octobre 2015, par qstraI get error when try to play MP4 file with default android player, works fine on "MP4 player apps" and PC, tested on few phones, where is the problem ? how can I know why mp4 vid is broken ?
I use command for convert jpg’s to mp4, they are numered fine and video is OK on PC but not on default player.
String cmd= "-y -r "+j+" -i /sdcard/TLphotos/%03d.jpg -preset ultrafast "+path+"/"+mp4name+".mp4";