Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (61)

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

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

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (11431)

  • Revision 2e05341ab4 : Fix bad speed settings interaction. The flag x->skip_recode interacts badly wit

    20 mars 2014, par Paul Wilkins

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c



    Fix bad speed settings interaction.

    The flag x->skip_recode interacts badly with
    the cpi->sf.use_nonrd_pick_mode and
    cpi->sf.skip_encode_sb speed settings.

    Restricting the use of the skip_decode flag when
    these other speed choices are in use helps quality
    for speeds 3 and 4 by a large amount with only a
    small impact on speed.

    Average improvmentes for 2 pass speed 4 :
    Derf +8.8%
    Yt + 10.53%
    Std-Hd +6.95%
    yt-hd + 22.95%

    Change-Id : I8010876d8012042a11077c92e69d813c3dfa58eb

  • You should apply for x264 Google Summer of Code

    3 avril 2011, par Dark Shikari — development, GSOC, x264

    Want to do some fun open source work and get paid ? You should apply for GSOC. Check out our ideas page and the official Google page.

    (And yes, I’ll get around to approving the queued comments and writing more real posts. Eventually ! I promise !)

  • How can I apply custom font on watermark that created by FFmpeg

    7 août 2019, par Dens

    I am creating a video with FFmpeg library. I want access fonts from Android assets folder and overlay on my video as watermark.

    What is the path for Android assets folder to access and apply custom font on FFmpeg ?
    I can overlay watermark on video but when I try to apply custom font on it, it gives error related to not exist, etc.

    What I found till now :

    The alternative solution that I found is the create an image file and write text on it and overlay image on video. problem is text and image being stretch output. I need a solution for it.

    String[] execute = {"-y",  "-i",  videoPath, "-i", image, "-filter_complex",
                "[1:v]scale=" + width + ":" + height + "[ovrl],[0:v][ovrl]overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2"
                ,"-strict" , "experimental", "-vcodec", "libx264" , "-preset",  "ultrafast" , "-crf",  "20", "-acodec",  "aac",  "-ar",
                "44100",  "-ac",  "2",  "-b:v",  "36000k",   outputPath.getPath()};

    I thought itz output will be good but it stretching my text and image.

    I want some perfect solution to apply assets font on FFmpeg.

    Thank you in Advance.