
Recherche avancée
Autres articles (36)
-
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 -
Changer son thème graphique
22 février 2011, parLe thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
Modifier le thème graphique utilisé
Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
Il suffit ensuite de se rendre dans l’espace de configuration du (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
Sur d’autres sites (5866)
-
Running ffmpeg.exe through windows service fails to complete while dealing with large files
28 avril 2013, par HarunI am using ffmpeg.exe to convert video files to flv format. For that purpose i use a windows service to run the conversion process in background. While trying to convert large files(i experienced it when the file size is >14MB) through windows service it gets stuck at the line which starts the process(ie,
process.start();
).But when i tried to execute ffmpeg.exe directly from command prompt it worked with out any problems.
My code in windows service is as follows :
private Thread WorkerThread;
protected override void OnStart(string[] args)
{
WorkerThread = new Thread(new ThreadStart(StartHandlingVideo));
WorkerThread.Start();
}
protected override void OnStop()
{
WorkerThread.Abort();
}
private void StartHandlingVideo()
{
FilArgs = string.Format("-i {0} -ar 22050 -qscale 1 {1}", InputFile, OutputFile);
Process proc;
proc = new Process();
try
{
proc.StartInfo.FileName = spath + "\\ffmpeg\\ffmpeg.exe";
proc.StartInfo.Arguments = FilArgs;
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.CreateNoWindow = false;
proc.StartInfo.RedirectStandardOutput = true;
proc.StartInfo.RedirectStandardError = true;
eventLog1.WriteEntry("Going to start process of convertion");
proc.Start();
string StdOutVideo = proc.StandardOutput.ReadToEnd();
string StdErrVideo = proc.StandardError.ReadToEnd();
eventLog1.WriteEntry("Convertion Successful");
eventLog1.WriteEntry(StdErrVideo);
}
catch (Exception ex)
{
eventLog1.WriteEntry("Convertion Failed");
eventLog1.WriteEntry(ex.ToString());
}
finally
{
proc.WaitForExit();
proc.Close();
}How can I get rid of this situation.
-
trim MULTIPLE .mp4 files using ffmpeg in WINDOWS DOS
22 février 2014, par user1530322My goal is to trim the first 4 seconds of, say 100 .mp4 files at once.
I can easyly do it and in a quite quick way for one single .mp4 file at a time using :
**ffmpeg -i MYFILE.mp4 -ss 00:00:04.000 -c:v copy -c:a copy Trimmed_MYFILE.**mp4
I have a folder with those 100 mp4 files and want to bulk trim the first 4 seconds and save the new files on a folder in the same location called "newfiles".
I'm imagining something like a loop, using FOR or so, but have no ideia how to do it.
Thank you in advanced
-
trim MULTIPLE .mp4 files using ffmpeg in Windows commandline
13 janvier 2015, par user1530322My goal is to trim the first 4 seconds of, say 100 .mp4 files at once.
I can easyly do it and in a quite quick way for one single .mp4 file at a time using :
ffmpeg -i MYFILE.mp4 -ss 00:00:04.000 -c:v copy -c:a copy Trimmed_MYFILE.mp4
I have a folder with those 100 mp4 files and want to bulk trim the first 4 seconds and save the new files on a folder in the same location called "newfiles".
I’m imagining something like a loop, using FOR or so, but have no idea how to do it.