Recherche avancée

Médias (91)

Autres articles (71)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (3030)

  • avcodec/ffwavesynth : use uint32_t to compute difference, it is enough

    21 juin 2019, par Michael Niedermayer
    avcodec/ffwavesynth : use uint32_t to compute difference, it is enough
    

    Fixes : signed integer overflow : 6494225984479297536 - -6043795377581187040 cannot be represented in type 'long'
    Fixes : 15285/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FFWAVESYNTH_fuzzer-5632780307791872

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/ffwavesynth.c
  • Difference between .so file and java library in ffmpeg

    1er septembre 2020, par yejafot

    Is there any difference between using ffmpeg with .so file(ndk,.cpp) or simply by using ffmpeg library(example : com.github.hiteshsondhi88.libffmeg). I see my collegues apps sell 10rs by using these libraries vs with app on cpp function call sells 1000rs+ ?

    &#xA;

    Implementation with java library :

    &#xA;

    FFmpeg ffmpeg = FFmpeg.getInstance(context);&#xA;try {&#xA;  // to execute "ffmpeg -version" command you just need to pass "-version"&#xA;  ffmpeg.execute(cmd, new ExecuteBinaryResponseHandler() {&#xA;&#xA;    @Override&#xA;    public void onStart() {}&#xA;&#xA;    @Override&#xA;    public void onProgress(String message) {}&#xA;&#xA;    @Override&#xA;    public void onFailure(String message) {}&#xA;&#xA;    @Override&#xA;    public void onSuccess(String message) {}&#xA;&#xA;    @Override&#xA;    public void onFinish() {}&#xA;  });&#xA;} catch (FFmpegCommandAlreadyRunningException e) {&#xA;  // Handle if FFmpeg is already running&#xA;}&#xA;

    &#xA;

  • In FFmpeg, can -filter_complex do everything that -filter can ? (i.e., is it a direct replacement)

    1er avril 2020, par Robert Salesas

    This may seem like a strange question but... is it possible to do everything -filter can do using only -filter_complex filters ? That is, is there anything that -filter can do, that is not possible with -filter_complex ?

    &#xA;