Recherche avancée

Médias (91)

Autres articles (88)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (9998)

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