Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (69)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (9687)

  • avformat : add Wideband Single-bit Data (WSD) demuxer

    29 avril 2016, par Peter Ross
    avformat : add Wideband Single-bit Data (WSD) demuxer
    

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] Changelog
    • [DH] libavformat/Makefile
    • [DH] libavformat/allformats.c
    • [DH] libavformat/version.h
    • [DH] libavformat/wsddec.c
  • How to trim, crop and add overlay in a single command using FFmpeg

    1er mai 2016, par ultimate

    I am using FFmpeg for video editing in android. I am able to trim, crop and add overlay using below commands :

    For trim :

    command = new String[]{"-i",inputVideoFilePath,"-ss","00:00:30.0","-c","copy","-t","00:00:10.0",outputVideoFilePath};

    For crop :

    command = new String[]{"-i",inputVideoFilePath,"-preset", "ultrafast","-filter:v","crop=400:400:0:0","-c:a","copy", outputVideoFilePath};

    For overlay :

    command = new String[]{"-i",inputVideoFilePath, "-i",overlayImagePath,"-preset", "ultrafast","-filter_complex", "overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2", "-codec:a", "copy", outputVideoFilePath};

    but I’m unable to merge these commands into a single command.
    Please help me.

  • How to compile a single .c file ?

    13 août 2020, par Cristian Jorge A. Kusch

    Is it possible to compile a single .c file ? i'm trying to modify vf_eq.c , but on ubuntu i can't get c++ to recognize the header files, if i type

    &#xA;

    gcc -Ihome/amadeok/ffmpeg_sources/ffmpeg/libavfilter -Ihome/amadeok/ffmpeg_sources/ffmpeg/libavutil  vf_eq.c &#xA;

    &#xA;

    i get the libavfilter/internal.h : No such file or directory

    &#xA;

    if i remove libavfilter from vf_eq.c and leave only #include "internal.h" , it works. is there any way to compile only this file ?

    &#xA;

    any help ?

    &#xA;