Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (88)

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

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

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

  • Add file name to video (drawtext) - Cannot find a valid font for the family Sans Error Ffmpeg [duplicate]

    18 mars 2019, par Oli Shingfield

    This question already has an answer here :

    I have a folder with a couple of short videos in, I would like to add the file names of the videos in the video in the bottom right corner while converting them from mov to mp4. I have tried using :

       @echo off
    set "INPUT=E:\Users\Oli Shingfield\Documents\Projects\v1.3.1\downloads3"
    for %%a in ("%INPUT%\*.mov") do (
       ffmpeg -i "%%~a" -vf drawtext=text="%%~na":x=105:y=120:fontfile="E:\Users\Oli Shingfield\Documents\Projects\v1.3.1\downloads3\impact.ttf":fontsize=25:fontcolor=white -b:v 1M -r 60 -b:a 320k -ar 48000 -crf 17 "%%~na.mp4"
    )
    pause

    but I am getting the error :

    [Parsed_drawtext_0 @ 000002548db70e00] Cannot find a valid font for the family Sans
    [AVFilterGraph @ 000002548cd00a20] Error initializing filter 'drawtext' with args 'text=RP AS A WHOLE:x=105:y=120:fontfile=E:UsersOli_ShingfieldDocumentsProjectsv1.3.1downloads3impact.ttf:fontsize=25:fontcolor=white'
    Error reinitializing filters!
    Failed to inject frame into filter network: No such file or directory
    Error while processing the decoded data for stream #0:0
    [aac @ 000002548be61ae0] Qavg: 65536.000
    [aac @ 000002548be61ae0] 2 frames left in the queue on closing
    Conversion failed!

    It seems as though it can’t find the font file even though it’s in the same location and I am specifying the exact file path.

    Has anyone got any ideas ? I’m baffled.

    Thanks !
    Oli

  • Changing the background color of the movie while using tpad and adelay

    1er août 2019, par S.T

    i want to change the background color of a movie while using tpad and adelay commands. it is now black ( until the movie starts).

    the command i tried listed below, and i don’t know how to change the color while the movie is in it’s delay ( probably something with the tpad that needs to be change).

    -filter_complex [0:v]scale=1920:1080,tpad=start_duration=5[v];
     [0:a]adelay=5s|s[a] -map [v] -map [a] -b 6000k

    the 5 seconds that the movie is in its "waiting mode" needs to be changed from default black to some other color. Thanks.

  • Creating a movie with Bullet Physics

    27 novembre 2012, par Sara

    I am trying to make a movie from my bullet demo. To do that, I want to store an image every timestep, and create a movie using ffmpeg.

    I need the simulation to advance only one step at a time. For that, I am doing

    m_dynamicsWorld->stepSimulation(0.005,0);

    And after that, I store the scenario (I later create an image of the scenario). At the end of the animation, I am creating a movie using as timestep 200 fps (1/0.005). This should give me the real time animation, but instead the animation is a little bit slow.

    Any ideas ?