
Recherche avancée
Autres articles (25)
-
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 (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
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 (4009)
-
Add Timestamp to extracted thumbnail's name from a video file
12 décembre 2013, par Harish VaradaI have a requirement of generating thumbnails(camera change, slide change, scene change) from a videofile with it's timestamp(pos) included in the generated output thumbnails.
I used the following command to generate thumbnails :
ffmpeg -i input.mp4 -vf select="eq(pict_type\,I)" -vsync 0 -an keyframe-%06d.png
This command works absolutely fine for generating thumbnails (assume 15 thumbnails are generated) with names in sequence like : keyframe-000001.png, keyframe-000002.png, .... , keyframe-000015.png.
But, according to my requirement, I need the output thumbnail file names something like as follows :
keyframe-001426.png, keyframe-002769.png, .... , keyframe-014571.png where
001426 is the position of thumbnail keyframe-000001.png
002769 is the position of thumbnail keyframe-000002.png
014571 is the position of thumbnail keyframe-000015.png
Is there a way to achieve this in a single command.? Please help me out achieving this.
-
configure : Stop using dlltool to create an import library
30 octobre 2017, par Martin Storsjöconfigure : Stop using dlltool to create an import library
There shouldn’t be any functional difference between the import
library created by dlltool and the one produced by the linker itself.
Keep installing it with both names though, for compatibility with users
that expect both to exist.The dlltool step was added in ec10a9ab4 ; prior to that, a MSVC
compatible import library was generated using lib.exe. After that
commit, there was no functional difference between the two import
libraries (and since MSVC 2012, link.exe works just fine with the
GNU binutils generated one).Signed-off-by : Martin Storsjö <martin@martin.st>
-
Extract images from mkv video with ffmpeg at every 20 minutes
10 août 2018, par Snake EyesI used the following command
ffmpeg -i "d:\pathto.mkv" -vf fps=1/1200 "D:\path\thumb%04d.png"
but is not working and it takes too long, no image is generated.