
Recherche avancée
Autres articles (52)
-
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
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 (...) -
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 (4497)
-
Installing ffmpeg on CentOS 6.6
30 janvier 2016, par Kristaps DrozdovskisIm trying to install ffmpeg,..
When I write comand :git clone --depth 1 http://source.ffmpeg.org/git/ffmpeg.git
I got this error.. why ??
Initialized empty Git repository in
/root/ffmpeg_sources/ffmpeg/ffmpeg/.git/ fatal : dumb http transport
does not support —depthInstalling from this source..
https://trac.ffmpeg.org/wiki/CompilationGuide/Centos -
Revision 68845 : Horaire utilisé comme nom commun est masculin cf : ...
8 janvier 2013, par kent1@… — LogHoraire utilisé comme nom commun est masculin
cf : http://fr.wiktionary.org/wiki/horaire#Nom_commun -
Trim video with reference to a start time and end time using FFMPEG
8 février 2015, par SatyI am trying to do an application in which I would like to give option to user to clip a video using double seekbar so that video can be cropped.
I had hassle importing FFmpeg into Eclipse. However, that pain is over, and I got two points of video and can instantiate FFmpeg’s instant.
My focus is to know to know the method and procedure to crop a video.
I got the command of cutting it, that is,
ffmpeg -ss [start] -i in.mp4 -t [duration] -c:v copy -c:a copy out.mp4
However, how do I use this in code ?