Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (40)

  • Liste des distributions compatibles

    26 avril 2011, par

    Le tableau ci-dessous correspond à la liste des distributions Linux compatible avec le script d’installation automatique de MediaSPIP. Nom de la distributionNom de la versionNuméro de version Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    Si vous souhaitez nous aider à améliorer cette liste, vous pouvez nous fournir un accès à une machine dont la distribution n’est pas citée ci-dessus ou nous envoyer le (...)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (4368)

  • ffmpeg start end approximation for CHAPTER metadata differs from ffprobe output

    17 mai 2021, par loretoparisi

    When printing the ffmetadata with the ffmpeg command

    


    ffmpeg -i INPUT.mp4 -f ffmetadata FFMETADATAFILE


    


    the approximation of the fields start and end 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 with ffprobe 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 ?

    


  • 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
  • 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