Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (104)

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

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

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

Sur d’autres sites (7894)

  • 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