
Recherche avancée
Médias (2)
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (81)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
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 (...) -
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
Sur d’autres sites (5889)
-
FFmpeg Images resize to fill with crop like `cover`
15 juillet 2020, par padavan -
ffmpeg the start time of frame is incorrect with option : -vf fps=1/5 [duplicate]
13 novembre 2019, par Egbert KeThis question already has an answer here :
i have a 31 second video file(0 second to 30 second, 31 seconds total) named 2.mp4, i want to get one frame every 5 seconds. so i do this :
ffmpeg -i 2.mp4 -vf fps=1/5 image-%05d.jpg
, then i got 6 frames, i check the time of these frames, found that the time sequence is 2, 7, 12, 17, 22, 27. but what i want is 0, 5, 10, 15, 20, 25, 30.I google it and got nothing, but a offset dict from a blog :
process_offset = {
"1" : 0, "2" : 0,
"3" : 1, "4" : 1,
"5" : 2, "6" : 2,
"7" : 3, "8" : 3,
"9" : 4, "10" : 4
}it says if the fps is 1/5, the start time of frame is the 2 second.
Why this happen and what could i do to got the correct frames ?
-
opus_pvq_search : Restore the proper use of conditional define and simplify the functi...
19 août 2017, par Ivan Kalvachevopus_pvq_search : Restore the proper use of conditional define and simplify the function name suffix handling.
Using named define properly documents the code paths.
It also avoids passing additional numbered arguments through
multiple levels of macro templates.The suffix handling is done by concatenation, like in
other asm functions and avoid having two separate
"cglobal" defines.Signed-off-by : Ivan Kalvachev <ikalvachev@gmail.com>