
Recherche avancée
Autres articles (105)
-
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 (5184)
-
avformat/matroskaenc : Convert chapter metadata
15 juin 2022, par Andreas Rheinhardtavformat/matroskaenc : Convert chapter metadata
It is no longer converted since mkv_write_chapters() is called
before mkv_write_tags() which happens since commit
4ebfc13c338423cf48f1a1266c890422367f7775. Given the fact that
chapters can also be written late, mkv_write_chapters() has to
convert the metadata itself.Fixes ticket #9812.
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
avformat/utils : keep chapter monotonicity on chapter updates
1er février 2022, par Michael Niedermayeravformat/utils : keep chapter monotonicity on chapter updates
Updating a chapter with the same id does not break monotonicity
Fixes : Timeout
Fixes : 43727/clusterfuzz-testcase-minimized-ffmpeg_dem_MOV_fuzzer-4960623367159808Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
ffmpeg start end approximation for CHAPTER metadata differs from ffprobe output
17 mai 2021, par loretoparisiWhen printing the
ffmetadata
with theffmpeg
command

ffmpeg -i INPUT.mp4 -f ffmetadata FFMETADATAFILE



the approximation of the fields
start
andend
in the[CHAPTER]
object like :

[CHAPTER]
TIMEBASE=1/1000
START=533975
END=586975
title=Meltdown/Spectre patched



is slightly different (at some level of approximation) from the same metadata, obtained using the
JSON
output withffprobe
the command :

ffprobe -i INPUT.mp4 -show_chapters -print_format json



that is


{
 "id": 2,
 "time_base": "1/1000",
 "start": 534000,
 "start_time": "534.000000",
 "end": 587000,
 "end_time": "587.000000",
 "tags": {
 "title": "Meltdown/Spectre patched"
 }
 }



Any way to control the approximation in the
ffprobe
output ?