
Recherche avancée
Médias (1)
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (76)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (6588)
-
Evolution #2669 : "Publiés" : onglet par défaut pour la gestion des forums
21 avril 2012, par jluc -Bien sur tous les usages possibles sont possibles et il ne s’agit pas de supprimer des possibilités. Favoriser le "publié" n’est pas une incongruité puisque c’est la norme sur l’espace public et dans nombre de pages du privé déjà. Comme de plus c’est le besoin statistiquement majoritaire (en (...)
-
Anomalie #2063 : Bug avec notes de bas de page r17814
10 mai 2011, par Michel FraisseOK, j’ai trouvé le fautif Dans article.html de dist 2007 j’ai rajouté (#TEXTE pour avoir un décompte approximatif du nombre de mots de #TEXTE. Avec ça double, sans c’est correct ce qui semble normal et rassurant après (...)
-
create multiple movie thumbnails using ffmpeg (one at a time) failing
2 septembre 2013, par Christopher JohnsonI'm using this small bit of code to create thumbnails of videos being uploaded to my site :
public static void GetThumbnail(string video, string thumbnail)
{
var cmd = "ffmpeg -itsoffset -1 -i " + '"' + video + '"' + " -vcodec mjpeg -vframes 1 -an -f rawvideo -s 320x240 " + '"' + thumbnail + '"';
var startInfo = new ProcessStartInfo
{
WindowStyle = ProcessWindowStyle.Hidden,
FileName = "cmd.exe",
Arguments = "/C " + cmd
};
var process = new Process
{
StartInfo = startInfo
};
process.Start();
}I'm uploading the videos one at a time asynchronously. The first video thumbnail gets created just fine, but each subsequent one does not get created. I've noticed that if I try to delete subsequent videos from the file system, it says it can not delete them because they are in use by ffmpeg. I can delete the first one that finished processing just fine. I have to kill the ffmpeg process from task manager for all of the others that it's holding open. Why is ffmpeg only working the first time through and then holding the video's open in an open process afterwards ?
I also tried creating multiple thumbnails one at a time from the command prompt and that worked fine (the process does not stay open either).
What am I missing in my c# code to make sure the process finishes, and then terminates ?