
Recherche avancée
Autres articles (52)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)
Sur d’autres sites (7344)
-
doc : Try to find nonstandard Perl path from the environment
29 novembre 2013, par Diego Biurrun -
Unable to find a suitable output format for '&&' in FFMPEG for C#.net
28 août 2012, par Muhammad Atif AghaI am trying to convert and delete the source file using FFMPEG, what i want is to convert video file from one format to other, and delete the first one which is uploaded means source file, the command works fine if we use && operator after conversion syntax and write del command, it works well on command line but when we try using c#, it gives the error Unable to find a suitable output format for '&&'
I have checked with debugger, and its the same line which we are writing on command line, command line does not have any problem. What's the issue with c# ?ffmpeg.StartInfo.Arguments = " -i \"" + v.FilePath + "\" -r 20 -ar 44100 -ab 196 -b 300k -aspect 4:3 -s 800x600 \"" + convertToMp4 + "\" && del \"" + v.FilePath + "\"";
ffmpeg.StartInfo.FileName = Server.MapPath("ffmpeg/ffmpeg.exe");
//ffmpeg.StartInfo.UseShellExecute = false;
ffmpeg.StartInfo.CreateNoWindow = false;
ffmpeg.BeginErrorReadLine();
ffmpeg.Start();
if (b == false)
{
ffmpeg.WaitForExit();
} -
how to find duration of a video file using mediainfo ?
5 février 2014, par iotaHow can I find duration of a video file in miliseconds i.e. in integer in deterministic way.
I have used ffprobe to get the duration but it doesn't give duration for all file formats.