Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (60)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

Sur d’autres sites (5678)

  • ffmpeg : add progress speed to status line and report

    11 décembre 2015, par Moritz Barsnick
    ffmpeg : add progress speed to status line and report
    

    This adds a computation of the progress speed versus realtime ("Nx")
    to the status line and to the report log. It uses the progress time
    as already calculated for total output time as a base.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] ffmpeg.c
  • How to speed up video conversion

    9 mai 2016, par Arheisel

    I’m currently working in a proyect that involves converting large series of .jpg (>6000) into video format. These frames (320x240) are stored in folders at a rate of 2.5fps. Generating a couple of folders every hour that need to be converted ASAP.

    For now i’ve tried copying the folder to a ram disk and using avconv wich takes about a minute.

    Here is my command :

    avconv -threads auto -y -r 2.51 -i %03d-capture.jpg -s 320x240 -r 25 video.mpeg

    could ffmpeg work faster ?
    is there a way to speed it up ?
    wich video format take less time to convert to ?

  • Speed of moving text drawtext filter - FFMPEG

    8 mai 2016, par BOB

    I’m using this command to move text from one place to another using ffmpeg

    ffmpeg -i VideoInput.mp4 \
          -vf "drawtext=enable='between(t,12,14)':fontfile=myfont.otf:text='Test test': \
              x='x1+(x2-x1)*(t-t1)/(t2-t1)':y='y1+(y2-y1)*(t-t1)/(t2-t1)':fontsize=65" \
          -acodec copy outputVideo.mp4

    Now I need to control the speed of moving the text. I want to speed it up.
    How do I control the speed ?

    Any suggestions ?

    Thank you