Recherche avancée

Médias (91)

Autres articles (77)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (9195)

  • fftools/ffmpeg_demux : Fix leak on error

    6 octobre 2023, par Andreas Rheinhardt
    fftools/ffmpeg_demux : Fix leak on error
    

    An AVFormatContext leaks on errors that happen before it is attached
    to its permanent place (an InputFile). Fix this by attaching
    it earlier.

    Given that it is not documented that avformat_close_input() is usable
    with an AVFormatContext that has only been allocated with
    avformat_alloc_context() and not opened with avformat_open_input(),
    one error path before avformat_open_input() had to be treated
    specially : It uses avformat_free_context().

    Reviewed-by : Anton Khirnov <anton@khirnov.net>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] fftools/ffmpeg_demux.c
  • matroskadec : validate audio channels and bitdepth

    15 juin 2015, par Andreas Cadhalpun
    matroskadec : validate audio channels and bitdepth
    

    In the TTA extradata re-construction the values are written with
    avio_wl16 and if they don’t fit into uint16_t, this triggers an
    av_assert2 in avio_w8.

    Reviewed-by : Michael Niedermayer <michaelni@gmx.at>
    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>

    • [DH] libavformat/matroskadec.c
  • Chain encoding MP4 to FLAC on GAE using FFmpeg

    24 octobre 2019, par Igniter

    I’m trying to encode MP4 to FLAC on GAE instance.
    I have the functions chain where ffmpeg is synchronously invoked several times.
    All those functions work great except this final snippet which dies without errors on GAE.

    const ffmpegPath = require('@ffmpeg-installer/ffmpeg').path;
    const ffmpeg = require('fluent-ffmpeg');
    ffmpeg.setFfmpegPath(ffmpegPath);

    ffmpeg(`/tmp/${iid}/${file}`) // file.mp4
     .outputOptions(['-c:a flac','-sample_fmt s16','-ar 16000','-ac 1'])
     .on('end', () => console.log('All went OK!'))
     .on('error', console.log)
     .save(`/tmp/${iid}/${file.split('.')[0]}.flac`);

    Looks like I missed something basic in ffmpeg command construction, how can I debug it ?
    Or maybe this exact command could be constructed using other fluent-ffmpeg methods ?