Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (105)

  • Organiser par catégorie

    17 mai 2013, par

    Dans 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, par

    Utilité
    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 2013

    Puis-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 Rheinhardt
    avformat/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>

    • [DH] libavformat/matroskaenc.c
  • avformat/utils : keep chapter monotonicity on chapter updates

    1er février 2022, par Michael Niedermayer
    avformat/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-4960623367159808

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/utils.c
  • ffmpeg start end approximation for CHAPTER metadata differs from ffprobe output

    17 mai 2021, par loretoparisi

    When printing the ffmetadata with the ffmpeg command

    &#xA;

    ffmpeg -i INPUT.mp4 -f ffmetadata FFMETADATAFILE&#xA;

    &#xA;

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

    &#xA;

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

    &#xA;

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

    &#xA;

    ffprobe -i INPUT.mp4 -show_chapters -print_format json&#xA;

    &#xA;

    that is

    &#xA;

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

    &#xA;

    Any way to control the approximation in the ffprobe output ?

    &#xA;