Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (47)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • 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 (...)

Sur d’autres sites (6562)

  • lavc/aarch64 : add hevc sao band 8x8 tiling

    17 novembre 2021, par J. Dekker
    lavc/aarch64 : add hevc sao band 8x8 tiling
    

    bench on AWS Graviton :

    hevc_sao_band_8x8_8_c : 317.5
    hevc_sao_band_8x8_8_neon : 97.5
    hevc_sao_band_16x16_8_c : 1115.0
    hevc_sao_band_16x16_8_neon : 322.7
    hevc_sao_band_32x32_8_c : 4599.2
    hevc_sao_band_32x32_8_neon : 1246.2
    hevc_sao_band_48x48_8_c : 10021.7
    hevc_sao_band_48x48_8_neon : 2740.5
    hevc_sao_band_64x64_8_c : 17635.0
    hevc_sao_band_64x64_8_neon : 4875.7

    Signed-off-by : J. Dekker <jdek@itanimul.li>

    • [DH] libavcodec/aarch64/hevcdsp_init_aarch64.c
    • [DH] libavcodec/aarch64/hevcdsp_sao_neon.S
  • avcodec/libx264 : Don't unnecessarily add in-band extradata

    20 décembre 2021, par Andreas Rheinhardt
    avcodec/libx264 : Don't unnecessarily add in-band extradata
    

    The check here is meant to check for whether avcintra-class option
    (default value -1) has been set ; yet it checks for the x264_param_t
    value where 0 is the default value (treated as "no avcintra-mode"
    by x264). This meant that in-band extradata has been added unnecessarily
    when using global headers ; furthermore, the first output packet
    had two x264 SEIs.

    Reviewed-by : Limin Wang <lance.lmwang@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/libx264.c
  • How to execute fluent-ffmpeg commands from express router ?

    27 janvier 2021, par Chris

    so I'm trying to control and m3u8 playlist using data sent in thru an express route and keep getting the same error "Error : ffmpeg exited with code 1 : Conversion failed !" when attempting.

    &#xA;

    My code looks like this

    &#xA;

    ch1Router&#xA;    .route("/source")&#xA;    .post(jsonBodyParser, (req, res, next) => {&#xA;        //video url from request body&#xA;        const { url } = req.body;&#xA;        &#xA;        //test console log&#xA;        console.log(req.body);&#xA;&#xA;        //ffmpeg commands&#xA;        ffmpeg(url)&#xA;            .output(&#x27;videos/Ch1.m3u8&#x27;)&#xA;            .on(&#x27;error&#x27;, (err) => {&#xA;                console.log("Something Happened:", err.message)&#xA;                res.send("Error changing input!")&#xA;            })&#xA;            .run()&#xA;            &#xA;&#xA;        &#xA;        res.send("hi")&#xA;    })&#xA;

    &#xA;

    When I run this exact command in a separate file using Node, the command executes and I only need to refresh my browser to see the new video file. When trying to chain it to a post request containing the video URL I get the conversion error. Any help would be appreciated.

    &#xA;

    **Updated my code to prevent the server from crashing and respond with an error message but still don't understand the conversion error.

    &#xA;