
Recherche avancée
Autres articles (111)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (9247)
-
formula to calculate video dimensions for target aspect ratio
23 avril 2015, par Nevoxxi currently building an application that converts videos to a specific dimension under consideration of the target aspect ration.
the target resolution must always be 1280x720, i want to fit the uploaded video in this size using black bars.
can anyone point out a formula to calculate the target video dimensions without changing it’s aspect ratio ? if the target with is smaller then 1280x720 i’ll add the missing pixels as black bars.
i’m using ffmpeg with the
"-vf scale=1280x720,pad=?:?:black"
command(sorry if my english is not that great)
-
How to get success info from ffmpeg on C# ?
13 mars 2014, par user2989391I using ffmpeg on C#, my argument worked fine but i don't know get success handle..
Sorry for my bad English.
Thank you for help.ProcessStartInfo psi = new ProcessStartInfo("bin\\ffmpeg.exe");
Process proc = Process.Start(psi);
psi.UseShellExecute = false;
psi.CreateNoWindow = true;
psi.Arguments = " My argument ";
psi.RedirectStandardError = true;
psi.WindowStyle = ProcessWindowStyle.Hidden;
proc = Process.Start(psi);
StringBuilder sb = new StringBuilder();
StreamReader outputReader = proc.StandardOutput;
while (!(proc.StandardOutput.EndOfStream)) {
sb.AppendLine(proc.StandardOutput.ReadLine());
}
proc.WaitForExit();
proc.Close();
psi = null; -
ffmpeg dshow command is listing device name different from actual device name
20 octobre 2015, par Somanshui have used the command:ffmpeg -f dshow -list_devices true -i dummy
to list the devices.
But if device name is in language other than english then device name shown by ffmpeg and actual differ.How can i solve this mismatch problem.