Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (79)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

Sur d’autres sites (11646)

  • lavfi/delogo : remember left and right samples when interpolating

    5 juillet 2013, par Jean Delvare
    lavfi/delogo : remember left and right samples when interpolating
    

    The left and right samples are the same for the whole line, so store
    their values and don’t recompute them for every iteration of "y".

    This simple optimization results in a speed improvement between 15%
    and 20% in my tests (depending on the logo geometry.)

    Result is obviously the same.

    Signed-off-by : Jean Delvare <khali@linux-fr.org>
    Reviewed-by : Stefano Sabatini <stefasab@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavfilter/vf_delogo.c
  • ffmpeg4android dont add watermark with text

    2 octobre 2017, par hidura

    Hello I am trying to add to a video a picture and text, but have prove to be impossible the compilation crash on all the phones except for one.
    Here is the code :

    String[] complexCommand = {"ffmpeg","-y" ,"-i", "/sdcard/diego.mp4","-strict","experimental", "-vf",
                       "movie=/sdcard/Pictures/tshirt.png [watermark]; [in][watermark] overlay=main_w-overlay_w-10:10 [out]",
                       "-s", "1080x1200","-r", "30", "-b", "15496k", "-vcodec", "mpeg4","-ab",
                       "48000", "-ac", "2", "-ar", "22050", "/sdcard/out.mp4"};
               vk.run(complexCommand, workFolder, getApplicationContext());
  • avformat/mxf : fix NTSC 59.94 samples per frame layout

    24 mai 2018, par Marton Balint
    avformat/mxf : fix NTSC 59.94 samples per frame layout
    

    FFmbc uses this.
    bmx uses this.
    XAVC MXF Mapping and Operating Points prefers this.
    Basic rounding rules also yields these numbers.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/mxf.c