
Recherche avancée
Autres articles (29)
-
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 -
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 (...)
-
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...)
Sur d’autres sites (3905)
-
ffmpeg's strange behaviour-Conversion started when I close my application
16 décembre 2013, par m.qayyumI'm using ffmpeg in my application to rotate video, but problem is that when I start conversion ffmpeg only shows it's version information and not start the actual conversion, but when I close my application ffmpeg process remains in Running Processes in Taskbar and start to convert the file.
ffmpeg output
Here is my code, please tell me where i'm doing it wrong.
void ConvertVideo(object[] arr) {
string Argument = (string)arr[0];
string OutputFolder = (string)arr[1];
string ConvertedFile = (string)arr[2];
UpdateStatus("Converting! Please wait...");
ffmpeg = new Process();
ffmpeg.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
ffmpeg.StartInfo.FileName = "ffmpeg.exe";
ffmpeg.StartInfo.UseShellExecute = false;
ffmpeg.StartInfo.RedirectStandardError = true;
ffmpeg.StartInfo.RedirectStandardOutput = true;
ffmpeg.StartInfo.CreateNoWindow = true;
ffmpeg.StartInfo.Arguments = Argument;
ffmpeg.Start();
myStreamReader = ffmpeg.StandardError;
outputLine = myStreamReader.ReadLine();
UpdateRTB(outputLine);//Write line to ritchtextbox
do
{
if (outputLine.Contains("muxing overhead"))
{
UpdateStatus("Muxing video");
}
if (outputLine.StartsWith("frame"))
{
UpdateStatus("Converting video");
}
}
while (!(ffmpeg.HasExited & (string.Compare(outputLine, "") == 0 | outputLine == null)));
ffmpeg.Close();
myStreamReader.Close();
UpdateStatus("Convertion completed successfully");
} -
swscale : NEON optimized unscaled rgba to nv12 conversion
14 décembre 2013, par Yu Xiaoleiswscale : NEON optimized unscaled rgba to nv12 conversion
Signed-off-by : Yu Xiaolei <dreifachstein@gmail.com>
Signed-off-by : Michael Niedermayer <michaelni@gmx.at> -
How to speed up video conversion
9 mai 2016, par ArheiselI’m currently working in a proyect that involves converting large series of .jpg (>6000) into video format. These frames (320x240) are stored in folders at a rate of 2.5fps. Generating a couple of folders every hour that need to be converted ASAP.
For now i’ve tried copying the folder to a ram disk and using avconv wich takes about a minute.
Here is my command :
avconv -threads auto -y -r 2.51 -i %03d-capture.jpg -s 320x240 -r 25 video.mpeg
could ffmpeg work faster ?
is there a way to speed it up ?
wich video format take less time to convert to ?