Recherche avancée

Médias (91)

Autres articles (92)

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

  • ffmpeg : Turning images/audio into video with ffmpeg

    7 mai 2018, par melanie93

    I am using ffmpeg to turn a sequence of images (img001.png, img002.png, and so on) into a video (output.mp4) using the following command :

    ffmpeg -r 1/5 -i img%03d.png  -r 25 -qscale:v 2 -shortest -codec:a copy output.mp4

    The result is a video that displays every input image for five (5) seconds.

    1. Is it possible to have ffmpeg parse the filename paths and timings from a file ? I tried the slideshow tutorial on the official ffmpeg website but the output displayed only the last image, briefly, at the end of the video.
    2. Is it possible to bundle audio files with those settings ?

    For example :

    file 'image001.png'
    file 'sound001.wav'
    duration 5
    file 'image002.png'
    file 'sound002.wav'
    duration 2
    file 'image003.png'
    file 'sound003.wav'
    duration 3

    Image001 is displayed for five(5) seconds while sound001 is being played back and so on.

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