Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (94)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (14685)

  • prores : Extend the padding check to 16bit

    25 février 2015, par Luca Barbato
    prores : Extend the padding check to 16bit
    

    Some files produced by the official encoder have up to 16bit of
    padding instead of the expected padding to the byte.

    Use a self-explanatory macro instead of a simple number.

    CC : libav-stable@libav.org

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavcodec/proresdec.c
  • Outputting file details using ffprobe in ffmpeg AWS Lambda layer

    17 février 2021, par Gracie

    I am trying to output the details of an audio file with ffmpeg using the ffprobe option. But it is just returning 'null' at the moment ? I have added the ffmpeg layer in Lambda. can anyone spot why this is not working ?

    &#xA;&#xA;

    const { spawnSync } = require("child_process");&#xA;const { readFileSync, writeFileSync, unlinkSync } = require("fs");&#xA;const util = require(&#x27;util&#x27;);&#xA;var fs = require(&#x27;fs&#x27;);&#xA;let path = require("path");&#xA;&#xA;exports.handler = (event, context, callback) => {&#xA;&#xA;    spawnSync(&#xA;        "/opt/bin/ffprobe",&#xA;        [&#xA;            `var/task/myaudio.flac`&#xA;        ],&#xA;        { stdio: "inherit" }&#xA;        );&#xA;};&#xA;

    &#xA;&#xA;

    This is the official AWS Lambda layer I am using, it is a great prooject but a little lacking in documentation.

    &#xA;&#xA;

    https://github.com/serverlesspub/ffmpeg-aws-lambda-layer

    &#xA;

  • Ffmpeg - avio_open returns AVERROR -13

    10 septembre 2021, par Tolga

    In my project, I am trying to save mp4 video from frames. I am demuxing video first and then decode and save the .mp4 file beside frames. However, this mp4 file is only playable from command line with ffplay. I am trying to play it from media player. After little bit search I found that, I need to remux it to mp4 file after encoding. The examples that I reference for my project are official ffmpeg example and leandromoreira's code. However, avio_open() parts returns -13 as error. I printed out with av_make_error_string(error, sizeof(error), response) and got Permission denied. When I look for that error in the error.h&#xA;there is no such an error defined.

    &#xA;