
Recherche avancée
Autres articles (58)
-
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 (...) -
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 (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...)
Sur d’autres sites (6347)
-
Opencv(2.4.9) to capture video,but the program is slower when I put it on the centos(ffmpeg 1.1.3) than on the windows,what's wrong ?
7 avril 2016, par AaronOpencv(2.4.9) to capture video,but the program is slower when I put it on the centos(ffmpeg 1.1.3) than on the windows,what’s wrong ?
-
How to create Ken Burns effect using FFMPEG on Windows
22 mars 2016, par B AI need to create slideshow videos from a bunch of images and apply ken burns and other transition effects to them as well if possible.
I found some tools for Linux like http://imagemovie.sourceforge.net/ and http://diascope.sourceforge.net/ that allowed creating ken burns effect from the command line but couldn’t find any for Windows. Does anyone know of any technique to do this ?Right now i am using an FFMPEG code but it only produces a zooming in effect from the top left corner of the video. I need a ken burns(pan and zoom effect) from the command line, how can i do that ?
-
python ffmpeg and pydub on windows
11 mars 2016, par Yonatan KreinerI am trying to import the ffmpeg and pydub to my python script.
I downloaded the ffmpeg for windows from https://ffmpeg.zeranoe.com/builds/
and put the bin folder in the system path.
I can use it from the CMD but I need to import it to the script
for the pydub library to work.
I had tried to executeAudioSegment.from_mp3("something.mp3").export("somethingElse.wav", format="wav")
without importing it but It throws
FileNotFoundException
.
Any suggestions ?