Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (102)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (11155)

  • FFmpeg getting issue while creating input with png ,video,draw text

    18 septembre 2020, par Konduri Sai Aditya

    I am getting an error "Cannot find a matching stream for unlabeled input pad 0 on filter Parsed_drawtext_3" for the below command, I don't know where it is going wrong. Can anyone help with this issue ?

    


    ffmpeg -i test.png -i test.mp4 -y -filter_complex [1:v]scale=1152:648[scale0];[scale0]rotate=0:c=black@0:ow=rotw(0):oh=roth(0)[rotate0];[0:v][rotate0]overlay=304.2:172.29;drawtext=fontfile=test.ttf:text=hi text:fontsize=40:fontcolor=white:x=426.05:y=852.04 -pix_fmt yuv420p est.mp4


    


  • Animated text in video using Android Transition framework

    14 août 2016, par user446718

    Is it possible to add user-customized animated text to a video using Android Transition framework ? My team currently has access to a library that can animate text, but it only works with Android View objects. Therefore, the library cannot be applied to video.

    They are contemplating using FFMPEG port for rendering text animations to the video, but I would like to know if there is a simpler way.

    There are a few commercial SDKs like magisto, but they seem to be too basic for what we are doing.

    If this can be done using Android Transitions, what are your recommendations ?

  • How to add a text box to thumbnails generated by FFMPEG ?

    4 janvier 2016, par GDP

    I’m successfully using ffmpeg to capture thumbnails every 15 seconds from our videos, but I need to add a copyright notice to each of them. I’ve researched enough to find that it can be done, and what the arguments are to do it, but I can’t figure out the syntax to use it without getting various errors from ffmpeg depending on where/how I put it in the command line.

    a.) Working FFMPEG command :

    ffmpeg.exe -i D:\video.mp4 -vf "thumbnail, scale=640:480, fps=1/15" D:\video_%05d.jpg

    b.) Desired arguments to add to the working command above :

    "drawtext=fontsize=20:box=1:fontfile='c:/windows/fonts/arial.ttf:text=\'My Text Goes Here\':x=(w-text_w)/2:0"

    How to I correctly add the arguments in b. to the command in a. ?