Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (59)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (3146)

  • avcodec/ffv1 : flip half of float16 and Compactify floats

    18 janvier, par Michael Niedermayer
    avcodec/ffv1 : flip half of float16 and Compactify floats
    

    float16 (and more so float32) have many odd values
    half the values are negative, many are larger than "1.0"
    and many values are very close to 0.

    Storing the 16bits as is, looses compression because of the mixture
    of dense and sparse regions and also many completely unused ones.

    This simply remaps the 65536 values so no unused values remain
    This improves compression by about 1.5% for the ACES_OT_VWG_SampleFrames testset
    (this testset contains all kind of funny values including many images
    with negative rgb values)

    The space needed for the map is insignificant compared to the
    compression gained

    This patch also flips half the float range as it can be done
    using the same table.

    Sponsored-by : Sovereign Tech Fund
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/ffv1.h
    • [DH] libavcodec/ffv1dec_template.c
    • [DH] libavcodec/ffv1enc_template.c
  • ffmpeg problem video duration of an hour and a half

    14 mai 2024, par Bruno Munné

    When start record i call an api /start-record which does :

    &#xA;

    const ffmpeg = spawn("ffmpeg", [&#xA;        "-i",&#xA;        rtsp,&#xA;        "-c:v",&#xA;        "copy",&#xA;        "-an",&#xA;        "-f",&#xA;        "flv",&#xA;        `${filename}.flv`,&#xA;      ]);&#xA;ffmpegProcesses[rtsp] = {&#xA;        process: ffmpeg,&#xA;        filename,&#xA;      };&#xA;

    &#xA;

    When stop the record i call an api /stop-record which does :

    &#xA;

    ffmpegProcesses[rtsp].process.kill("SIGKILL");&#xA;ffmpegProcesses[rtsp].process.on("exit", async () => {&#xA;   const ffmpeg = spawn("ffmpeg", [&#xA;          "-i",&#xA;          `${filename}.flv`,&#xA;          "-c:v",&#xA;          "libx264",&#xA;          "-preset",&#xA;          "fast",&#xA;          "-crf",&#xA;          "30",&#xA;          "-an",&#xA;          `${filename}.mp4`,&#xA;        ]);&#xA;&#xA;    ffmpeg.on("exit", async () => {&#xA;        uploadToS3()&#xA;    })&#xA;&#xA;})&#xA;

    &#xA;

    If the recording is less than or equal to approximately 1 hour it works perfectly, but if the recording is 1 and a half hours it already breaks and it does not correctly generate the files, nor the flv nor the conversion to mp4

    &#xA;

    I hope my program works the same way it does for 1 hour recordings

    &#xA;

  • riscv : set fast half-precision conversion

    16 novembre 2023, par Rémi Denis-Courmont
    riscv : set fast half-precision conversion
    

    This is only supported at compilation time. If Zfhmin is supported, then
    conversions are fast, which is what the flag is used for. At this time,
    run-tiem detection is not possible, as in not supported by Linux. But even
    if it were, the current FFmpeg approach seems unable to deal with it (same
    problem as on x86, really).

    • [DH] configure